diff --git a/Assets/AddressableAssetsData/Android/addressables_content_state.bin b/Assets/AddressableAssetsData/Android/addressables_content_state.bin index 49cd295..4b63714 100644 Binary files a/Assets/AddressableAssetsData/Android/addressables_content_state.bin and b/Assets/AddressableAssetsData/Android/addressables_content_state.bin differ diff --git a/Assets/AppsFlyer/AFPurchaseDetailsAndroid.cs b/Assets/AppsFlyer/AFPurchaseDetailsAndroid.cs index 6762c97..d149885 100644 --- a/Assets/AppsFlyer/AFPurchaseDetailsAndroid.cs +++ b/Assets/AppsFlyer/AFPurchaseDetailsAndroid.cs @@ -10,24 +10,19 @@ namespace AppsFlyerSDK } /// - // + /// Purchase details class matching Android SDK AFPurchaseDetails /// public class AFPurchaseDetailsAndroid - { public AFPurchaseType purchaseType { get; private set; } public string purchaseToken { get; private set; } public string productId { get; private set; } - public string price { get; private set; } - public string currency { get; private set; } - public AFPurchaseDetailsAndroid(AFPurchaseType type, String purchaseToken, String productId, String price, String currency) + public AFPurchaseDetailsAndroid(AFPurchaseType type, String purchaseToken, String productId) { this.purchaseType = type; this.purchaseToken = purchaseToken; this.productId = productId; - this.price = price; - this.currency = currency; } } diff --git a/Assets/AppsFlyer/AFSDKPurchaseDetailsIOS.cs b/Assets/AppsFlyer/AFSDKPurchaseDetailsIOS.cs index f159eea..0dcde3a 100644 --- a/Assets/AppsFlyer/AFSDKPurchaseDetailsIOS.cs +++ b/Assets/AppsFlyer/AFSDKPurchaseDetailsIOS.cs @@ -4,26 +4,33 @@ using System.Collections.Generic; namespace AppsFlyerSDK { /// - // + /// Purchase type enum matching iOS SDK AFSDKPurchaseType + /// + public enum AFSDKPurchaseType + { + Subscription, + OneTimePurchase + } + + /// + /// Purchase details class matching iOS SDK AFSDKPurchaseDetails /// public class AFSDKPurchaseDetailsIOS { public string productId { get; private set; } - public string price { get; private set; } - public string currency { get; private set; } public string transactionId { get; private set; } + public AFSDKPurchaseType purchaseType { get; private set; } - private AFSDKPurchaseDetailsIOS(string productId, string price, string currency, string transactionId) + private AFSDKPurchaseDetailsIOS(string productId, string transactionId, AFSDKPurchaseType purchaseType) { this.productId = productId; - this.price = price; - this.currency = currency; this.transactionId = transactionId; + this.purchaseType = purchaseType; } - public static AFSDKPurchaseDetailsIOS Init(string productId, string price, string currency, string transactionId) + public static AFSDKPurchaseDetailsIOS Init(string productId, string transactionId, AFSDKPurchaseType purchaseType) { - return new AFSDKPurchaseDetailsIOS(productId, price, currency, transactionId); + return new AFSDKPurchaseDetailsIOS(productId, transactionId, purchaseType); } } diff --git a/Assets/AppsFlyer/AppsFlyer.cs b/Assets/AppsFlyer/AppsFlyer.cs index 5a700e4..149d3e7 100644 --- a/Assets/AppsFlyer/AppsFlyer.cs +++ b/Assets/AppsFlyer/AppsFlyer.cs @@ -6,7 +6,7 @@ namespace AppsFlyerSDK { public class AppsFlyer : MonoBehaviour { - public static readonly string kAppsFlyerPluginVersion = "6.17.1"; + public static readonly string kAppsFlyerPluginVersion = "6.17.91"; public static string CallBackObjectName = null; private static EventHandler onRequestResponse; private static EventHandler onInAppResponse; @@ -768,6 +768,11 @@ namespace AppsFlyerSDK } } + /// + /// [Deprecated] Validates an in-app purchase on iOS. + /// Use the V2 overload with AFSDKPurchaseDetailsIOS instead. + /// + [System.Obsolete("This method is deprecated. Use validateAndSendInAppPurchase(AFSDKPurchaseDetailsIOS details, Dictionary purchaseAdditionalDetails, MonoBehaviour gameObject) instead.")] public static void validateAndSendInAppPurchase(string productIdentifier, string price, string currency, string transactionId, Dictionary additionalParameters, MonoBehaviour gameObject) { if (instance != null && instance is IAppsFlyerIOSBridge) @@ -777,16 +782,23 @@ namespace AppsFlyerSDK } } - // V2 - public static void validateAndSendInAppPurchase(AFSDKPurchaseDetailsIOS details, Dictionary extraEventValues, MonoBehaviour gameObject) + /// + /// Validates an in-app purchase on iOS using the V2 API. + /// + public static void validateAndSendInAppPurchase(AFSDKPurchaseDetailsIOS details, Dictionary purchaseAdditionalDetails, MonoBehaviour gameObject) { if (instance != null && instance is IAppsFlyerIOSBridge) { IAppsFlyerIOSBridge appsFlyeriOSInstance = (IAppsFlyerIOSBridge)instance; - appsFlyeriOSInstance.validateAndSendInAppPurchase(details, extraEventValues, gameObject); + appsFlyeriOSInstance.validateAndSendInAppPurchase(details, purchaseAdditionalDetails, gameObject); } } + /// + /// [Deprecated] Validates an in-app purchase on Android. + /// Use the V2 overload with AFPurchaseDetailsAndroid instead. + /// + [System.Obsolete("This method is deprecated. Use validateAndSendInAppPurchase(AFPurchaseDetailsAndroid details, Dictionary purchaseAdditionalDetails, MonoBehaviour gameObject) instead.")] public static void validateAndSendInAppPurchase(string publicKey, string signature, string purchaseData, string price, string currency, Dictionary additionalParameters, MonoBehaviour gameObject) { if (instance != null && instance is IAppsFlyerAndroidBridge) @@ -796,13 +808,15 @@ namespace AppsFlyerSDK } } - // V2 - public static void validateAndSendInAppPurchase(AFPurchaseDetailsAndroid details, Dictionary additionalParameters, MonoBehaviour gameObject) + /// + /// Validates an in-app purchase on Android using the V2 API. + /// + public static void validateAndSendInAppPurchase(AFPurchaseDetailsAndroid details, Dictionary purchaseAdditionalDetails, MonoBehaviour gameObject) { if (instance != null && instance is IAppsFlyerAndroidBridge) { IAppsFlyerAndroidBridge appsFlyerAndroidInstance = (IAppsFlyerAndroidBridge)instance; - appsFlyerAndroidInstance.validateAndSendInAppPurchase(details, additionalParameters, gameObject); + appsFlyerAndroidInstance.validateAndSendInAppPurchase(details, purchaseAdditionalDetails, gameObject); } } diff --git a/Assets/AppsFlyer/AppsFlyerAndroid.cs b/Assets/AppsFlyer/AppsFlyerAndroid.cs index f380585..6fc4e9c 100644 --- a/Assets/AppsFlyer/AppsFlyerAndroid.cs +++ b/Assets/AppsFlyer/AppsFlyerAndroid.cs @@ -484,7 +484,7 @@ namespace AppsFlyerSDK } /// - /// API for server verification of in-app purchases. + /// [Deprecated] API for server verification of in-app purchases - please use V2 with AFPurchaseDetailsAndroid instead. /// An af_purchase event with the relevant values will be automatically sent if the validation is successful. /// /// License Key obtained from the Google Play Console. @@ -493,6 +493,7 @@ namespace AppsFlyerSDK /// Purchase price, should be derived from skuDetails.getStringArrayList("DETAILS_LIST") /// Purchase currency, should be derived from skuDetails.getStringArrayList("DETAILS_LIST") /// additionalParameters Freehand parameters to be sent with the purchase (if validated). + [System.Obsolete("This method is deprecated. Use validateAndSendInAppPurchase(AFPurchaseDetailsAndroid details, Dictionary purchaseAdditionalDetails, MonoBehaviour gameObject) instead.")] public void validateAndSendInAppPurchase(string publicKey, string signature, string purchaseData, string price, string currency, Dictionary additionalParameters, MonoBehaviour gameObject) { #if !UNITY_EDITOR @@ -501,15 +502,15 @@ namespace AppsFlyerSDK } /// - /// API for server verification of in-app purchases. + /// V2 - API for server verification of in-app purchases. /// An af_purchase event with the relevant values will be automatically sent if the validation is successful. /// /// AFPurchaseDetailsAndroid instance. - /// additionalParameters Freehand parameters to be sent with the purchase (if validated). - public void validateAndSendInAppPurchase(AFPurchaseDetailsAndroid details, Dictionary additionalParameters, MonoBehaviour gameObject) + /// purchaseAdditionalDetails Freehand parameters to be sent with the purchase (if validated). + public void validateAndSendInAppPurchase(AFPurchaseDetailsAndroid details, Dictionary purchaseAdditionalDetails, MonoBehaviour gameObject) { #if !UNITY_EDITOR - appsFlyerAndroid.CallStatic("validateAndTrackInAppPurchaseV2", (int)details.purchaseType, details.purchaseToken, details.productId, details.price, details.currency, convertDictionaryToJavaMap(additionalParameters), gameObject ? gameObject.name : null); + appsFlyerAndroid.CallStatic("validateAndTrackInAppPurchaseV2", (int)details.purchaseType, details.purchaseToken, details.productId, convertDictionaryToJavaMap(purchaseAdditionalDetails), gameObject ? gameObject.name : null); #endif } diff --git a/Assets/AppsFlyer/AppsFlyeriOS.cs b/Assets/AppsFlyer/AppsFlyeriOS.cs index 4dfbc00..29c8819 100644 --- a/Assets/AppsFlyer/AppsFlyeriOS.cs +++ b/Assets/AppsFlyer/AppsFlyeriOS.cs @@ -335,13 +335,14 @@ public void startSDK(bool shouldCallback, string CallBackObjectName) } /// - /// To send and validate in app purchases you can call this method from the processPurchase method - please use v2. + /// [Deprecated] To send and validate in app purchases - please use V2 with AFSDKPurchaseDetailsIOS instead. /// /// The product identifier. /// The product price. /// The product currency. /// The purchase transaction Id. /// The additional param, which you want to receive it in the raw reports. + [System.Obsolete("This method is deprecated. Use validateAndSendInAppPurchase(AFSDKPurchaseDetailsIOS details, Dictionary purchaseAdditionalDetails, MonoBehaviour gameObject) instead.")] public void validateAndSendInAppPurchase(string productIdentifier, string price, string currency, string transactionId, Dictionary additionalParameters, MonoBehaviour gameObject) { #if !UNITY_EDITOR @@ -350,15 +351,14 @@ public void startSDK(bool shouldCallback, string CallBackObjectName) } /// - /// V2 - /// To send and validate in app purchases you can call this method from the processPurchase method. + /// V2 - To send and validate in app purchases you can call this method from the processPurchase method. /// /// The AFSDKPurchaseDetailsIOS instance. - /// The extra params, which you want to receive it in the raw reports. - public void validateAndSendInAppPurchase(AFSDKPurchaseDetailsIOS details, Dictionary extraEventValues, MonoBehaviour gameObject) + /// The additional params, which you want to receive it in the raw reports. + public void validateAndSendInAppPurchase(AFSDKPurchaseDetailsIOS details, Dictionary purchaseAdditionalDetails, MonoBehaviour gameObject) { #if !UNITY_EDITOR - _validateAndSendInAppPurchaseV2(details.productId, details.price, details.currency, details.transactionId, AFMiniJSON.Json.Serialize(extraEventValues), gameObject ? gameObject.name : null); + _validateAndSendInAppPurchaseV2(details.productId, details.transactionId, (int)details.purchaseType, AFMiniJSON.Json.Serialize(purchaseAdditionalDetails), gameObject ? gameObject.name : null); #endif } @@ -843,7 +843,7 @@ public void startSDK(bool shouldCallback, string CallBackObjectName) #elif UNITY_STANDALONE_OSX [DllImport("AppsFlyerBundle")] #endif - private static extern void _validateAndSendInAppPurchaseV2(string product, string price, string currency, string transactionId, string extraEventValues, string objectName); + private static extern void _validateAndSendInAppPurchaseV2(string product, string transactionId, int purchaseType, string purchaseAdditionalDetails, string objectName); #if UNITY_IOS [DllImport("__Internal")] diff --git a/Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml b/Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml index 31d62df..1d6bffe 100644 --- a/Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml +++ b/Assets/AppsFlyer/Editor/AppsFlyerDependencies.xml @@ -2,15 +2,15 @@ - - + + - + - - + + diff --git a/Assets/AppsFlyer/Editor/AppsFlyerObjectEditor.cs b/Assets/AppsFlyer/Editor/AppsFlyerObjectEditor.cs index f18e3fa..a576ad1 100644 --- a/Assets/AppsFlyer/Editor/AppsFlyerObjectEditor.cs +++ b/Assets/AppsFlyer/Editor/AppsFlyerObjectEditor.cs @@ -31,7 +31,7 @@ public class AppsFlyerObjectEditor : Editor { serializedObject.Update(); - GUILayout.Box((Texture)AssetDatabase.LoadAssetAtPath(AssetDatabase.GUIDToAssetPath(AssetDatabase.FindAssets("appsflyer_logo")[0]), typeof(Texture)), new GUILayoutOption[] { GUILayout.Width(600) }); + DrawLogo(); EditorGUILayout.Separator(); EditorGUILayout.HelpBox("Set your devKey and appID to init the AppsFlyer SDK and start tracking. You must modify these fields and provide:\ndevKey - Your application devKey provided by AppsFlyer.\nappId - For iOS only. Your iTunes Application ID.\nUWP app id - For UWP only. Your application app id \nMac OS app id - For MacOS app only.", MessageType.Info); @@ -80,5 +80,25 @@ public class AppsFlyerObjectEditor : Editor serializedObject.ApplyModifiedProperties(); } + private void DrawLogo() + { + var guids = AssetDatabase.FindAssets("appsflyer_logo"); + if (guids.Length == 0) return; + + Texture logo = (Texture)AssetDatabase.LoadAssetAtPath( + AssetDatabase.GUIDToAssetPath(guids[0]), + typeof(Texture)); + + if (logo == null) return; + + float maxWidth = Mathf.Min(200, EditorGUIUtility.currentViewWidth - 40); + float aspect = (float)logo.height / logo.width; + float height = maxWidth * aspect; + + Rect rect = GUILayoutUtility.GetRect(maxWidth, height, GUILayout.ExpandWidth(false)); + rect.x = (EditorGUIUtility.currentViewWidth - maxWidth) * 0.5f; + rect.width = maxWidth; + GUI.DrawTexture(rect, logo, ScaleMode.ScaleToFit); + } } \ No newline at end of file diff --git a/Assets/AppsFlyer/Editor/appsflyer_logo.png b/Assets/AppsFlyer/Editor/appsflyer_logo.png index 01c2b8c..4cc3095 100644 Binary files a/Assets/AppsFlyer/Editor/appsflyer_logo.png and b/Assets/AppsFlyer/Editor/appsflyer_logo.png differ diff --git a/Assets/AppsFlyer/IAppsFlyerAndroidBridge.cs b/Assets/AppsFlyer/IAppsFlyerAndroidBridge.cs index b4c8188..3a83bc3 100644 --- a/Assets/AppsFlyer/IAppsFlyerAndroidBridge.cs +++ b/Assets/AppsFlyer/IAppsFlyerAndroidBridge.cs @@ -22,7 +22,7 @@ namespace AppsFlyerSDK string getAttributionId(); void handlePushNotifications(); void validateAndSendInAppPurchase(string publicKey, string signature, string purchaseData, string price, string currency, Dictionary additionalParameters, MonoBehaviour gameObject); - void validateAndSendInAppPurchase(AFPurchaseDetailsAndroid details, Dictionary additionalParameters, MonoBehaviour gameObject); + void validateAndSendInAppPurchase(AFPurchaseDetailsAndroid details, Dictionary purchaseAdditionalDetails, MonoBehaviour gameObject); void setCollectOaid(bool isCollect); void setDisableAdvertisingIdentifiers(bool disable); void setDisableNetworkData(bool disable); diff --git a/Assets/AppsFlyer/IAppsFlyerIOSBridge.cs b/Assets/AppsFlyer/IAppsFlyerIOSBridge.cs index 86211fb..4de6fd4 100644 --- a/Assets/AppsFlyer/IAppsFlyerIOSBridge.cs +++ b/Assets/AppsFlyer/IAppsFlyerIOSBridge.cs @@ -14,7 +14,7 @@ namespace AppsFlyerSDK void setUseReceiptValidationSandbox(bool useReceiptValidationSandbox); void setUseUninstallSandbox(bool useUninstallSandbox); void validateAndSendInAppPurchase(string productIdentifier, string price, string currency, string transactionId, Dictionary additionalParameters, MonoBehaviour gameObject); - void validateAndSendInAppPurchase(AFSDKPurchaseDetailsIOS details, Dictionary extraEventValues, MonoBehaviour gameObject); + void validateAndSendInAppPurchase(AFSDKPurchaseDetailsIOS details, Dictionary purchaseAdditionalDetails, MonoBehaviour gameObject); void registerUninstall(byte[] deviceToken); void handleOpenUrl(string url, string sourceApplication, string annotation); void waitForATTUserAuthorizationWithTimeoutInterval(int timeoutInterval); diff --git a/Assets/AppsFlyer/Plugins/iOS/AFUnityStoreKit2Bridge.swift.meta b/Assets/AppsFlyer/Plugins/iOS/AFUnityStoreKit2Bridge.swift.meta index 92217f9..f269096 100644 --- a/Assets/AppsFlyer/Plugins/iOS/AFUnityStoreKit2Bridge.swift.meta +++ b/Assets/AppsFlyer/Plugins/iOS/AFUnityStoreKit2Bridge.swift.meta @@ -22,6 +22,11 @@ PluginImporter: enabled: 0 settings: DefaultValueInitialized: true + - first: + VisionOS: VisionOS + second: + enabled: 1 + settings: {} - first: iPhone: iOS second: diff --git a/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.mm b/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.mm index 611f269..e2c0cf3 100644 --- a/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.mm +++ b/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.mm @@ -34,14 +34,22 @@ static const char* stringFromdictionary(NSDictionary* dictionary) { static NSDictionary* dictionaryFromNSError(NSError* error) { if(error){ - NSInteger code = [error code]; - NSString *localizedDescription = [error localizedDescription]; - - NSDictionary *errorDictionary = @{ - @"code" : @(code) ?: @(-1), - @"localizedDescription" : localizedDescription, - }; - return errorDictionary; + NSMutableDictionary *errorDictionary = [NSMutableDictionary dictionary]; + errorDictionary[@"code"] = @(error.code); + errorDictionary[@"localizedDescription"] = error.localizedDescription ?: @""; + + // Include userInfo fields for enhanced error reporting (iOS SDK 6.17.8+) + if (error.userInfo[@"error_code"]) { + errorDictionary[@"error_code"] = error.userInfo[@"error_code"]; + } + if (error.userInfo[@"error_message"]) { + errorDictionary[@"error_message"] = error.userInfo[@"error_message"]; + } + if (error.userInfo[@"invalid_fields"]) { + errorDictionary[@"invalid_fields"] = error.userInfo[@"invalid_fields"]; + } + + return errorDictionary; } return nil; diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm b/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm index 88e5d23..34153d2 100644 --- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm +++ b/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm @@ -33,7 +33,7 @@ extern "C" { const void _startSDK(bool shouldCallback, const char* objectName) { [[AppsFlyerLib shared] setPluginInfoWith: AFSDKPluginUnity - pluginVersion:@"6.17.1" + pluginVersion:@"6.17.91" additionalParams:nil]; startRequestObjectName = stringFromChar(objectName); AppsFlyeriOSWarpper.didCallStart = YES; @@ -288,21 +288,19 @@ extern "C" { }]; } - const void _validateAndSendInAppPurchaseV2 (const char* product, const char* price, const char* currency, const char* transactionId, const char* extraEventValues, const char* objectName) { + const void _validateAndSendInAppPurchaseV2 (const char* product, const char* transactionId, int purchaseType, const char* purchaseAdditionalDetails, const char* objectName) { validateAndLogObjectName = stringFromChar(objectName); - AFSDKPurchaseDetails *details = [[AFSDKPurchaseDetails alloc] initWithProductId:stringFromChar(product) price:stringFromChar(price) currency:stringFromChar(currency) transactionId:stringFromChar(transactionId)]; + AFSDKPurchaseDetails *details = [[AFSDKPurchaseDetails alloc] initWithProductId:stringFromChar(product) transactionId:stringFromChar(transactionId) purchaseType:(AFSDKPurchaseType)purchaseType]; [[AppsFlyerLib shared] validateAndLogInAppPurchase:details - extraEventValues:dictionaryFromJson(extraEventValues) - completionHandler:^(AFSDKValidateAndLogResult * _Nullable result) { - if (result.status == AFSDKValidateAndLogStatusSuccess) { - unityCallBack(validateAndLogObjectName, VALIDATE_AND_LOG_V2_CALLBACK, stringFromdictionary(result.result)); - } else if (result.status == AFSDKValidateAndLogStatusFailure) { - unityCallBack(validateAndLogObjectName, VALIDATE_AND_LOG_V2_CALLBACK, stringFromdictionary(result.errorData)); + purchaseAdditionalDetails:dictionaryFromJson(purchaseAdditionalDetails) + completion:^(NSDictionary * _Nullable response, NSError * _Nullable error) { + if (error) { + unityCallBack(validateAndLogObjectName, VALIDATE_AND_LOG_V2_ERROR_CALLBACK, stringFromdictionary(dictionaryFromNSError(error))); } else { - unityCallBack(validateAndLogObjectName, VALIDATE_AND_LOG_V2_ERROR_CALLBACK, stringFromdictionary(dictionaryFromNSError(result.error))); + unityCallBack(validateAndLogObjectName, VALIDATE_AND_LOG_V2_CALLBACK, stringFromdictionary(response)); } }]; diff --git a/Assets/AppsFlyer/Tests.meta b/Assets/AppsFlyer/Tests.meta new file mode 100644 index 0000000..8217a6a --- /dev/null +++ b/Assets/AppsFlyer/Tests.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1f19f272c71674582bed1d93925da003 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AppsFlyer/Tests/Castle.Core.dll b/Assets/AppsFlyer/Tests/Castle.Core.dll new file mode 100644 index 0000000..268e311 Binary files /dev/null and b/Assets/AppsFlyer/Tests/Castle.Core.dll differ diff --git a/Assets/AppsFlyer/Tests/Castle.Core.dll.meta b/Assets/AppsFlyer/Tests/Castle.Core.dll.meta new file mode 100644 index 0000000..14cc646 --- /dev/null +++ b/Assets/AppsFlyer/Tests/Castle.Core.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 7b5b4579db85b4cfd8395bfb19aa309e +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AppsFlyer/Tests/NSubstitute.dll b/Assets/AppsFlyer/Tests/NSubstitute.dll new file mode 100644 index 0000000..f32e491 Binary files /dev/null and b/Assets/AppsFlyer/Tests/NSubstitute.dll differ diff --git a/Assets/AppsFlyer/Tests/NSubstitute.dll.meta b/Assets/AppsFlyer/Tests/NSubstitute.dll.meta new file mode 100644 index 0000000..b716f6a --- /dev/null +++ b/Assets/AppsFlyer/Tests/NSubstitute.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 642cf65ed2573419bab7e7d44fc73181 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AppsFlyer/Tests/System.Runtime.CompilerServices.Unsafe.dll b/Assets/AppsFlyer/Tests/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..c5ba4e4 Binary files /dev/null and b/Assets/AppsFlyer/Tests/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/Assets/AppsFlyer/Tests/System.Runtime.CompilerServices.Unsafe.dll.meta b/Assets/AppsFlyer/Tests/System.Runtime.CompilerServices.Unsafe.dll.meta new file mode 100644 index 0000000..fca3770 --- /dev/null +++ b/Assets/AppsFlyer/Tests/System.Runtime.CompilerServices.Unsafe.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 3a5ccbd864ba94a9a9ba47895ff14922 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AppsFlyer/Tests/System.Threading.Tasks.Extensions.dll b/Assets/AppsFlyer/Tests/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..dfc4cdf Binary files /dev/null and b/Assets/AppsFlyer/Tests/System.Threading.Tasks.Extensions.dll differ diff --git a/Assets/AppsFlyer/Tests/System.Threading.Tasks.Extensions.dll.meta b/Assets/AppsFlyer/Tests/System.Threading.Tasks.Extensions.dll.meta new file mode 100644 index 0000000..cb661ca --- /dev/null +++ b/Assets/AppsFlyer/Tests/System.Threading.Tasks.Extensions.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: ee45ae2608f3c44d08fc6e21a94d133f +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 1 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AppsFlyer/Tests/Tests.asmdef b/Assets/AppsFlyer/Tests/Tests.asmdef new file mode 100644 index 0000000..4d10363 --- /dev/null +++ b/Assets/AppsFlyer/Tests/Tests.asmdef @@ -0,0 +1,24 @@ +{ + "name": "Tests", + "references": [ + "UnityEngine.TestRunner", + "UnityEditor.TestRunner", + "AppsFlyer" + ], + "includePlatforms": [], + "excludePlatforms": [], + "allowUnsafeCode": false, + "overrideReferences": true, + "precompiledReferences": [ + "nunit.framework.dll", + "NSubstitute.dll", + "Castle.Core.dll", + "System.Threading.Tasks.Extensions.dll" + ], + "autoReferenced": false, + "defineConstraints": [ + "UNITY_INCLUDE_TESTS" + ], + "versionDefines": [], + "noEngineReferences": false +} \ No newline at end of file diff --git a/Assets/AppsFlyer/Tests/Tests.asmdef.meta b/Assets/AppsFlyer/Tests/Tests.asmdef.meta new file mode 100644 index 0000000..2778008 --- /dev/null +++ b/Assets/AppsFlyer/Tests/Tests.asmdef.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1f155a0e4c9ab48eeb4b54b2dc0aeba7 +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AppsFlyer/Tests/Tests_Suite.cs b/Assets/AppsFlyer/Tests/Tests_Suite.cs new file mode 100644 index 0000000..9523131 --- /dev/null +++ b/Assets/AppsFlyer/Tests/Tests_Suite.cs @@ -0,0 +1,810 @@ +using System.Collections.Generic; +using NUnit.Framework; +using UnityEngine; +using NSubstitute; + +namespace AppsFlyerSDK.Tests +{ + public class NewTestScript + { + + [Test] + public void test_startSDK_called() + { + var AppsFlyerMOCKInterface = Substitute.For(); + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.startSDK(); + AppsFlyerMOCKInterface.Received().startSDK(Arg.Any(), Arg.Any()); + + } + + [Test] + public void test_sendEvent_withValues() + { + var AppsFlyerMOCKInterface = Substitute.For(); + AppsFlyer.instance = AppsFlyerMOCKInterface; + var eventParams = new Dictionary(); + eventParams.Add("key", "value"); + AppsFlyer.sendEvent("testevent", eventParams); + AppsFlyerMOCKInterface.Received().sendEvent("testevent", eventParams, false, null); + } + + [Test] + public void test_sendEvent_withNullParams() + { + var AppsFlyerMOCKInterface = Substitute.For(); + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.sendEvent("testevent", null); + AppsFlyerMOCKInterface.Received().sendEvent("testevent", null,false, null); + } + + + [Test] + public void test_isSDKStopped_true() + { + var AppsFlyerMOCKInterface = Substitute.For(); + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.stopSDK(true); + + AppsFlyerMOCKInterface.Received().stopSDK(true); + + } + + [Test] + public void test_isSDKStopped_false() + { + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + + AppsFlyer.stopSDK(false); + + AppsFlyerMOCKInterface.Received().stopSDK(false); + + } + + [Test] + public void test_isSDKStopped_called() + { + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + + var isSDKStopped = AppsFlyer.isSDKStopped(); + + AppsFlyerMOCKInterface.Received().isSDKStopped(); + + } + + [Test] + public void test_isSDKStopped_receveivedFalse() + { + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + + var isSDKStopped = AppsFlyer.isSDKStopped(); + + Assert.AreEqual(AppsFlyerMOCKInterface.Received().isSDKStopped(), false); + + + } + + + [Test] + public void test_getSdkVersion_called() + { + var AppsFlyerMOCKInterface = Substitute.For(); + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.getSdkVersion(); + AppsFlyerMOCKInterface.Received().getSdkVersion(); + } + + [Test] + public void test_setCustomerUserId_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setCustomerUserId("test"); + AppsFlyerMOCKInterface.Received().setCustomerUserId("test"); + + } + + [Test] + public void Test_setAppInviteOneLinkID_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setAppInviteOneLinkID("2f36"); + AppsFlyerMOCKInterface.Received().setAppInviteOneLinkID("2f36"); + + } + + [Test] + public void Test_setAdditionalData_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + var customData = new Dictionary(); + customData.Add("test", "test"); + AppsFlyer.setAdditionalData(customData); + AppsFlyerMOCKInterface.Received().setAdditionalData(customData); + } + + [Test] + public void Test_setResolveDeepLinkURLs_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setResolveDeepLinkURLs("url1", "url2"); + AppsFlyerMOCKInterface.Received().setResolveDeepLinkURLs("url1", "url2"); + + } + + [Test] + public void Test_setOneLinkCustomDomain_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setOneLinkCustomDomain("url1", "url2"); + AppsFlyerMOCKInterface.Received().setOneLinkCustomDomain("url1", "url2"); + + } + + [Test] + public void Test_setCurrencyCode_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setCurrencyCode("usd"); + AppsFlyerMOCKInterface.Received().setCurrencyCode("usd"); + + } + + [Test] + public void Test_recordLocation_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.recordLocation(0.3, 5.2); + AppsFlyerMOCKInterface.Received().recordLocation(0.3, 5.2); + + } + + [Test] + public void Test_anonymizeUser_true() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.anonymizeUser(true); + AppsFlyerMOCKInterface.Received().anonymizeUser(true); + + } + + [Test] + public void Test_anonymizeUser_false() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.anonymizeUser(false); + AppsFlyerMOCKInterface.Received().anonymizeUser(false); + + } + + [Test] + public void Test_getAppsFlyerId_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.getAppsFlyerId(); + AppsFlyerMOCKInterface.Received().getAppsFlyerId(); + + } + + [Test] + public void Test_setMinTimeBetweenSessions_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setMinTimeBetweenSessions(3); + AppsFlyerMOCKInterface.Received().setMinTimeBetweenSessions(3); + + } + + [Test] + public void Test_setHost_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setHost("prefix", "name"); + AppsFlyerMOCKInterface.Received().setHost("prefix", "name"); + + } + + [Test] + public void Test_setPhoneNumber_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setPhoneNumber("002"); + AppsFlyerMOCKInterface.Received().setPhoneNumber("002"); + + } + + + [Test] + [System.Obsolete] + public void Test_setSharingFilterForAllPartners_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setSharingFilterForAllPartners(); + AppsFlyerMOCKInterface.Received().setSharingFilterForAllPartners(); + + } + + [Test] + [System.Obsolete] + public void Test_setSharingFilter_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + + + AppsFlyer.setSharingFilter("filter1", "filter2"); + AppsFlyerMOCKInterface.Received().setSharingFilter("filter1", "filter2"); + + } + + [Test] + public void Test_getConversionData_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + + AppsFlyer.getConversionData("ObjectName"); + AppsFlyerMOCKInterface.Received().getConversionData("ObjectName"); + + } + + [Test] + public void Test_attributeAndOpenStore_called_withParams() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + Dictionary parameters = new Dictionary(); + parameters.Add("af_sub1", "val"); + parameters.Add("custom_param", "val2"); + AppsFlyer.attributeAndOpenStore("appid", "campaign", parameters, new MonoBehaviour()); + AppsFlyerMOCKInterface.Received().attributeAndOpenStore("appid", "campaign", parameters, Arg.Any()); + + } + + [Test] + public void Test_attributeAndOpenStore_called_nullParams() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + + AppsFlyer.attributeAndOpenStore("appid", "campaign", null, new MonoBehaviour()); + AppsFlyerMOCKInterface.Received().attributeAndOpenStore("appid", "campaign", null, Arg.Any()); + + } + + [Test] + public void Test_recordCrossPromoteImpression_calledWithParameters() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + Dictionary parameters = new Dictionary(); + parameters.Add("af_sub1", "val"); + parameters.Add("custom_param", "val2"); + AppsFlyer.recordCrossPromoteImpression("appid", "campaign", parameters); + AppsFlyerMOCKInterface.Received().recordCrossPromoteImpression("appid", "campaign", parameters); + + } + + + + [Test] + public void Test_recordCrossPromoteImpression_calledWithoutParameters() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.recordCrossPromoteImpression("appid", "campaign", null); + AppsFlyerMOCKInterface.Received().recordCrossPromoteImpression("appid", "campaign", null); + + } + + [Test] + public void Test_generateUserInviteLink_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + + AppsFlyer.generateUserInviteLink(new Dictionary(), new MonoBehaviour()); + AppsFlyerMOCKInterface.Received().generateUserInviteLink(Arg.Any>(), Arg.Any()); + + } + + + [Test] + public void Test_addPushNotificationDeepLinkPath_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.addPushNotificationDeepLinkPath("path1", "path2"); + AppsFlyerMOCKInterface.Received().addPushNotificationDeepLinkPath("path1", "path2"); + + } + +#if UNITY_ANDROID + [Test] + public void updateServerUninstallToken_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.updateServerUninstallToken("tokenTest"); + AppsFlyerMOCKInterface.Received().updateServerUninstallToken("tokenTest"); + + } + + [Test] + public void setImeiData_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setImeiData("imei"); + AppsFlyerMOCKInterface.Received().setImeiData("imei"); + + } + + [Test] + public void setAndroidIdData_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setAndroidIdData("androidId"); + AppsFlyerMOCKInterface.Received().setAndroidIdData("androidId"); + + } + + [Test] + public void waitForCustomerUserId_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.waitForCustomerUserId(true); + AppsFlyerMOCKInterface.Received().waitForCustomerUserId(true); + + } + + [Test] + public void setCustomerIdAndStartSDK_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setCustomerIdAndStartSDK("01234"); + AppsFlyerMOCKInterface.Received().setCustomerIdAndStartSDK("01234"); + + } + + + [Test] + public void getOutOfStore_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.getOutOfStore(); + AppsFlyerMOCKInterface.Received().getOutOfStore(); + + } + + [Test] + public void setOutOfStore_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setOutOfStore("test"); + AppsFlyerMOCKInterface.Received().setOutOfStore("test"); + + } + + [Test] + public void setCollectAndroidID_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setCollectAndroidID(true); + AppsFlyerMOCKInterface.Received().setCollectAndroidID(true); + + } + + [Test] + public void setCollectIMEI_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setCollectIMEI(true); + AppsFlyerMOCKInterface.Received().setCollectIMEI(true); + + } + + [Test] + public void setIsUpdate_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setIsUpdate(true); + AppsFlyerMOCKInterface.Received().setIsUpdate(true); + + } + + [Test] + public void setPreinstallAttribution_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setPreinstallAttribution("mediaSourceTestt", "campaign", "sideId"); + AppsFlyerMOCKInterface.Received().setPreinstallAttribution("mediaSourceTestt", "campaign", "sideId"); + + } + + [Test] + public void isPreInstalledApp_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.isPreInstalledApp(); + AppsFlyerMOCKInterface.Received().isPreInstalledApp(); + + } + + [Test] + public void getAttributionId_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.getAttributionId(); + AppsFlyerMOCKInterface.Received().getAttributionId(); + + } + + [Test] + public void handlePushNotifications_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.handlePushNotifications(); + AppsFlyerMOCKInterface.Received().handlePushNotifications(); + + } + + [Test] + public void validateAndSendInAppPurchase_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.validateAndSendInAppPurchase("ewjkekwjekw","hewjehwj", "purchaseData", "3.0", "USD", null, null); + AppsFlyerMOCKInterface.Received().validateAndSendInAppPurchase("ewjkekwjekw", "hewjehwj", "purchaseData", "3.0", "USD", null, null); + + } + + [Test] + public void setCollectOaid_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setCollectOaid(true); + AppsFlyerMOCKInterface.Received().setCollectOaid(true); + + } + + [Test] + public void setDisableAdvertisingIdentifiers_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setDisableAdvertisingIdentifiers(true); + AppsFlyerMOCKInterface.Received().setDisableAdvertisingIdentifiers(true); + + } + + [Test] + public void setDisableNetworkData_called() { + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setDisableNetworkData(true); + AppsFlyerMOCKInterface.Received().setDisableNetworkData(true); + } +#elif UNITY_IOS + + [Test] + public void setDisableCollectAppleAdSupport_called_true() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setDisableCollectAppleAdSupport(true); + AppsFlyerMOCKInterface.Received().setDisableCollectAppleAdSupport(true); + + } + + [Test] + public void setDisableCollectAppleAdSupport_called_false() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setDisableCollectAppleAdSupport(false); + AppsFlyerMOCKInterface.Received().setDisableCollectAppleAdSupport(false); + + } + + [Test] + [System.Obsolete] + public void setShouldCollectDeviceName_called_true() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setShouldCollectDeviceName(true); + AppsFlyerMOCKInterface.Received().setShouldCollectDeviceName(true); + + } + + [Test] + [System.Obsolete] + public void setShouldCollectDeviceName_called_false() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setShouldCollectDeviceName(false); + AppsFlyerMOCKInterface.Received().setShouldCollectDeviceName(false); + + } + + [Test] + public void setDisableCollectIAd_called_true() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setDisableCollectIAd(true); + AppsFlyerMOCKInterface.Received().setDisableCollectIAd(true); + + } + + [Test] + public void setDisableCollectIAd_called_false() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setDisableCollectIAd(false); + AppsFlyerMOCKInterface.Received().setDisableCollectIAd(false); + + } + + [Test] + public void setUseReceiptValidationSandbox_called_true() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setUseReceiptValidationSandbox(true); + AppsFlyerMOCKInterface.Received().setUseReceiptValidationSandbox(true); + + } + + [Test] + public void setUseReceiptValidationSandbox_called_false() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setUseReceiptValidationSandbox(false); + AppsFlyerMOCKInterface.Received().setUseReceiptValidationSandbox(false); + + } + + [Test] + public void ssetUseUninstallSandbox_called_true() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setUseUninstallSandbox(true); + AppsFlyerMOCKInterface.Received().setUseUninstallSandbox(true); + + } + + [Test] + public void setUseUninstallSandbox_called_false() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setUseUninstallSandbox(false); + AppsFlyerMOCKInterface.Received().setUseUninstallSandbox(false); + + } + + [Test] + public void validateAndSendInAppPurchase_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.validateAndSendInAppPurchase("3d2", "5.0","USD", "45", null, null); + AppsFlyerMOCKInterface.Received().validateAndSendInAppPurchase("3d2", "5.0", "USD", "45", null, null); + + } + + [Test] + public void registerUninstall_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + byte[] token = System.Text.Encoding.UTF8.GetBytes("740f4707 bebcf74f 9b7c25d4 8e335894 5f6aa01d a5ddb387 462c7eaf 61bb78ad"); + AppsFlyer.registerUninstall(token); + AppsFlyerMOCKInterface.Received().registerUninstall(token); + + } + + [Test] + public void handleOpenUrl_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.handleOpenUrl("www.test.com", "appTest", "test"); + AppsFlyerMOCKInterface.Received().handleOpenUrl("www.test.com", "appTest", "test"); + + } + + [Test] + public void waitForATTUserAuthorizationWithTimeoutInterval_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.waitForATTUserAuthorizationWithTimeoutInterval(30); + AppsFlyerMOCKInterface.Received().waitForATTUserAuthorizationWithTimeoutInterval(30); + + } + + [Test] + public void setCurrentDeviceLanguage_called() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.setCurrentDeviceLanguage("en"); + AppsFlyerMOCKInterface.Received().setCurrentDeviceLanguage("en"); + + } + + [Test] + public void disableSKAdNetwork_called_true() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.disableSKAdNetwork(true); + AppsFlyerMOCKInterface.Received().disableSKAdNetwork(true); + + } + + [Test] + public void disableSKAdNetwork_called_false() + { + + var AppsFlyerMOCKInterface = Substitute.For(); + + AppsFlyer.instance = AppsFlyerMOCKInterface; + AppsFlyer.disableSKAdNetwork(false); + AppsFlyerMOCKInterface.Received().disableSKAdNetwork(false); + + } + +#endif + } +} diff --git a/Assets/AppsFlyer/Tests/Tests_Suite.cs.meta b/Assets/AppsFlyer/Tests/Tests_Suite.cs.meta new file mode 100644 index 0000000..c20a62c --- /dev/null +++ b/Assets/AppsFlyer/Tests/Tests_Suite.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1b1a24aa01166451d804d7c03c14a3db +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AppsFlyer/Windows/AppsFlyerWindows.cs b/Assets/AppsFlyer/Windows/AppsFlyerWindows.cs index a44fea4..8fd696f 100644 --- a/Assets/AppsFlyer/Windows/AppsFlyerWindows.cs +++ b/Assets/AppsFlyer/Windows/AppsFlyerWindows.cs @@ -1,145 +1,145 @@ -//#define AFSDK_WIN_DEBUG -//#define UNITY_WSA_10_0 -//#define ENABLE_WINMD_SUPPORT - -#if UNITY_WSA_10_0 -using System; -using System.Collections; -using System.Collections.Generic; -using System.Reflection; -using System.ComponentModel; -using UnityEngine; -using System.Threading.Tasks; - -#if ENABLE_WINMD_SUPPORT -using AppsFlyerLib; -#endif - -namespace AppsFlyerSDK -{ - public class AppsFlyerWindows - { -#if ENABLE_WINMD_SUPPORT - static private MonoBehaviour _gameObject = null; -#endif - - public static void InitSDK(string devKey, string appId, MonoBehaviour gameObject) - { -#if ENABLE_WINMD_SUPPORT - -#if AFSDK_WIN_DEBUG - // Remove callstack - Application.SetStackTraceLogType(LogType.Log, StackTraceLogType.None); -#endif - Log("[InitSDK]: devKey: {0}, appId: {1}, gameObject: {2}", devKey, appId, gameObject == null ? "null" : gameObject.ToString()); - AppsFlyerTracker tracker = AppsFlyerTracker.GetAppsFlyerTracker(); - tracker.devKey = devKey; - tracker.appId = appId; - // Interface - _gameObject = gameObject; -#endif - } - - public static string GetAppsFlyerId() - { -#if ENABLE_WINMD_SUPPORT - Log("[GetAppsFlyerId]"); - return AppsFlyerTracker.GetAppsFlyerTracker().GetAppsFlyerUID(); -#else - return ""; -#endif - } - - public static void SetCustomerUserId(string customerUserId) - { -#if ENABLE_WINMD_SUPPORT - Log("[SetCustomerUserId] customerUserId: {0}", customerUserId); - if (customerUserId.Contains("test_device:")) - { - string testDeviceId = customerUserId.Substring(12); - AppsFlyerTracker.GetAppsFlyerTracker().testDeviceId = testDeviceId; - } - AppsFlyerTracker.GetAppsFlyerTracker().customerUserId = customerUserId; -#endif - } - - public static void Start() - { -#if ENABLE_WINMD_SUPPORT - Log("[Start]"); - AppsFlyerTracker.GetAppsFlyerTracker().TrackAppLaunchAsync(Callback); -#endif - } - -#if ENABLE_WINMD_SUPPORT - public static void Callback(AppsFlyerLib.ServerStatusCode code) - { - Log("[Callback]: {0}", code.ToString()); - - AppsFlyerRequestEventArgs eventArgs = new AppsFlyerRequestEventArgs((int)code, code.ToString()); - if (_gameObject != null) { - var method = _gameObject.GetType().GetMethod("AppsFlyerOnRequestResponse"); - if (method != null) { - method.Invoke(_gameObject, new object[] { AppsFlyerTracker.GetAppsFlyerTracker(), eventArgs }); - } - } - } -#endif - - public static void LogEvent(string eventName, Dictionary eventValues) - { -#if ENABLE_WINMD_SUPPORT - if (eventValues == null) - { - eventValues = new Dictionary(); - } - IDictionary result = new Dictionary(); - foreach (KeyValuePair kvp in eventValues) - { - result.Add(kvp.Key.ToString(), kvp.Value); - } - - Log("[LogEvent]: eventName: {0} result: {1}", eventName, result.ToString()); - - AppsFlyerTracker tracker = AppsFlyerTracker.GetAppsFlyerTracker(); - tracker.TrackEvent(eventName, result); - -#endif - } - - - public static void GetConversionData(string _reserved) - { -#if ENABLE_WINMD_SUPPORT - Task.Run(async () => - { - AppsFlyerLib.AppsFlyerTracker tracker = AppsFlyerLib.AppsFlyerTracker.GetAppsFlyerTracker(); - string conversionData = await tracker.GetConversionDataAsync(); - - IAppsFlyerConversionData conversionDataHandler = _gameObject as IAppsFlyerConversionData; - - if (conversionDataHandler != null) - { - Log("[GetConversionData] Will call `onConversionDataSuccess` with: {0}", conversionData); - conversionDataHandler.onConversionDataSuccess(conversionData); - } else { - Log("[GetConversionData] Object with `IAppsFlyerConversionData` interface not found! Check `InitSDK` implementation"); - } - // _gameObject.GetType().GetMethod("onConversionDataSuccess").Invoke(_gameObject, new[] { conversionData }); - }); -#endif - } - - private static void Log(string format, params string[] args) - { -#if AFSDK_WIN_DEBUG -#if ENABLE_WINMD_SUPPORT - Debug.Log("AF_UNITY_WSA_10_0" + String.Format(format, args)); -#endif -#endif - } - - } - -} -#endif +//#define AFSDK_WIN_DEBUG +//#define UNITY_WSA_10_0 +//#define ENABLE_WINMD_SUPPORT + +#if UNITY_WSA_10_0 +using System; +using System.Collections; +using System.Collections.Generic; +using System.Reflection; +using System.ComponentModel; +using UnityEngine; +using System.Threading.Tasks; + +#if ENABLE_WINMD_SUPPORT +using AppsFlyerLib; +#endif + +namespace AppsFlyerSDK +{ + public class AppsFlyerWindows + { +#if ENABLE_WINMD_SUPPORT + static private MonoBehaviour _gameObject = null; +#endif + + public static void InitSDK(string devKey, string appId, MonoBehaviour gameObject) + { +#if ENABLE_WINMD_SUPPORT + +#if AFSDK_WIN_DEBUG + // Remove callstack + Application.SetStackTraceLogType(LogType.Log, StackTraceLogType.None); +#endif + Log("[InitSDK]: devKey: {0}, appId: {1}, gameObject: {2}", devKey, appId, gameObject == null ? "null" : gameObject.ToString()); + AppsFlyerTracker tracker = AppsFlyerTracker.GetAppsFlyerTracker(); + tracker.devKey = devKey; + tracker.appId = appId; + // Interface + _gameObject = gameObject; +#endif + } + + public static string GetAppsFlyerId() + { +#if ENABLE_WINMD_SUPPORT + Log("[GetAppsFlyerId]"); + return AppsFlyerTracker.GetAppsFlyerTracker().GetAppsFlyerUID(); +#else + return ""; +#endif + } + + public static void SetCustomerUserId(string customerUserId) + { +#if ENABLE_WINMD_SUPPORT + Log("[SetCustomerUserId] customerUserId: {0}", customerUserId); + if (customerUserId.Contains("test_device:")) + { + string testDeviceId = customerUserId.Substring(12); + AppsFlyerTracker.GetAppsFlyerTracker().testDeviceId = testDeviceId; + } + AppsFlyerTracker.GetAppsFlyerTracker().customerUserId = customerUserId; +#endif + } + + public static void Start() + { +#if ENABLE_WINMD_SUPPORT + Log("[Start]"); + AppsFlyerTracker.GetAppsFlyerTracker().TrackAppLaunchAsync(Callback); +#endif + } + +#if ENABLE_WINMD_SUPPORT + public static void Callback(AppsFlyerLib.ServerStatusCode code) + { + Log("[Callback]: {0}", code.ToString()); + + AppsFlyerRequestEventArgs eventArgs = new AppsFlyerRequestEventArgs((int)code, code.ToString()); + if (_gameObject != null) { + var method = _gameObject.GetType().GetMethod("AppsFlyerOnRequestResponse"); + if (method != null) { + method.Invoke(_gameObject, new object[] { AppsFlyerTracker.GetAppsFlyerTracker(), eventArgs }); + } + } + } +#endif + + public static void LogEvent(string eventName, Dictionary eventValues) + { +#if ENABLE_WINMD_SUPPORT + if (eventValues == null) + { + eventValues = new Dictionary(); + } + IDictionary result = new Dictionary(); + foreach (KeyValuePair kvp in eventValues) + { + result.Add(kvp.Key.ToString(), kvp.Value); + } + + Log("[LogEvent]: eventName: {0} result: {1}", eventName, result.ToString()); + + AppsFlyerTracker tracker = AppsFlyerTracker.GetAppsFlyerTracker(); + tracker.TrackEvent(eventName, result); + +#endif + } + + + public static void GetConversionData(string _reserved) + { +#if ENABLE_WINMD_SUPPORT + Task.Run(async () => + { + AppsFlyerLib.AppsFlyerTracker tracker = AppsFlyerLib.AppsFlyerTracker.GetAppsFlyerTracker(); + string conversionData = await tracker.GetConversionDataAsync(); + + IAppsFlyerConversionData conversionDataHandler = _gameObject as IAppsFlyerConversionData; + + if (conversionDataHandler != null) + { + Log("[GetConversionData] Will call `onConversionDataSuccess` with: {0}", conversionData); + conversionDataHandler.onConversionDataSuccess(conversionData); + } else { + Log("[GetConversionData] Object with `IAppsFlyerConversionData` interface not found! Check `InitSDK` implementation"); + } + // _gameObject.GetType().GetMethod("onConversionDataSuccess").Invoke(_gameObject, new[] { conversionData }); + }); +#endif + } + + private static void Log(string format, params string[] args) + { +#if AFSDK_WIN_DEBUG +#if ENABLE_WINMD_SUPPORT + Debug.Log("AF_UNITY_WSA_10_0" + String.Format(format, args)); +#endif +#endif + } + + } + +} +#endif diff --git a/Assets/AppsFlyer/package.json b/Assets/AppsFlyer/package.json index cbb2c92..6ac2853 100644 --- a/Assets/AppsFlyer/package.json +++ b/Assets/AppsFlyer/package.json @@ -2,7 +2,7 @@ "name": "appsflyer-unity-plugin", "displayName": "AppsFlyer", "description": "AppsFlyer Unity plugin", - "version": "6.17.1", + "version": "6.17.91", "unity": "2019.4", "license": "MIT" } diff --git a/Assets/Editor Default Resources.meta b/Assets/Editor Default Resources.meta new file mode 100644 index 0000000..aebacf5 --- /dev/null +++ b/Assets/Editor Default Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d95f4eb6b76da3c4e98b4ef7af986b62 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/CrashlyticsSettings.asset b/Assets/Editor Default Resources/CrashlyticsSettings.asset new file mode 100644 index 0000000..c9b5384 --- /dev/null +++ b/Assets/Editor Default Resources/CrashlyticsSettings.asset @@ -0,0 +1,19 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1465085449, guid: 3781f2218eef4d5a823dba406baa434b, type: 3} + m_Name: CrashlyticsSettings + m_EditorClassIdentifier: + configuration: + stringProperties: [] + intProperties: [] + floatProperties: [] + booleanProperties: [] diff --git a/Assets/Editor Default Resources/CrashlyticsSettings.asset.meta b/Assets/Editor Default Resources/CrashlyticsSettings.asset.meta new file mode 100644 index 0000000..af89805 --- /dev/null +++ b/Assets/Editor Default Resources/CrashlyticsSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e3b372c796e407e499eff2e854a571ec +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase.meta b/Assets/Editor Default Resources/Firebase.meta new file mode 100644 index 0000000..5bfc89e --- /dev/null +++ b/Assets/Editor Default Resources/Firebase.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ff264e59d64e1824e8d61afc436a5db7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_analytics.png b/Assets/Editor Default Resources/Firebase/fb_analytics.png new file mode 100644 index 0000000..3f19563 Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_analytics.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_analytics.png.meta b/Assets/Editor Default Resources/Firebase/fb_analytics.png.meta new file mode 100644 index 0000000..90c6b61 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_analytics.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: dc218b335b1d14cd5ae532f65042d829 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_analytics.png +timeCreated: 1473376337 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_analytics_dark.png b/Assets/Editor Default Resources/Firebase/fb_analytics_dark.png new file mode 100644 index 0000000..e6b922e Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_analytics_dark.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_analytics_dark.png.meta b/Assets/Editor Default Resources/Firebase/fb_analytics_dark.png.meta new file mode 100644 index 0000000..42be9ef --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_analytics_dark.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 9fe4b3bd3b7d2477dac92fb7429d1d1b +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_analytics_dark.png +timeCreated: 1472679008 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_auth.png b/Assets/Editor Default Resources/Firebase/fb_auth.png new file mode 100644 index 0000000..b5ccfe9 Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_auth.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_auth.png.meta b/Assets/Editor Default Resources/Firebase/fb_auth.png.meta new file mode 100644 index 0000000..377c8f7 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_auth.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 394b3ec4d60c24476a12e4ba696d9e5d +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_auth.png +timeCreated: 1473376335 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_auth_dark.png b/Assets/Editor Default Resources/Firebase/fb_auth_dark.png new file mode 100644 index 0000000..e90ec77 Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_auth_dark.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_auth_dark.png.meta b/Assets/Editor Default Resources/Firebase/fb_auth_dark.png.meta new file mode 100644 index 0000000..a54cd3c --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_auth_dark.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 3a9e1ef6287664c389bb09e2ac1b23b7 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_auth_dark.png +timeCreated: 1472679008 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_cloud_messaging.png b/Assets/Editor Default Resources/Firebase/fb_cloud_messaging.png new file mode 100644 index 0000000..350c03f Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_cloud_messaging.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_cloud_messaging.png.meta b/Assets/Editor Default Resources/Firebase/fb_cloud_messaging.png.meta new file mode 100644 index 0000000..b939808 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_cloud_messaging.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 837e8e1f35e334e81931d0857680cebf +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_cloud_messaging.png +timeCreated: 1473376336 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_cloud_messaging_dark.png b/Assets/Editor Default Resources/Firebase/fb_cloud_messaging_dark.png new file mode 100644 index 0000000..1fbb8dc Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_cloud_messaging_dark.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_cloud_messaging_dark.png.meta b/Assets/Editor Default Resources/Firebase/fb_cloud_messaging_dark.png.meta new file mode 100644 index 0000000..ce5d2ad --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_cloud_messaging_dark.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 20c5b8a1f82cb4aadb77ca20683d2a6e +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_cloud_messaging_dark.png +timeCreated: 1472679008 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_config.png b/Assets/Editor Default Resources/Firebase/fb_config.png new file mode 100644 index 0000000..3c69287 Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_config.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_config.png.meta b/Assets/Editor Default Resources/Firebase/fb_config.png.meta new file mode 100644 index 0000000..23a1363 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_config.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 415eaec414af14d11955222a282aca08 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_config.png +timeCreated: 1473376335 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_config_dark.png b/Assets/Editor Default Resources/Firebase/fb_config_dark.png new file mode 100644 index 0000000..5441081 Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_config_dark.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_config_dark.png.meta b/Assets/Editor Default Resources/Firebase/fb_config_dark.png.meta new file mode 100644 index 0000000..cc8fdac --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_config_dark.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 0ad9ef5fff5524355a9670c90a99cbba +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_config_dark.png +timeCreated: 1472679008 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_crashlytics.png b/Assets/Editor Default Resources/Firebase/fb_crashlytics.png new file mode 100644 index 0000000..e9b7cad Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_crashlytics.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_crashlytics.png.meta b/Assets/Editor Default Resources/Firebase/fb_crashlytics.png.meta new file mode 100644 index 0000000..4ffc811 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_crashlytics.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 008a5e76206e49f9b06d8ba144aabb38 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_crashlytics.png +timeCreated: 1473376335 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_crashlytics_dark.png b/Assets/Editor Default Resources/Firebase/fb_crashlytics_dark.png new file mode 100644 index 0000000..52f5d48 Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_crashlytics_dark.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_crashlytics_dark.png.meta b/Assets/Editor Default Resources/Firebase/fb_crashlytics_dark.png.meta new file mode 100644 index 0000000..f0a38b2 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_crashlytics_dark.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 214009068900439da4a9cded17d58090 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_crashlytics_dark.png +timeCreated: 1472679008 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_database.png b/Assets/Editor Default Resources/Firebase/fb_database.png new file mode 100644 index 0000000..a2a186d Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_database.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_database.png.meta b/Assets/Editor Default Resources/Firebase/fb_database.png.meta new file mode 100644 index 0000000..44581e6 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_database.png.meta @@ -0,0 +1,69 @@ +fileFormatVersion: 2 +guid: 3eea7b558c67b48e18acf3c278392e3d +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_database.png +timeCreated: 1476203961 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_database_dark.png b/Assets/Editor Default Resources/Firebase/fb_database_dark.png new file mode 100644 index 0000000..ecc572e Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_database_dark.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_database_dark.png.meta b/Assets/Editor Default Resources/Firebase/fb_database_dark.png.meta new file mode 100644 index 0000000..5241661 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_database_dark.png.meta @@ -0,0 +1,69 @@ +fileFormatVersion: 2 +guid: 9f6bfa9d8aefb40dc92461c372c73b0f +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_database_dark.png +timeCreated: 1476203949 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_dynamic_links.png b/Assets/Editor Default Resources/Firebase/fb_dynamic_links.png new file mode 100644 index 0000000..a06148e Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_dynamic_links.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_dynamic_links.png.meta b/Assets/Editor Default Resources/Firebase/fb_dynamic_links.png.meta new file mode 100644 index 0000000..68f8fec --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_dynamic_links.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: df6f219c396f4ad9b5048bae6944cb8e +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_dynamic_links.png +timeCreated: 1473376335 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_dynamic_links_dark.png b/Assets/Editor Default Resources/Firebase/fb_dynamic_links_dark.png new file mode 100644 index 0000000..a35cb52 Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_dynamic_links_dark.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_dynamic_links_dark.png.meta b/Assets/Editor Default Resources/Firebase/fb_dynamic_links_dark.png.meta new file mode 100644 index 0000000..bc0a359 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_dynamic_links_dark.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 9355a4671cfe4eef90879863318d1a4b +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_dynamic_links_dark.png +timeCreated: 1472679009 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_functions.png b/Assets/Editor Default Resources/Firebase/fb_functions.png new file mode 100644 index 0000000..776283e Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_functions.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_functions.png.meta b/Assets/Editor Default Resources/Firebase/fb_functions.png.meta new file mode 100644 index 0000000..1ab5de5 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_functions.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 953367231f9e3e22e70e5d1c91a40fe5 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_functions.png +timeCreated: 1473376335 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_functions_dark.png b/Assets/Editor Default Resources/Firebase/fb_functions_dark.png new file mode 100644 index 0000000..64741fc Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_functions_dark.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_functions_dark.png.meta b/Assets/Editor Default Resources/Firebase/fb_functions_dark.png.meta new file mode 100644 index 0000000..0d2d0d9 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_functions_dark.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: b5aa3e4f7432e1c5698417cc13f85271 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_functions_dark.png +timeCreated: 1472679008 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_invites.png b/Assets/Editor Default Resources/Firebase/fb_invites.png new file mode 100644 index 0000000..be9a9b9 Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_invites.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_invites.png.meta b/Assets/Editor Default Resources/Firebase/fb_invites.png.meta new file mode 100644 index 0000000..1683e18 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_invites.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 741b269777f30488482ef4937b456b28 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_invites.png +timeCreated: 1473376335 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_invites_dark.png b/Assets/Editor Default Resources/Firebase/fb_invites_dark.png new file mode 100644 index 0000000..1bd1a90 Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_invites_dark.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_invites_dark.png.meta b/Assets/Editor Default Resources/Firebase/fb_invites_dark.png.meta new file mode 100644 index 0000000..f1c014c --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_invites_dark.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: a734ad7414926404e90f8b5be37b7e23 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_invites_dark.png +timeCreated: 1472679009 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_storage.png b/Assets/Editor Default Resources/Firebase/fb_storage.png new file mode 100644 index 0000000..ef8e129 Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_storage.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_storage.png.meta b/Assets/Editor Default Resources/Firebase/fb_storage.png.meta new file mode 100644 index 0000000..5d0baca --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_storage.png.meta @@ -0,0 +1,78 @@ +fileFormatVersion: 2 +guid: 573eb851c99f948f4bf2de49322bfd53 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_storage.png +timeCreated: 1481243899 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/fb_storage_dark.png b/Assets/Editor Default Resources/Firebase/fb_storage_dark.png new file mode 100644 index 0000000..b18ac5e Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/fb_storage_dark.png differ diff --git a/Assets/Editor Default Resources/Firebase/fb_storage_dark.png.meta b/Assets/Editor Default Resources/Firebase/fb_storage_dark.png.meta new file mode 100644 index 0000000..6df54d6 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/fb_storage_dark.png.meta @@ -0,0 +1,78 @@ +fileFormatVersion: 2 +guid: 2955864b938094f579ea9902b65ac10c +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/fb_storage_dark.png +timeCreated: 1481243898 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 4 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/firebase_lockup.png b/Assets/Editor Default Resources/Firebase/firebase_lockup.png new file mode 100644 index 0000000..26fdb09 Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/firebase_lockup.png differ diff --git a/Assets/Editor Default Resources/Firebase/firebase_lockup.png.meta b/Assets/Editor Default Resources/Firebase/firebase_lockup.png.meta new file mode 100644 index 0000000..a6ff451 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/firebase_lockup.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: 9f058f25e8e2d47cfb894951d4d7e48a +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/firebase_lockup.png +timeCreated: 1473376336 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Editor Default Resources/Firebase/firebase_lockup_dark.png b/Assets/Editor Default Resources/Firebase/firebase_lockup_dark.png new file mode 100644 index 0000000..c02c0b7 Binary files /dev/null and b/Assets/Editor Default Resources/Firebase/firebase_lockup_dark.png differ diff --git a/Assets/Editor Default Resources/Firebase/firebase_lockup_dark.png.meta b/Assets/Editor Default Resources/Firebase/firebase_lockup_dark.png.meta new file mode 100644 index 0000000..77d43d4 --- /dev/null +++ b/Assets/Editor Default Resources/Firebase/firebase_lockup_dark.png.meta @@ -0,0 +1,68 @@ +fileFormatVersion: 2 +guid: b93330fc8ea08407dbc514b5101afa14 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Editor Default Resources/Firebase/firebase_lockup_dark.png +timeCreated: 1472601251 +licenseType: Pro +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 7 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: 1 + mipBias: -1 + wrapMode: 1 + nPOTScale: 0 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + allowsAlphaSplitting: 0 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spritePixelsToUnits: 100 + alphaIsTransparency: 1 + textureType: 2 + buildTargetSettings: [] + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExternalDependencyManager/Editor/1.2.177.meta b/Assets/ExternalDependencyManager/Editor/1.2.177.meta new file mode 100644 index 0000000..73e4ac2 --- /dev/null +++ b/Assets/ExternalDependencyManager/Editor/1.2.177.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d6750a74bc39c4450843327dbf5ca6ab +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExternalDependencyManager/Editor/1.2.177/Google.IOSResolver.dll b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.IOSResolver.dll new file mode 100644 index 0000000..3854d85 Binary files /dev/null and b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.IOSResolver.dll differ diff --git a/Assets/ExternalDependencyManager/Editor/1.2.177/Google.IOSResolver.dll.meta b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.IOSResolver.dll.meta new file mode 100644 index 0000000..6e3c828 --- /dev/null +++ b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.IOSResolver.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 599b2f02d9a8248d9a7b8f0be6163d8f +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExternalDependencyManager/Editor/1.2.177/Google.JarResolver.dll b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.JarResolver.dll new file mode 100644 index 0000000..4412429 Binary files /dev/null and b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.JarResolver.dll differ diff --git a/Assets/ExternalDependencyManager/Editor/1.2.177/Google.JarResolver.dll.meta b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.JarResolver.dll.meta new file mode 100644 index 0000000..aeabe05 --- /dev/null +++ b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.JarResolver.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 019187800ae574fc3aa5d9c2c854efbc +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExternalDependencyManager/Editor/1.2.177/Google.PackageManagerResolver.dll b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.PackageManagerResolver.dll new file mode 100644 index 0000000..658282c Binary files /dev/null and b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.PackageManagerResolver.dll differ diff --git a/Assets/ExternalDependencyManager/Editor/1.2.177/Google.PackageManagerResolver.dll.meta b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.PackageManagerResolver.dll.meta new file mode 100644 index 0000000..727d763 --- /dev/null +++ b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.PackageManagerResolver.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 7cc889411af084bd3a8df5f29e4c6fce +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExternalDependencyManager/Editor/1.2.177/Google.VersionHandlerImpl.dll b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.VersionHandlerImpl.dll new file mode 100644 index 0000000..f80ebeb Binary files /dev/null and b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.VersionHandlerImpl.dll differ diff --git a/Assets/ExternalDependencyManager/Editor/1.2.177/Google.VersionHandlerImpl.dll.meta b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.VersionHandlerImpl.dll.meta new file mode 100644 index 0000000..b99c775 --- /dev/null +++ b/Assets/ExternalDependencyManager/Editor/1.2.177/Google.VersionHandlerImpl.dll.meta @@ -0,0 +1,33 @@ +fileFormatVersion: 2 +guid: 05040c30aa6104ac98fd8b438d7a7604 +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + DefaultValueInitialized: true + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ExternalDependencyManager/Editor/external-dependency-manager_version-1.2.177_manifest.txt b/Assets/ExternalDependencyManager/Editor/external-dependency-manager_version-1.2.177_manifest.txt new file mode 100644 index 0000000..5aac0e8 --- /dev/null +++ b/Assets/ExternalDependencyManager/Editor/external-dependency-manager_version-1.2.177_manifest.txt @@ -0,0 +1,13 @@ +Assets/ExternalDependencyManager/Editor/1.2.177/Google.IOSResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.177/Google.IOSResolver.dll.mdb +Assets/ExternalDependencyManager/Editor/1.2.177/Google.JarResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.177/Google.JarResolver.dll.mdb +Assets/ExternalDependencyManager/Editor/1.2.177/Google.PackageManagerResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.177/Google.PackageManagerResolver.dll.mdb +Assets/ExternalDependencyManager/Editor/1.2.177/Google.VersionHandlerImpl.dll +Assets/ExternalDependencyManager/Editor/1.2.177/Google.VersionHandlerImpl.dll.mdb +Assets/ExternalDependencyManager/Editor/CHANGELOG.md +Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll +Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll.mdb +Assets/ExternalDependencyManager/Editor/LICENSE +Assets/ExternalDependencyManager/Editor/README.md diff --git a/Assets/ExternalDependencyManager/Editor/external-dependency-manager_version-1.2.177_manifest.txt.meta b/Assets/ExternalDependencyManager/Editor/external-dependency-manager_version-1.2.177_manifest.txt.meta new file mode 100644 index 0000000..ebc018d --- /dev/null +++ b/Assets/ExternalDependencyManager/Editor/external-dependency-manager_version-1.2.177_manifest.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5a60495da67554141958dc13a662ea1b +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase.meta b/Assets/Firebase.meta new file mode 100644 index 0000000..6d29d43 --- /dev/null +++ b/Assets/Firebase.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3ec08b98a0bbe0e4982efbe3ee6c33ac +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor.meta b/Assets/Firebase/Editor.meta new file mode 100644 index 0000000..afe521f --- /dev/null +++ b/Assets/Firebase/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8e8f7d71b39131a448de54c9ec6777b9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/AnalyticsDependencies.xml b/Assets/Firebase/Editor/AnalyticsDependencies.xml new file mode 100644 index 0000000..1cccffe --- /dev/null +++ b/Assets/Firebase/Editor/AnalyticsDependencies.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + Assets/Firebase/m2repository + + + + diff --git a/Assets/Firebase/Editor/AnalyticsDependencies.xml.meta b/Assets/Firebase/Editor/AnalyticsDependencies.xml.meta new file mode 100644 index 0000000..4afd953 --- /dev/null +++ b/Assets/Firebase/Editor/AnalyticsDependencies.xml.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1e3c2da79be842cd838a9ddd70d20fa9 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/AnalyticsDependencies.xml +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/AppDependencies.xml b/Assets/Firebase/Editor/AppDependencies.xml new file mode 100644 index 0000000..61e899d --- /dev/null +++ b/Assets/Firebase/Editor/AppDependencies.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + Assets/Firebase/m2repository + + + + diff --git a/Assets/Firebase/Editor/AppDependencies.xml.meta b/Assets/Firebase/Editor/AppDependencies.xml.meta new file mode 100644 index 0000000..e34bfdc --- /dev/null +++ b/Assets/Firebase/Editor/AppDependencies.xml.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9b63af95d9364af4a3d8ce58738b6223 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/AppDependencies.xml +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/CrashlyticsDependencies.xml b/Assets/Firebase/Editor/CrashlyticsDependencies.xml new file mode 100644 index 0000000..6fccc35 --- /dev/null +++ b/Assets/Firebase/Editor/CrashlyticsDependencies.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + Assets/Firebase/m2repository + + + + diff --git a/Assets/Firebase/Editor/CrashlyticsDependencies.xml.meta b/Assets/Firebase/Editor/CrashlyticsDependencies.xml.meta new file mode 100644 index 0000000..956d5df --- /dev/null +++ b/Assets/Firebase/Editor/CrashlyticsDependencies.xml.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: be690db6bda046a89e38b20ef9bfe06c +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/CrashlyticsDependencies.xml +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/Firebase.Crashlytics.Editor.dll b/Assets/Firebase/Editor/Firebase.Crashlytics.Editor.dll new file mode 100644 index 0000000..088288a Binary files /dev/null and b/Assets/Firebase/Editor/Firebase.Crashlytics.Editor.dll differ diff --git a/Assets/Firebase/Editor/Firebase.Crashlytics.Editor.dll.meta b/Assets/Firebase/Editor/Firebase.Crashlytics.Editor.dll.meta new file mode 100644 index 0000000..3ea95b5 --- /dev/null +++ b/Assets/Firebase/Editor/Firebase.Crashlytics.Editor.dll.meta @@ -0,0 +1,118 @@ +fileFormatVersion: 2 +guid: 3781f2218eef4d5a823dba406baa434b +labels: +- gvh +- gvh_targets-editor +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/Firebase.Crashlytics.Editor.dll +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Linux + second: + enabled: 0 + settings: + CPU: None + - first: + : LinuxUniversal + second: + enabled: 0 + settings: + CPU: None + - first: + : OSXIntel + second: + enabled: 0 + settings: + CPU: None + - first: + : OSXIntel64 + second: + enabled: 0 + settings: + CPU: None + - first: + : Web + second: + enabled: 0 + settings: {} + - first: + : WebStreamed + second: + enabled: 0 + settings: {} + - first: + Android: Android + second: + enabled: 0 + settings: + CPU: AnyCPU + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: None + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + - first: + iPhone: iOS + second: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + - first: + tvOS: tvOS + second: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/Firebase.Crashlytics.Editor.pdb b/Assets/Firebase/Editor/Firebase.Crashlytics.Editor.pdb new file mode 100644 index 0000000..6061804 Binary files /dev/null and b/Assets/Firebase/Editor/Firebase.Crashlytics.Editor.pdb differ diff --git a/Assets/Firebase/Editor/Firebase.Crashlytics.Editor.pdb.meta b/Assets/Firebase/Editor/Firebase.Crashlytics.Editor.pdb.meta new file mode 100644 index 0000000..bd4b11a --- /dev/null +++ b/Assets/Firebase/Editor/Firebase.Crashlytics.Editor.pdb.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 78466de0dce747f9bf1d009be141cf6f +labels: +- gvh +- gvh_rename_to_disable +- gvh_targets-editor +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/Firebase.Crashlytics.Editor.pdb +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/Firebase.Editor.dll b/Assets/Firebase/Editor/Firebase.Editor.dll new file mode 100644 index 0000000..e03072c Binary files /dev/null and b/Assets/Firebase/Editor/Firebase.Editor.dll differ diff --git a/Assets/Firebase/Editor/Firebase.Editor.dll.meta b/Assets/Firebase/Editor/Firebase.Editor.dll.meta new file mode 100644 index 0000000..b511518 --- /dev/null +++ b/Assets/Firebase/Editor/Firebase.Editor.dll.meta @@ -0,0 +1,118 @@ +fileFormatVersion: 2 +guid: 9f2edbf81053418f879076c05f816dc2 +labels: +- gvh +- gvh_targets-editor +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/Firebase.Editor.dll +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Linux + second: + enabled: 0 + settings: + CPU: None + - first: + : LinuxUniversal + second: + enabled: 0 + settings: + CPU: None + - first: + : OSXIntel + second: + enabled: 0 + settings: + CPU: None + - first: + : OSXIntel64 + second: + enabled: 0 + settings: + CPU: None + - first: + : Web + second: + enabled: 0 + settings: {} + - first: + : WebStreamed + second: + enabled: 0 + settings: {} + - first: + Android: Android + second: + enabled: 0 + settings: + CPU: AnyCPU + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: None + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + - first: + iPhone: iOS + second: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + - first: + tvOS: tvOS + second: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/Firebase.Editor.pdb b/Assets/Firebase/Editor/Firebase.Editor.pdb new file mode 100644 index 0000000..d90fb86 Binary files /dev/null and b/Assets/Firebase/Editor/Firebase.Editor.pdb differ diff --git a/Assets/Firebase/Editor/Firebase.Editor.pdb.meta b/Assets/Firebase/Editor/Firebase.Editor.pdb.meta new file mode 100644 index 0000000..b447a3d --- /dev/null +++ b/Assets/Firebase/Editor/Firebase.Editor.pdb.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: f2ceb9c446ee4196b6476d4978a416b6 +labels: +- gvh +- gvh_rename_to_disable +- gvh_targets-editor +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/Firebase.Editor.pdb +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/Firebase.Messaging.Editor.dll b/Assets/Firebase/Editor/Firebase.Messaging.Editor.dll new file mode 100644 index 0000000..3c4b5ba Binary files /dev/null and b/Assets/Firebase/Editor/Firebase.Messaging.Editor.dll differ diff --git a/Assets/Firebase/Editor/Firebase.Messaging.Editor.dll.meta b/Assets/Firebase/Editor/Firebase.Messaging.Editor.dll.meta new file mode 100644 index 0000000..a2e42b2 --- /dev/null +++ b/Assets/Firebase/Editor/Firebase.Messaging.Editor.dll.meta @@ -0,0 +1,118 @@ +fileFormatVersion: 2 +guid: 9555198c219241e0b850872f8732192f +labels: +- gvh +- gvh_targets-editor +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/Firebase.Messaging.Editor.dll +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + : Linux + second: + enabled: 0 + settings: + CPU: None + - first: + : LinuxUniversal + second: + enabled: 0 + settings: + CPU: None + - first: + : OSXIntel + second: + enabled: 0 + settings: + CPU: None + - first: + : OSXIntel64 + second: + enabled: 0 + settings: + CPU: None + - first: + : Web + second: + enabled: 0 + settings: {} + - first: + : WebStreamed + second: + enabled: 0 + settings: {} + - first: + Android: Android + second: + enabled: 0 + settings: + CPU: AnyCPU + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + - first: + Standalone: Linux64 + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: OSXUniversal + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win + second: + enabled: 0 + settings: + CPU: None + - first: + Standalone: Win64 + second: + enabled: 0 + settings: + CPU: None + - first: + Windows Store Apps: WindowsStoreApps + second: + enabled: 0 + settings: + CPU: AnyCPU + - first: + iPhone: iOS + second: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + - first: + tvOS: tvOS + second: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/Firebase.Messaging.Editor.pdb b/Assets/Firebase/Editor/Firebase.Messaging.Editor.pdb new file mode 100644 index 0000000..c9eb285 Binary files /dev/null and b/Assets/Firebase/Editor/Firebase.Messaging.Editor.pdb differ diff --git a/Assets/Firebase/Editor/Firebase.Messaging.Editor.pdb.meta b/Assets/Firebase/Editor/Firebase.Messaging.Editor.pdb.meta new file mode 100644 index 0000000..d306767 --- /dev/null +++ b/Assets/Firebase/Editor/Firebase.Messaging.Editor.pdb.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: dfa822a1009f4d90972aac668718aaaa +labels: +- gvh +- gvh_rename_to_disable +- gvh_targets-editor +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/Firebase.Messaging.Editor.pdb +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/FirebaseAnalytics_version-12.8.0_manifest.txt b/Assets/Firebase/Editor/FirebaseAnalytics_version-12.8.0_manifest.txt new file mode 100644 index 0000000..671057b --- /dev/null +++ b/Assets/Firebase/Editor/FirebaseAnalytics_version-12.8.0_manifest.txt @@ -0,0 +1,73 @@ +Assets/Editor Default Resources/Firebase/fb_analytics.png +Assets/Editor Default Resources/Firebase/fb_analytics_dark.png +Assets/Editor Default Resources/Firebase/fb_auth.png +Assets/Editor Default Resources/Firebase/fb_auth_dark.png +Assets/Editor Default Resources/Firebase/fb_cloud_messaging.png +Assets/Editor Default Resources/Firebase/fb_cloud_messaging_dark.png +Assets/Editor Default Resources/Firebase/fb_config.png +Assets/Editor Default Resources/Firebase/fb_config_dark.png +Assets/Editor Default Resources/Firebase/fb_crashlytics.png +Assets/Editor Default Resources/Firebase/fb_crashlytics_dark.png +Assets/Editor Default Resources/Firebase/fb_database.png +Assets/Editor Default Resources/Firebase/fb_database_dark.png +Assets/Editor Default Resources/Firebase/fb_dynamic_links.png +Assets/Editor Default Resources/Firebase/fb_dynamic_links_dark.png +Assets/Editor Default Resources/Firebase/fb_functions.png +Assets/Editor Default Resources/Firebase/fb_functions_dark.png +Assets/Editor Default Resources/Firebase/fb_invites.png +Assets/Editor Default Resources/Firebase/fb_invites_dark.png +Assets/Editor Default Resources/Firebase/fb_storage.png +Assets/Editor Default Resources/Firebase/fb_storage_dark.png +Assets/Editor Default Resources/Firebase/firebase_lockup.png +Assets/Editor Default Resources/Firebase/firebase_lockup_dark.png +Assets/ExternalDependencyManager/Editor/1.2.185/Google.IOSResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.185/Google.IOSResolver.pdb +Assets/ExternalDependencyManager/Editor/1.2.185/Google.JarResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.185/Google.JarResolver.pdb +Assets/ExternalDependencyManager/Editor/1.2.185/Google.PackageManagerResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.185/Google.PackageManagerResolver.pdb +Assets/ExternalDependencyManager/Editor/1.2.185/Google.VersionHandlerImpl.dll +Assets/ExternalDependencyManager/Editor/1.2.185/Google.VersionHandlerImpl.pdb +Assets/ExternalDependencyManager/Editor/CHANGELOG.md +Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll +Assets/ExternalDependencyManager/Editor/Google.VersionHandler.pdb +Assets/ExternalDependencyManager/Editor/LICENSE +Assets/ExternalDependencyManager/Editor/README.md +Assets/ExternalDependencyManager/Editor/external-dependency-manager_version-1.2.185_manifest.txt +Assets/Firebase/Editor/AnalyticsDependencies.xml +Assets/Firebase/Editor/AppDependencies.xml +Assets/Firebase/Editor/Firebase.Editor.dll +Assets/Firebase/Editor/Firebase.Editor.pdb +Assets/Firebase/Editor/generate_xml_from_google_services_json.exe +Assets/Firebase/Editor/generate_xml_from_google_services_json.py +Assets/Firebase/Editor/network_request.exe +Assets/Firebase/Editor/network_request.py +Assets/Firebase/Plugins/Firebase.Analytics.dll +Assets/Firebase/Plugins/Firebase.Analytics.pdb +Assets/Firebase/Plugins/Firebase.App.dll +Assets/Firebase/Plugins/Firebase.App.pdb +Assets/Firebase/Plugins/Firebase.Platform.dll +Assets/Firebase/Plugins/Firebase.Platform.pdb +Assets/Firebase/Plugins/Firebase.TaskExtension.dll +Assets/Firebase/Plugins/Firebase.TaskExtension.pdb +Assets/Firebase/Plugins/Google.MiniJson.dll +Assets/Firebase/Plugins/iOS/Firebase.Analytics.dll +Assets/Firebase/Plugins/iOS/Firebase.Analytics.pdb +Assets/Firebase/Plugins/iOS/Firebase.App.dll +Assets/Firebase/Plugins/iOS/Firebase.App.pdb +Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.bundle +Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.dll +Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.so +Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.bundle +Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.dll +Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.so +Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom +Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.srcaar +Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/maven-metadata.xml +Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom +Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.srcaar +Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/maven-metadata.xml +Assets/Plugins/iOS/Firebase/libFirebaseCppAnalytics.a +Assets/Plugins/iOS/Firebase/libFirebaseCppApp.a +Assets/Plugins/tvOS/Firebase/libFirebaseCppAnalytics.a +Assets/Plugins/tvOS/Firebase/libFirebaseCppApp.a diff --git a/Assets/Firebase/Editor/FirebaseAnalytics_version-12.8.0_manifest.txt.meta b/Assets/Firebase/Editor/FirebaseAnalytics_version-12.8.0_manifest.txt.meta new file mode 100644 index 0000000..49eada2 --- /dev/null +++ b/Assets/Firebase/Editor/FirebaseAnalytics_version-12.8.0_manifest.txt.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a4e8e6cc224a43209c603e3759695835 +labels: +- gvh +- gvh_manifest +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/FirebaseAnalytics_version-12.8.0_manifest.txt +- gvhp_manifestname-0Google Analytics +- gvhp_manifestname-1FirebaseAnalytics +timeCreated: 0 diff --git a/Assets/Firebase/Editor/FirebaseCrashlytics_version-12.8.0_manifest.txt b/Assets/Firebase/Editor/FirebaseCrashlytics_version-12.8.0_manifest.txt new file mode 100644 index 0000000..ee5198b --- /dev/null +++ b/Assets/Firebase/Editor/FirebaseCrashlytics_version-12.8.0_manifest.txt @@ -0,0 +1,72 @@ +Assets/Editor Default Resources/Firebase/fb_analytics.png +Assets/Editor Default Resources/Firebase/fb_analytics_dark.png +Assets/Editor Default Resources/Firebase/fb_auth.png +Assets/Editor Default Resources/Firebase/fb_auth_dark.png +Assets/Editor Default Resources/Firebase/fb_cloud_messaging.png +Assets/Editor Default Resources/Firebase/fb_cloud_messaging_dark.png +Assets/Editor Default Resources/Firebase/fb_config.png +Assets/Editor Default Resources/Firebase/fb_config_dark.png +Assets/Editor Default Resources/Firebase/fb_crashlytics.png +Assets/Editor Default Resources/Firebase/fb_crashlytics_dark.png +Assets/Editor Default Resources/Firebase/fb_database.png +Assets/Editor Default Resources/Firebase/fb_database_dark.png +Assets/Editor Default Resources/Firebase/fb_dynamic_links.png +Assets/Editor Default Resources/Firebase/fb_dynamic_links_dark.png +Assets/Editor Default Resources/Firebase/fb_functions.png +Assets/Editor Default Resources/Firebase/fb_functions_dark.png +Assets/Editor Default Resources/Firebase/fb_invites.png +Assets/Editor Default Resources/Firebase/fb_invites_dark.png +Assets/Editor Default Resources/Firebase/fb_storage.png +Assets/Editor Default Resources/Firebase/fb_storage_dark.png +Assets/Editor Default Resources/Firebase/firebase_lockup.png +Assets/Editor Default Resources/Firebase/firebase_lockup_dark.png +Assets/ExternalDependencyManager/Editor/1.2.185/Google.IOSResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.185/Google.IOSResolver.pdb +Assets/ExternalDependencyManager/Editor/1.2.185/Google.JarResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.185/Google.JarResolver.pdb +Assets/ExternalDependencyManager/Editor/1.2.185/Google.PackageManagerResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.185/Google.PackageManagerResolver.pdb +Assets/ExternalDependencyManager/Editor/1.2.185/Google.VersionHandlerImpl.dll +Assets/ExternalDependencyManager/Editor/1.2.185/Google.VersionHandlerImpl.pdb +Assets/ExternalDependencyManager/Editor/CHANGELOG.md +Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll +Assets/ExternalDependencyManager/Editor/Google.VersionHandler.pdb +Assets/ExternalDependencyManager/Editor/LICENSE +Assets/ExternalDependencyManager/Editor/README.md +Assets/ExternalDependencyManager/Editor/external-dependency-manager_version-1.2.185_manifest.txt +Assets/Firebase/Editor/AppDependencies.xml +Assets/Firebase/Editor/CrashlyticsDependencies.xml +Assets/Firebase/Editor/Firebase.Crashlytics.Editor.dll +Assets/Firebase/Editor/Firebase.Crashlytics.Editor.pdb +Assets/Firebase/Editor/Firebase.Editor.dll +Assets/Firebase/Editor/Firebase.Editor.pdb +Assets/Firebase/Editor/generate_xml_from_google_services_json.exe +Assets/Firebase/Editor/generate_xml_from_google_services_json.py +Assets/Firebase/Editor/network_request.exe +Assets/Firebase/Editor/network_request.py +Assets/Firebase/Plugins/Firebase.App.dll +Assets/Firebase/Plugins/Firebase.App.pdb +Assets/Firebase/Plugins/Firebase.Crashlytics.dll +Assets/Firebase/Plugins/Firebase.Crashlytics.pdb +Assets/Firebase/Plugins/Firebase.Platform.dll +Assets/Firebase/Plugins/Firebase.Platform.pdb +Assets/Firebase/Plugins/Firebase.TaskExtension.dll +Assets/Firebase/Plugins/Firebase.TaskExtension.pdb +Assets/Firebase/Plugins/Google.MiniJson.dll +Assets/Firebase/Plugins/iOS/Firebase.App.dll +Assets/Firebase/Plugins/iOS/Firebase.App.pdb +Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.dll +Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.pdb +Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.bundle +Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.dll +Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.so +Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom +Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.srcaar +Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/maven-metadata.xml +Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom +Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.srcaar +Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/maven-metadata.xml +Assets/Plugins/iOS/Firebase/libFirebaseCppApp.a +Assets/Plugins/iOS/Firebase/libFirebaseCppCrashlytics.a +Assets/Plugins/tvOS/Firebase/libFirebaseCppApp.a +Assets/Plugins/tvOS/Firebase/libFirebaseCppCrashlytics.a diff --git a/Assets/Firebase/Editor/FirebaseCrashlytics_version-12.8.0_manifest.txt.meta b/Assets/Firebase/Editor/FirebaseCrashlytics_version-12.8.0_manifest.txt.meta new file mode 100644 index 0000000..d491abe --- /dev/null +++ b/Assets/Firebase/Editor/FirebaseCrashlytics_version-12.8.0_manifest.txt.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f4491847e2c04c6584a04d9f49337afe +labels: +- gvh +- gvh_manifest +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/FirebaseCrashlytics_version-12.8.0_manifest.txt +- gvhp_manifestname-0Firebase Crashlytics +- gvhp_manifestname-1FirebaseCrashlytics +timeCreated: 0 diff --git a/Assets/Firebase/Editor/FirebaseMessaging_version-12.8.0_manifest.txt b/Assets/Firebase/Editor/FirebaseMessaging_version-12.8.0_manifest.txt new file mode 100644 index 0000000..a2f8a78 --- /dev/null +++ b/Assets/Firebase/Editor/FirebaseMessaging_version-12.8.0_manifest.txt @@ -0,0 +1,78 @@ +Assets/Editor Default Resources/Firebase/fb_analytics.png +Assets/Editor Default Resources/Firebase/fb_analytics_dark.png +Assets/Editor Default Resources/Firebase/fb_auth.png +Assets/Editor Default Resources/Firebase/fb_auth_dark.png +Assets/Editor Default Resources/Firebase/fb_cloud_messaging.png +Assets/Editor Default Resources/Firebase/fb_cloud_messaging_dark.png +Assets/Editor Default Resources/Firebase/fb_config.png +Assets/Editor Default Resources/Firebase/fb_config_dark.png +Assets/Editor Default Resources/Firebase/fb_crashlytics.png +Assets/Editor Default Resources/Firebase/fb_crashlytics_dark.png +Assets/Editor Default Resources/Firebase/fb_database.png +Assets/Editor Default Resources/Firebase/fb_database_dark.png +Assets/Editor Default Resources/Firebase/fb_dynamic_links.png +Assets/Editor Default Resources/Firebase/fb_dynamic_links_dark.png +Assets/Editor Default Resources/Firebase/fb_functions.png +Assets/Editor Default Resources/Firebase/fb_functions_dark.png +Assets/Editor Default Resources/Firebase/fb_invites.png +Assets/Editor Default Resources/Firebase/fb_invites_dark.png +Assets/Editor Default Resources/Firebase/fb_storage.png +Assets/Editor Default Resources/Firebase/fb_storage_dark.png +Assets/Editor Default Resources/Firebase/firebase_lockup.png +Assets/Editor Default Resources/Firebase/firebase_lockup_dark.png +Assets/ExternalDependencyManager/Editor/1.2.185/Google.IOSResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.185/Google.IOSResolver.pdb +Assets/ExternalDependencyManager/Editor/1.2.185/Google.JarResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.185/Google.JarResolver.pdb +Assets/ExternalDependencyManager/Editor/1.2.185/Google.PackageManagerResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.185/Google.PackageManagerResolver.pdb +Assets/ExternalDependencyManager/Editor/1.2.185/Google.VersionHandlerImpl.dll +Assets/ExternalDependencyManager/Editor/1.2.185/Google.VersionHandlerImpl.pdb +Assets/ExternalDependencyManager/Editor/CHANGELOG.md +Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll +Assets/ExternalDependencyManager/Editor/Google.VersionHandler.pdb +Assets/ExternalDependencyManager/Editor/LICENSE +Assets/ExternalDependencyManager/Editor/README.md +Assets/ExternalDependencyManager/Editor/external-dependency-manager_version-1.2.185_manifest.txt +Assets/Firebase/Editor/AppDependencies.xml +Assets/Firebase/Editor/Firebase.Editor.dll +Assets/Firebase/Editor/Firebase.Editor.pdb +Assets/Firebase/Editor/Firebase.Messaging.Editor.dll +Assets/Firebase/Editor/Firebase.Messaging.Editor.pdb +Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.asmdef +Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.cs +Assets/Firebase/Editor/MessagingDependencies.xml +Assets/Firebase/Editor/generate_xml_from_google_services_json.exe +Assets/Firebase/Editor/generate_xml_from_google_services_json.py +Assets/Firebase/Editor/network_request.exe +Assets/Firebase/Editor/network_request.py +Assets/Firebase/Plugins/Android/firebase-messaging-cpp.aar +Assets/Firebase/Plugins/Firebase.App.dll +Assets/Firebase/Plugins/Firebase.App.pdb +Assets/Firebase/Plugins/Firebase.Messaging.dll +Assets/Firebase/Plugins/Firebase.Messaging.pdb +Assets/Firebase/Plugins/Firebase.Platform.dll +Assets/Firebase/Plugins/Firebase.Platform.pdb +Assets/Firebase/Plugins/Firebase.TaskExtension.dll +Assets/Firebase/Plugins/Firebase.TaskExtension.pdb +Assets/Firebase/Plugins/Google.MiniJson.dll +Assets/Firebase/Plugins/iOS/Firebase.App.dll +Assets/Firebase/Plugins/iOS/Firebase.App.pdb +Assets/Firebase/Plugins/iOS/Firebase.Messaging.dll +Assets/Firebase/Plugins/iOS/Firebase.Messaging.pdb +Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.bundle +Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.dll +Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.so +Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.bundle +Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.dll +Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.so +Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom +Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.srcaar +Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/maven-metadata.xml +Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom +Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.srcaar +Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/maven-metadata.xml +Assets/Plugins/iOS/Firebase/libFirebaseCppApp.a +Assets/Plugins/iOS/Firebase/libFirebaseCppMessaging.a +Assets/Plugins/tvOS/Firebase/libFirebaseCppApp.a +Assets/Plugins/tvOS/Firebase/libFirebaseCppMessaging.a diff --git a/Assets/Firebase/Editor/FirebaseMessaging_version-12.8.0_manifest.txt.meta b/Assets/Firebase/Editor/FirebaseMessaging_version-12.8.0_manifest.txt.meta new file mode 100644 index 0000000..809625e --- /dev/null +++ b/Assets/Firebase/Editor/FirebaseMessaging_version-12.8.0_manifest.txt.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 523f177029b14503bb7d5806578a7c33 +labels: +- gvh +- gvh_manifest +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/FirebaseMessaging_version-12.8.0_manifest.txt +- gvhp_manifestname-0Firebase Cloud Messaging +- gvhp_manifestname-1FirebaseMessaging +timeCreated: 0 diff --git a/Assets/Firebase/Editor/Messaging.meta b/Assets/Firebase/Editor/Messaging.meta new file mode 100644 index 0000000..9557866 --- /dev/null +++ b/Assets/Firebase/Editor/Messaging.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 19ed14142d00f564d83c9e631862d46f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.asmdef b/Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.asmdef new file mode 100644 index 0000000..37fef88 --- /dev/null +++ b/Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.asmdef @@ -0,0 +1,16 @@ +{ + "name": "FirebaseMessagingActivityGenerator", + "rootNamespace": "", + "references": [], + "includePlatforms": [ + "Editor" + ], + "excludePlatforms": [], + "allowUnsafeCode": false, + "overrideReferences": false, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [], + "versionDefines": [], + "noEngineReferences": false +} diff --git a/Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.asmdef.meta b/Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.asmdef.meta new file mode 100644 index 0000000..132b92b --- /dev/null +++ b/Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.asmdef.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 23dad9d59a474cb6a052bb9322271ae3 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.asmdef +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.cs b/Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.cs new file mode 100644 index 0000000..133e3a1 --- /dev/null +++ b/Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.cs @@ -0,0 +1,198 @@ +/* + * Copyright 2023 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +using System.IO; +using System.Linq; +using UnityEngine; +using UnityEditor; +using UnityEditor.Build; +using UnityEditor.Build.Reporting; + +namespace Firebase.Messaging.Editor { + +// Handles the generation of the MessagingUnityPlayerActivity java file. +// Note this regenerates the file every time an Android build occurs, +// but local changes can be preserved by using the PreserveTag below. +// This is needed because the source code needs to be present to work across +// different Unity versions, due to changes in mUnityPlayer. +// It also adjusts the base class of the file based on if GameActivity is being +// used (a new feature in Unity 2023). +public class FirebaseMessagingActivityGenerator : IPreprocessBuildWithReport { + // TODO: Ideally this should use a template file, the tricky part is locating + // the template file when it is either in the Assets path, or the Packages path. + // There are some similar cases in EDM4U, so a solution might be to use that. + private readonly string[] ActivityClassContents = new string[]{ +"/*", +" * This file is generated by the FirebaseMessagingActivityGenerator script.", +" * Refer to that script for more information.", +" */", +"", +"package com.google.firebase;", +"", +"import android.content.Intent;", +"import android.os.Bundle;", +"import com.google.firebase.messaging.MessageForwardingService;", +"import com.unity3d.player.{0};", +"", +"/**", +" * MessagingUnityPlayerActivity is a {0} that updates its intent when new intents", +" * are sent to it.", +" *", +" * This is a workaround for a known issue that prevents Firebase Cloud Messaging from responding to", +" * data payloads when both a data and notification payload are sent to the app while it is in the", +" * background.", +" */", +"public class MessagingUnityPlayerActivity extends {0} {{", +" // The key in the intent's extras that maps to the incoming message's message ID. Only sent by", +" // the server, GmsCore sends EXTRA_MESSAGE_ID_KEY below. Server can't send that as it would get", +" // stripped by the client.", +" private static final String EXTRA_MESSAGE_ID_KEY_SERVER = \"message_id\";", +"", +" // An alternate key value in the intent's extras that also maps to the incoming message's message", +" // ID. Used by upstream, and set by GmsCore.", +" private static final String EXTRA_MESSAGE_ID_KEY = \"google.message_id\";", +"", +" // The key in the intent's extras that maps to the incoming message's sender value.", +" private static final String EXTRA_FROM = \"google.message_id\";", +"", +" /**", +" * Workaround for when a message is sent containing both a Data and Notification payload.", +" *", +" *

When the app is in the background, if a message with both a data and notification payload is", +" * received the data payload is stored on the Intent passed to onNewIntent. By default, that", +" * intent does not get set as the Intent that started the app, so when the app comes back online", +" * it doesn't see a new FCM message to respond to. As a workaround, we override onNewIntent so", +" * that it sends the intent to the MessageForwardingService which forwards the message to the", +" * FirebaseMessagingService which in turn sends the message to the application.", +" */", +" @Override", +" protected void onNewIntent(Intent intent) {{", +" super.onNewIntent(intent);", +"", +" // If we do not have a 'from' field this intent was not a message and should not be handled. It", +" // probably means this intent was fired by tapping on the app icon.", +" Bundle extras = intent.getExtras();", +" if (extras == null) {{", +" return;", +" }}", +" String from = extras.getString(EXTRA_FROM);", +" String messageId = extras.getString(EXTRA_MESSAGE_ID_KEY);", +" if (messageId == null) {{", +" messageId = extras.getString(EXTRA_MESSAGE_ID_KEY_SERVER);", +" }}", +" if (from != null && messageId != null) {{", +" Intent message = new Intent(this, MessageForwardingService.class);", +" message.setAction(MessageForwardingService.ACTION_REMOTE_INTENT);", +" message.putExtras(intent);", +" message.setData(intent.getData());", +" MessageForwardingService.enqueueWork(this, message);", +" }}", +" setIntent(intent);", +" }}", +"", +" /**", +" * Dispose of the mUnityPlayer when restarting the app.", +" *", +" *

This ensures that when the app starts up again it does not start with stale data.", +" */", +" @Override", +" protected void onCreate(Bundle savedInstanceState) {{", +" if (mUnityPlayer != null) {{", +" mUnityPlayer.{1}();", +" mUnityPlayer = null;", +" }}", +" super.onCreate(savedInstanceState);", +" }}", +"}}" + }; + private readonly string BaseActivityClass = "UnityPlayerActivity"; +#if UNITY_2023_1_OR_NEWER + private readonly string BaseGameActivityClass = "UnityPlayerGameActivity"; +#endif + +#if UNITY_2023_1_OR_NEWER + private readonly string UnityPlayerQuitFunction = "destroy"; +#else + private readonly string UnityPlayerQuitFunction = "quit"; +#endif + + private readonly string GeneratedFileTag = "FirebaseMessagingActivityGenerated"; + // If this tag is present on the generated file, it will not be replaced. + private readonly string PreserveTag = "FirebasePreserve"; + + private readonly string OutputPath = Path.Combine("Plugins", "Android"); + private readonly string OutputFilename = "MessagingUnityPlayerActivity.java"; + + public int callbackOrder { get { return 0; } } + public void OnPreprocessBuild(BuildReport report) { + // Only run this logic when building for Android. + if (EditorUserBuildSettings.activeBuildTarget != BuildTarget.Android) { + return; + } + + // Determine what the contents of the generated file should be. + string baseClass = BaseActivityClass; +#if UNITY_2023_1_OR_NEWER + // If using the new GameActivity logic, we want to generate with that base class. + if (PlayerSettings.Android.applicationEntry.HasFlag(AndroidApplicationEntry.GameActivity)) { + baseClass = BaseGameActivityClass; + } +#endif + string fileContents = System.String.Format(System.String.Join("\n", ActivityClassContents), + baseClass, UnityPlayerQuitFunction); + + // Check if the file has already been generated. + string[] oldAssetGuids = AssetDatabase.FindAssets("l:" + GeneratedFileTag); + if (oldAssetGuids != null && oldAssetGuids.Length > 0) { + if (oldAssetGuids.Length != 1) { + Debug.LogWarning("FirebaseMessagingActivityEditor found multiple generated files with the label: " + + GeneratedFileTag + " \n" + + "No changes will be made, but this can potentially cause problems on Android with duplicate classes.\n" + + "Please check for duplicate classes, and remove any unnecessary uses of the label."); + return; + } + string oldAssetPath = AssetDatabase.GUIDToAssetPath(oldAssetGuids[0]); + Object oldAsset = AssetDatabase.LoadMainAssetAtPath(oldAssetPath); + if (oldAsset != null) { + string oldAssetFullPath = Path.Combine(Application.dataPath, "..", oldAssetPath); + string oldFileContents = System.IO.File.ReadAllText(oldAssetFullPath); + // If the old file matches what we would generate, exit early. + if (oldFileContents == fileContents) { + return; + } + // If the generated file has been tagged to be preserved, don't change it. + string[] labelList = AssetDatabase.GetLabels(oldAsset); + if (labelList.Contains(PreserveTag)) { + return; + } + // Delete the old asset. + Debug.Log("Changes detected, regenerating " + oldAssetPath + "\n" + + "To preserve local changes to that file, add the label: " + PreserveTag); + AssetDatabase.DeleteAsset(oldAssetPath); + } + } + + // Generate the new file. + string newAssetFullDirectory = Path.Combine(Application.dataPath, OutputPath); + System.IO.Directory.CreateDirectory(newAssetFullDirectory); + System.IO.File.WriteAllText(Path.Combine(newAssetFullDirectory, OutputFilename), fileContents); + string newAssetLocalPath = Path.Combine("Assets", OutputPath, OutputFilename); + AssetDatabase.ImportAsset(newAssetLocalPath); + Object newAsset = AssetDatabase.LoadMainAssetAtPath(newAssetLocalPath); + AssetDatabase.SetLabels(newAsset, new[]{GeneratedFileTag}); + } +} + +} // namespace Firebase.Messaging.Editor diff --git a/Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.cs.meta b/Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.cs.meta new file mode 100644 index 0000000..37fab22 --- /dev/null +++ b/Assets/Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 38cf8316372e4943aee735c624262e05 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/Messaging/FirebaseMessagingActivityGenerator.cs +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/MessagingDependencies.xml b/Assets/Firebase/Editor/MessagingDependencies.xml new file mode 100644 index 0000000..418788a --- /dev/null +++ b/Assets/Firebase/Editor/MessagingDependencies.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + Assets/Firebase/m2repository + + + + diff --git a/Assets/Firebase/Editor/MessagingDependencies.xml.meta b/Assets/Firebase/Editor/MessagingDependencies.xml.meta new file mode 100644 index 0000000..5e893fb --- /dev/null +++ b/Assets/Firebase/Editor/MessagingDependencies.xml.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 992fedef98ac42209a9d26d5bf364adf +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/MessagingDependencies.xml +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/generate_xml_from_google_services_json.exe b/Assets/Firebase/Editor/generate_xml_from_google_services_json.exe new file mode 100644 index 0000000..2d31b04 Binary files /dev/null and b/Assets/Firebase/Editor/generate_xml_from_google_services_json.exe differ diff --git a/Assets/Firebase/Editor/generate_xml_from_google_services_json.exe.meta b/Assets/Firebase/Editor/generate_xml_from_google_services_json.exe.meta new file mode 100644 index 0000000..4a3249c --- /dev/null +++ b/Assets/Firebase/Editor/generate_xml_from_google_services_json.exe.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ae88c0972b7448b5b36def1716f1d711 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/generate_xml_from_google_services_json.exe +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/generate_xml_from_google_services_json.py b/Assets/Firebase/Editor/generate_xml_from_google_services_json.py new file mode 100644 index 0000000..789dceb --- /dev/null +++ b/Assets/Firebase/Editor/generate_xml_from_google_services_json.py @@ -0,0 +1,498 @@ +#!/usr/bin/python + +# Copyright 2016 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""Stand-alone implementation of the Gradle Firebase plugin. + +Converts the services json file to xml: +https://googleplex-android.googlesource.com/platform/tools/base/+/studio-master-dev/build-system/google-services/src/main/groovy/com/google/gms/googleservices +""" + +__author__ = 'Wouter van Oortmerssen' + +import argparse +import ctypes +import json +import os +import platform +import sys +from xml.etree import ElementTree + +if platform.system().lower() == 'windows': + import ctypes.wintypes # pylint: disable=g-import-not-at-top + +# Map Python 2's unicode method to encode a string as bytes in python 3. +try: + unicode('') # See whether unicode class is available (Python < 3) +except NameError: + unicode = str # pylint: disable=redefined-builtin,invalid-name + +# Input filename if it isn't set. +DEFAULT_INPUT_FILENAME = 'app/google-services.json' +# Output filename if it isn't set. +DEFAULT_OUTPUT_FILENAME = 'res/values/googleservices.xml' +# Input filename for .plist files, if it isn't set. +DEFAULT_PLIST_INPUT_FILENAME = 'GoogleService-Info.plist' +# Output filename for .json files, if it isn't set. +DEFAULT_JSON_OUTPUT_FILENAME = 'google-services-desktop.json' + +OAUTH_CLIENT_TYPE_ANDROID_APP = 1 +OAUTH_CLIENT_TYPE_WEB = 3 + + +def read_xml_value(xml_node): + """Utility method for reading values from the plist XML. + + Args: + xml_node: An ElementTree node, that contains a value. + + Returns: + The value of the node, or None, if it could not be read. + """ + if xml_node.tag == 'string': + return xml_node.text + elif xml_node.tag == 'integer': + return int(xml_node.text) + elif xml_node.tag == 'real': + return float(xml_node.text) + elif xml_node.tag == 'false': + return 0 + elif xml_node.tag == 'true': + return 1 + else: + # other types of input are ignored. (data, dates, arrays, etc.) + return None + + +def construct_plist_dictionary(xml_root): + """Constructs a dictionary of values based on the contents of a plist file. + + Args: + xml_root: An ElementTree node, that represents the root of the xml file + that is to be parsed. (Which should be a dictionary containing + key-value pairs of the properties that need to be extracted.) + + Returns: + A dictionary, containing key-value pairs for all (supported) entries in the + node. + """ + xml_dict = xml_root.find('dict') + + if xml_dict is None: + return None + + plist_dict = {} + i = 0 + while i < len(xml_dict): + if xml_dict[i].tag == 'key': + key = xml_dict[i].text + i += 1 + if i < len(xml_dict): + value = read_xml_value(xml_dict[i]) + if value is not None: + plist_dict[key] = value + i += 1 + + return plist_dict + + +def update_dict_keys(key_map, input_dict): + """Creates a dict from input_dict with the same values but new keys. + + Two dictionaries are passed to this function: the key_map that represents a + mapping of source keys to destination keys, and the input_dict that is the + dictionary that is to be duplicated, replacing any key that matches a source + key with a destination key. Source keys that are not present in the + input_dict will not have their destination key represented in the result. + + In other words, if key_map is `{'old': 'new', 'foo': 'bar'}`, and input_dict + is `{'old': 10}`, the result will be `{'new': 10}`. + + Args: + key_map (dict): A dictionary of strings to strings that maps source keys to + destination keys. + input_dict (dict): The dictionary of string keys to any value type, which + is to be duplicated, replacing source keys with the corresponding + destination keys from key_map. + + Returns: + dict: A new dictionary with updated keys. + """ + return { + new_key: input_dict[old_key] + for (old_key, new_key) in key_map.items() + if old_key in input_dict + } + + +def construct_google_services_json(xml_dict): + """Constructs a google services json file from a dictionary. + + Args: + xml_dict: A dictionary of all the key/value pairs that are needed for the + output json file. + Returns: + A string representing the output json file. + """ + + try: + json_struct = { + 'project_info': + update_dict_keys( + { + 'GCM_SENDER_ID': 'project_number', + 'DATABASE_URL': 'firebase_url', + 'PROJECT_ID': 'project_id', + 'STORAGE_BUCKET': 'storage_bucket' + }, xml_dict), + 'client': [{ + 'client_info': { + 'mobilesdk_app_id': xml_dict['GOOGLE_APP_ID'], + 'android_client_info': { + 'package_name': xml_dict['BUNDLE_ID'] + } + }, + 'api_key': [{ + 'current_key': xml_dict['API_KEY'] + }], + 'services': { + 'analytics_service': { + 'status': xml_dict['IS_ANALYTICS_ENABLED'] + }, + 'appinvite_service': { + 'status': xml_dict['IS_APPINVITE_ENABLED'] + } + } + },], + 'configuration_version': + '1' + } + # OAuth client is optional, but include it if present. + if 'CLIENT_ID' in xml_dict: + json_struct['client'][0]['oauth_client'] = [{ + 'client_id': xml_dict['CLIENT_ID'], + }] + return json.dumps(json_struct, indent=2) + except KeyError as e: + sys.stderr.write('Could not find key in plist file: [%s]\n' % (e.args[0])) + return None + + +def convert_plist_to_json(plist_string, input_filename): + """Converts an input plist string into a .json file and saves it. + + Args: + plist_string: The contents of the loaded plist file. + + input_filename: The file name that the plist data was read from. + Returns: + the converted string, or None if there were errors. + """ + + try: + root = ElementTree.fromstring(plist_string) + except ElementTree.ParseError: + sys.stderr.write('Error parsing file %s.\n' + 'It does not appear to be valid XML.\n' % (input_filename)) + return None + + plist_dict = construct_plist_dictionary(root) + if plist_dict is None: + sys.stderr.write('In file %s, could not locate a top-level \'dict\' ' + 'element.\n' + 'File format should be plist XML, with a top-level ' + 'dictionary containing project settings as key-value ' + 'pairs.\n' % (input_filename)) + return None + + json_string = construct_google_services_json(plist_dict) + return json_string + + +def gen_string(parent, name, text): + """Generate one element and put into the list of keeps. + + Args: + parent: The object that will hold the string. + name: The name to store the string under. + text: The text of the string. + """ + if text: + prev = parent.get('tools:keep', '') + if prev: + prev += ',' + parent.set('tools:keep', prev + '@string/' + name) + child = ElementTree.SubElement(parent, 'string', { + 'name': name, + 'translatable': 'false' + }) + child.text = text + + +def indent(elem, level=0): + """Recurse through XML tree and add indentation. + + Args: + elem: The element to recurse over + level: The current indentation level. + """ + i = '\n' + level*' ' + if elem is not None: + if not elem.text or not elem.text.strip(): + elem.text = i + ' ' + if not elem.tail or not elem.tail.strip(): + elem.tail = i + for elem in elem: + indent(elem, level+1) + if not elem.tail or not elem.tail.strip(): + elem.tail = i + else: + if level and (not elem.tail or not elem.tail.strip()): + elem.tail = i + + +def argv_as_unicode_win32(): + """Returns unicode command line arguments on windows. + """ + + get_command_line_w = ctypes.cdll.kernel32.GetCommandLineW + get_command_line_w.restype = ctypes.wintypes.LPCWSTR + + # CommandLineToArgvW parses the Unicode command line + command_line_to_argv_w = ctypes.windll.shell32.CommandLineToArgvW + command_line_to_argv_w.argtypes = [ + ctypes.wintypes.LPCWSTR, + ctypes.POINTER(ctypes.c_int) + ] + command_line_to_argv_w.restype = ctypes.POINTER( + ctypes.wintypes.LPWSTR) + + argc = ctypes.c_int(0) + argv = command_line_to_argv_w(get_command_line_w(), argc) + + # Strip the python executable from the arguments if it exists + # (It would be listed as the first argument on the windows command line, but + # not in the arguments to the python script) + sys_argv_len = len(sys.argv) + return [unicode(argv[i]) for i in + range(argc.value - sys_argv_len, argc.value)] + + +def main(): + parser = argparse.ArgumentParser( + description=(( + 'Converts a Firebase %s into %s similar to the Gradle plugin, or ' + 'converts a Firebase %s into a %s suitible for use on desktop apps.' % + (DEFAULT_INPUT_FILENAME, DEFAULT_OUTPUT_FILENAME, + DEFAULT_PLIST_INPUT_FILENAME, DEFAULT_JSON_OUTPUT_FILENAME)))) + parser.add_argument('-i', help='Override input file name', + metavar='FILE', required=False) + parser.add_argument('-o', help='Override destination file name', + metavar='FILE', required=False) + parser.add_argument('-p', help=('Package ID to select within the set of ' + 'packages in the input file. If this is ' + 'not specified, the first package in the ' + 'input file is selected.')) + parser.add_argument('-l', help=('List all package IDs referenced by the ' + 'input file. If this is specified, ' + 'the output file is not created.'), + action='store_true', default=False, required=False) + parser.add_argument('-f', help=('Print project fields from the input file ' + 'in the form \'name=value\\n\' for each ' + 'field. If this is specified, the output ' + 'is not created.'), + action='store_true', default=False, required=False) + parser.add_argument( + '--plist', + help=( + 'Specifies a plist file to convert to a JSON configuration file. ' + 'If this is enabled, the script will expect a .plist file as input, ' + 'which it will convert into %s file. The output file is ' + '*not* suitable for use with Firebase on Android.' % + (DEFAULT_JSON_OUTPUT_FILENAME)), + action='store_true', + default=False, + required=False) + + # python 2 on Windows doesn't handle unicode arguments well, so we need to + # pre-process the command line arguments before trying to parse them. + if platform.system() == 'Windows': + sys.argv = argv_as_unicode_win32() + + args = parser.parse_args() + + if args.plist: + input_filename = DEFAULT_PLIST_INPUT_FILENAME + output_filename = DEFAULT_JSON_OUTPUT_FILENAME + else: + input_filename = DEFAULT_INPUT_FILENAME + output_filename = DEFAULT_OUTPUT_FILENAME + + if args.i: + # Encode the input string (type unicode) as a normal string (type str) + # using the 'utf-8' encoding so that it can be worked with the same as + # input names from other sources (like the defaults). + input_filename_raw = args.i.encode('utf-8') + # Decode the filename to a unicode string using the 'utf-8' encoding to + # properly handle filepaths with unicode characters in them. + input_filename = input_filename_raw.decode('utf-8') + + if args.o: + output_filename = args.o + + with open(input_filename, 'r') as ifile: + file_string = ifile.read() + + json_string = None + if args.plist: + json_string = convert_plist_to_json(file_string, input_filename) + if json_string is None: + return 1 + jsobj = json.loads(json_string) + else: + jsobj = json.loads(file_string) + + root = ElementTree.Element('resources') + root.set('xmlns:tools', 'http://schemas.android.com/tools') + + project_info = jsobj.get('project_info') + if project_info: + gen_string(root, 'firebase_database_url', project_info.get('firebase_url')) + gen_string(root, 'gcm_defaultSenderId', project_info.get('project_number')) + gen_string(root, 'google_storage_bucket', + project_info.get('storage_bucket')) + gen_string(root, 'project_id', project_info.get('project_id')) + + if args.f: + if not project_info: + sys.stderr.write('No project info found in %s.' % input_filename) + return 1 + for field, value in sorted(project_info.items()): + sys.stdout.write('%s=%s\n' % (field, value)) + return 0 + + packages = set() + client_list = jsobj.get('client') + if client_list: + # Search for the user specified package in the file. + selected_package_name = '' + selected_client = client_list[0] + find_package_name = args.p + for client in client_list: + package_name = client.get('client_info', {}).get( + 'android_client_info', {}).get('package_name', '') + if not package_name: + package_name = client.get('oauth_client', {}).get( + 'android_info', {}).get('package_name', '') + if package_name: + if not selected_package_name: + selected_package_name = package_name + selected_client = client + if package_name == find_package_name: + selected_package_name = package_name + selected_client = client + packages.add(package_name) + + if args.p and selected_package_name != find_package_name: + sys.stderr.write('No packages found in %s which match the package ' + 'name %s\n' + '\n' + 'Found the following:\n' + '%s\n' % (input_filename, find_package_name, + '\n'.join(packages))) + return 1 + + client_api_key = selected_client.get('api_key') + if client_api_key: + client_api_key0 = client_api_key[0] + gen_string(root, 'google_api_key', client_api_key0.get('current_key')) + gen_string(root, 'google_crash_reporting_api_key', + client_api_key0.get('current_key')) + + client_info = selected_client.get('client_info') + if client_info: + gen_string(root, 'google_app_id', client_info.get('mobilesdk_app_id')) + + # Only include the first matching OAuth client ID per type. + client_id_web_parsed = False + client_id_android_parsed = False + + oauth_client_list = selected_client.get('oauth_client') + if oauth_client_list: + for oauth_client in oauth_client_list: + client_type = oauth_client.get('client_type') + client_id = oauth_client.get('client_id') + if not (client_type and client_id): continue + if (client_type == OAUTH_CLIENT_TYPE_WEB and + not client_id_web_parsed): + gen_string(root, 'default_web_client_id', client_id) + client_id_web_parsed = True + if (client_type == OAUTH_CLIENT_TYPE_ANDROID_APP and + not client_id_android_parsed): + gen_string(root, 'default_android_client_id', client_id) + client_id_android_parsed = True + + services = selected_client.get('services') + if services: + ads_service = services.get('ads_service') + if ads_service: + gen_string(root, 'test_banner_ad_unit_id', + ads_service.get('test_banner_ad_unit_id')) + gen_string(root, 'test_interstitial_ad_unit_id', + ads_service.get('test_interstitial_ad_unit_id')) + analytics_service = services.get('analytics_service') + if analytics_service: + analytics_property = analytics_service.get('analytics_property') + if analytics_property: + gen_string(root, 'ga_trackingId', + analytics_property.get('tracking_id')) + # enable this once we have an example if this service being present + # in the json data: + maps_service_enabled = False + if maps_service_enabled: + maps_service = services.get('maps_service') + if maps_service: + maps_api_key = maps_service.get('api_key') + if maps_api_key: + for k in range(0, len(maps_api_key)): + # generates potentially multiple of these keys, which is + # the same behavior as the java plugin. + gen_string(root, 'google_maps_key', + maps_api_key[k].get('maps_api_key')) + + tree = ElementTree.ElementTree(root) + + indent(root) + + if args.l: + for package in sorted(packages): + if package: + sys.stdout.write(package + '\n') + else: + path = os.path.dirname(output_filename) + + if path and not os.path.exists(path): + os.makedirs(path) + + if not args.plist: + tree.write(output_filename, 'utf-8', True) + else: + with open(output_filename, 'w') as ofile: + ofile.write(json_string) + + return 0 + +if __name__ == '__main__': + sys.exit(main()) diff --git a/Assets/Firebase/Editor/generate_xml_from_google_services_json.py.meta b/Assets/Firebase/Editor/generate_xml_from_google_services_json.py.meta new file mode 100644 index 0000000..4af4016 --- /dev/null +++ b/Assets/Firebase/Editor/generate_xml_from_google_services_json.py.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 8f18ed76c0f04ce0a65736104f913ef8 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/generate_xml_from_google_services_json.py +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/network_request.exe b/Assets/Firebase/Editor/network_request.exe new file mode 100644 index 0000000..30f5e8e Binary files /dev/null and b/Assets/Firebase/Editor/network_request.exe differ diff --git a/Assets/Firebase/Editor/network_request.exe.meta b/Assets/Firebase/Editor/network_request.exe.meta new file mode 100644 index 0000000..5d1fb54 --- /dev/null +++ b/Assets/Firebase/Editor/network_request.exe.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d3cd5d0a941c4cdc8ab4b1b684b05191 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/network_request.exe +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Editor/network_request.py b/Assets/Firebase/Editor/network_request.py new file mode 100644 index 0000000..04f055f --- /dev/null +++ b/Assets/Firebase/Editor/network_request.py @@ -0,0 +1,416 @@ +# Copyright 2019 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +"""Wrapper script which makes a network request. + +Basic Usage: network_request.py post + --url + --header

(optional, support multiple) + --body (optional) + --timeout (optional) + --verbose (optional) +""" + +import argparse +import inspect +import logging +import socket +import sys + +# pylint: disable=g-import-not-at-top +# pylint: disable=g-importing-member +try: + from six.moves.http_client import HTTPSConnection + from six.moves.http_client import HTTPConnection + from six.moves.http_client import HTTPException +except ImportError: + from http.client import HTTPSConnection + from http.client import HTTPConnection + from http.client import HTTPException + +try: + from six.moves.urllib.parse import urlparse +except ImportError: + from urllib.parse import urlparse +# pylint: enable=g-import-not-at-top +# pylint: enable=g-importing-member + +# Set up logger as soon as possible +formatter = logging.Formatter('[%(levelname)s] %(message)s') + +handler = logging.StreamHandler(stream=sys.stdout) +handler.setFormatter(formatter) +handler.setLevel(logging.INFO) + +logger = logging.getLogger(__name__) +logger.addHandler(handler) +logger.setLevel(logging.INFO) + +# Custom exit codes for known issues. +# System exit codes in python are valid from 0 - 256, so we will map some common +# ones here to understand successes and failures. +# Uses lower ints to not collide w/ HTTP status codes that the script may return +EXIT_CODE_SUCCESS = 0 +EXIT_CODE_SYS_ERROR = 1 +EXIT_CODE_INVALID_REQUEST_VALUES = 2 +EXIT_CODE_GENERIC_HTTPLIB_ERROR = 3 +EXIT_CODE_HTTP_TIMEOUT = 4 +EXIT_CODE_HTTP_REDIRECT_ERROR = 5 +EXIT_CODE_HTTP_NOT_FOUND_ERROR = 6 +EXIT_CODE_HTTP_SERVER_ERROR = 7 +EXIT_CODE_HTTP_UNKNOWN_ERROR = 8 + +MAX_EXIT_CODE = 8 + +# All used http verbs +POST = 'POST' + + +def unwrap_kwarg_namespace(func): + """Transform a Namespace object from argparse into proper args and kwargs. + + For a function that will be delegated to from argparse, inspect all of the + argments and extract them from the Namespace object. + + Args: + func: the function that we are wrapping to modify behavior + + Returns: + a new function that unwraps all of the arguments in a namespace and then + delegates to the passed function with those args. + """ + # When we move to python 3, getfullargspec so that we can tell the + # difference between args and kwargs -- then this could be used for functions + # that have both args and kwargs + if 'getfullargspec' in dir(inspect): + argspec = inspect.getfullargspec(func) + else: + argspec = inspect.getargspec(func) # Python 2 compatibility. + + def wrapped(argparse_namespace=None, **kwargs): + """Take a Namespace object and map it to kwargs. + + Inspect the argspec of the passed function. Loop over all the args that + are present in the function and try to map them by name to arguments in the + namespace. For keyword arguments, we do not require that they be present + in the Namespace. + + Args: + argparse_namespace: an arparse.Namespace object, the result of calling + argparse.ArgumentParser().parse_args() + **kwargs: keyword arguments that may be passed to the original function + Returns: + The return of the wrapped function from the parent. + + Raises: + ValueError in the event that an argument is passed to the cli that is not + in the set of named kwargs + """ + if not argparse_namespace: + return func(**kwargs) + + reserved_namespace_keywords = ['func'] + new_kwargs = {} + + args = argspec.args or [] + for arg_name in args: + passed_value = getattr(argparse_namespace, arg_name, None) + if passed_value is not None: + new_kwargs[arg_name] = passed_value + + for namespace_key in vars(argparse_namespace).keys(): + # ignore namespace keywords that have been set not passed in via cli + if namespace_key in reserved_namespace_keywords: + continue + + # make sure that we haven't passed something we should be processing + if namespace_key not in args: + raise ValueError('CLI argument "{}" does not match any argument in ' + 'function {}'.format(namespace_key, func.__name__)) + + return func(**new_kwargs) + + wrapped.__name__ = func.__name__ + return wrapped + + +class NetworkRequest(object): + """A container for an network request object. + + This class holds on to all of the attributes necessary for making a + network request via httplib. + """ + + def __init__(self, url, method, headers, body, timeout): + self.url = url.lower() + self.parsed_url = urlparse(self.url) + self.method = method + self.headers = headers + self.body = body + self.timeout = timeout + self.is_secure_connection = self.is_secure_connection() + + def execute_request(self): + """"Execute the request, and get a response. + + Returns: + an HttpResponse object from httplib + """ + if self.is_secure_connection: + conn = HTTPSConnection(self.get_hostname(), timeout=self.timeout) + else: + conn = HTTPConnection(self.get_hostname(), timeout=self.timeout) + + conn.request(self.method, self.url, self.body, self.headers) + response = conn.getresponse() + return response + + def get_hostname(self): + """Return the hostname for the url.""" + return self.parsed_url.netloc + + def is_secure_connection(self): + """Checks for a secure connection of https. + + Returns: + True if the scheme is "https"; False if "http" + + Raises: + ValueError when the scheme does not match http or https + """ + scheme = self.parsed_url.scheme + + if scheme == 'http': + return False + elif scheme == 'https': + return True + else: + raise ValueError('The url scheme is not "http" nor "https"' + ': {}'.format(scheme)) + + +def parse_colon_delimited_options(option_args): + """Parses a key value from a string. + + Args: + option_args: Key value string delimited by a color, ex: ("key:value") + + Returns: + Return an array with the key as the first element and value as the second + + Raises: + ValueError: If the key value option is not formatted correctly + """ + options = {} + + if not option_args: + return options + + for single_arg in option_args: + values = single_arg.split(':') + if len(values) != 2: + raise ValueError('An option arg must be a single key/value pair ' + 'delimited by a colon - ex: "thing_key:thing_value"') + + key = values[0].strip() + value = values[1].strip() + options[key] = value + + return options + + +def make_request(request): + """Makes a synchronous network request and return the HTTP status code. + + Args: + request: a well formulated request object + + Returns: + The HTTP status code of the network request. + '1' maps to invalid request headers. + """ + + logger.info('Sending network request -') + logger.info('\tUrl: %s', request.url) + logger.debug('\tMethod: %s', request.method) + logger.debug('\tHeaders: %s', request.headers) + logger.debug('\tBody: %s', request.body) + + try: + response = request.execute_request() + except socket.timeout: + logger.exception( + 'Timed out post request to %s in %d seconds for request body: %s', + request.url, request.timeout, request.body) + return EXIT_CODE_HTTP_TIMEOUT + except (HTTPException, socket.error): + logger.exception( + 'Encountered generic exception in posting to %s with request body %s', + request.url, request.body) + return EXIT_CODE_GENERIC_HTTPLIB_ERROR + + status = response.status + headers = response.getheaders() + logger.info('Received Network response -') + logger.info('\tStatus code: %d', status) + logger.debug('\tResponse headers: %s', headers) + + if status < 200 or status > 299: + logger.error('Request (%s) failed with status code %d\n', request.url, + status) + + # If we wanted this script to support get, we need to + # figure out what mechanism we intend for capturing the response + return status + + +@unwrap_kwarg_namespace +def post(url=None, header=None, body=None, timeout=5, verbose=False): + """Sends a post request. + + Args: + url: The url of the request + header: A list of headers for the request + body: The body for the request + timeout: Timeout in seconds for the request + verbose: Should debug logs be displayed + + Returns: + Return an array with the key as the first element and value as the second + """ + + if verbose: + handler.setLevel(logging.DEBUG) + logger.setLevel(logging.DEBUG) + + try: + logger.info('Parsing headers: %s', header) + headers = parse_colon_delimited_options(header) + except ValueError: + logging.exception('Could not parse the parameters with "--header": %s', + header) + return EXIT_CODE_INVALID_REQUEST_VALUES + + try: + request = NetworkRequest(url, POST, headers, body, float(timeout)) + except ValueError: + logger.exception('Invalid request values passed into the script.') + return EXIT_CODE_INVALID_REQUEST_VALUES + + status = make_request(request) + + # View exit code after running to get the http status code: 'echo $?' + return status + + +def get_argsparser(): + """Returns the argument parser. + + Returns: + Argument parser for the script. + """ + + parser = argparse.ArgumentParser( + description='The script takes in the arguments of a network request. ' + 'The network request is sent and the http status code will be' + 'returned as the exit code.') + subparsers = parser.add_subparsers(help='Commands:') + post_parser = subparsers.add_parser( + post.__name__, help='{} help'.format(post.__name__)) + post_parser.add_argument( + '--url', + help='Request url. Ex: https://www.google.com/somePath/', + required=True, + dest='url') + post_parser.add_argument( + '--header', + help='Request headers as a space delimited list of key ' + 'value pairs. Ex: "key1:value1 key2:value2"', + action='append', + required=False, + dest='header') + post_parser.add_argument( + '--body', + help='The body of the network request', + required=True, + dest='body') + post_parser.add_argument( + '--timeout', + help='The timeout in seconds', + default=10.0, + required=False, + dest='timeout') + post_parser.add_argument( + '--verbose', + help='Should verbose logging be outputted', + action='store_true', + default=False, + required=False, + dest='verbose') + post_parser.set_defaults(func=post) + return parser + + +def map_http_status_to_exit_code(status_code): + """Map an http status code to the appropriate exit code. + + Exit codes in python are valid from 0-256, so we want to map these to + predictable exit codes within range. + + Args: + status_code: the input status code that was output from the network call + function + + Returns: + One of our valid exit codes declared at the top of the file or a generic + unknown error code + """ + if status_code <= MAX_EXIT_CODE: + return status_code + + if status_code > 199 and status_code < 300: + return EXIT_CODE_SUCCESS + + if status_code == 302: + return EXIT_CODE_HTTP_REDIRECT_ERROR + + if status_code == 404: + return EXIT_CODE_HTTP_NOT_FOUND_ERROR + + if status_code > 499: + return EXIT_CODE_HTTP_SERVER_ERROR + + return EXIT_CODE_HTTP_UNKNOWN_ERROR + + +def main(): + """Main function to run the program. + + Parse system arguments and delegate to the appropriate function. + + Returns: + A status code - either an http status code or a custom error code + """ + parser = get_argsparser() + subparser_action = parser.parse_args() + try: + return subparser_action.func(subparser_action) + except ValueError: + logger.exception('Invalid arguments passed.') + parser.print_help(sys.stderr) + return EXIT_CODE_INVALID_REQUEST_VALUES + return EXIT_CODE_GENERIC_HTTPLIB_ERROR + +if __name__ == '__main__': + exit_code = map_http_status_to_exit_code(main()) + sys.exit(exit_code) diff --git a/Assets/Firebase/Editor/network_request.py.meta b/Assets/Firebase/Editor/network_request.py.meta new file mode 100644 index 0000000..c8450b3 --- /dev/null +++ b/Assets/Firebase/Editor/network_request.py.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e6e32fecbfd44fab946fa160e4861924 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Editor/network_request.py +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins.meta b/Assets/Firebase/Plugins.meta new file mode 100644 index 0000000..25833da --- /dev/null +++ b/Assets/Firebase/Plugins.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 74641d9677971a54a943a4df768f2917 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Android.meta b/Assets/Firebase/Plugins/Android.meta new file mode 100644 index 0000000..7cca179 --- /dev/null +++ b/Assets/Firebase/Plugins/Android.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 56dcb07281839a24d96a78d39d49089c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Android/firebase-messaging-cpp.aar b/Assets/Firebase/Plugins/Android/firebase-messaging-cpp.aar new file mode 100644 index 0000000..c1a8107 Binary files /dev/null and b/Assets/Firebase/Plugins/Android/firebase-messaging-cpp.aar differ diff --git a/Assets/Firebase/Plugins/Android/firebase-messaging-cpp.aar.meta b/Assets/Firebase/Plugins/Android/firebase-messaging-cpp.aar.meta new file mode 100644 index 0000000..8420858 --- /dev/null +++ b/Assets/Firebase/Plugins/Android/firebase-messaging-cpp.aar.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 0be2cda49adc4b61a7e9eb9bf669fdab +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Android/firebase-messaging-cpp.aar +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Firebase.Analytics.dll b/Assets/Firebase/Plugins/Firebase.Analytics.dll new file mode 100644 index 0000000..6228d2a Binary files /dev/null and b/Assets/Firebase/Plugins/Firebase.Analytics.dll differ diff --git a/Assets/Firebase/Plugins/Firebase.Analytics.dll.meta b/Assets/Firebase/Plugins/Firebase.Analytics.dll.meta new file mode 100644 index 0000000..bf8d631 --- /dev/null +++ b/Assets/Firebase/Plugins/Firebase.Analytics.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 816270c2a2a348e59cb9b7b096a24f50 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Firebase.Analytics.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: x86 + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 1 + settings: + CPU: x86 + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Firebase.Analytics.pdb b/Assets/Firebase/Plugins/Firebase.Analytics.pdb new file mode 100644 index 0000000..ee4b13e Binary files /dev/null and b/Assets/Firebase/Plugins/Firebase.Analytics.pdb differ diff --git a/Assets/Firebase/Plugins/Firebase.Analytics.pdb.meta b/Assets/Firebase/Plugins/Firebase.Analytics.pdb.meta new file mode 100644 index 0000000..0d924c1 --- /dev/null +++ b/Assets/Firebase/Plugins/Firebase.Analytics.pdb.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 778e0739eb634ac6beb8b1dbac5d17f0 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Firebase.Analytics.pdb +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: x86 + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 1 + settings: + CPU: x86 + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Firebase.App.dll b/Assets/Firebase/Plugins/Firebase.App.dll new file mode 100644 index 0000000..58df162 Binary files /dev/null and b/Assets/Firebase/Plugins/Firebase.App.dll differ diff --git a/Assets/Firebase/Plugins/Firebase.App.dll.meta b/Assets/Firebase/Plugins/Firebase.App.dll.meta new file mode 100644 index 0000000..e47da3f --- /dev/null +++ b/Assets/Firebase/Plugins/Firebase.App.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 7311924048bd457bac6d713576c952da +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Firebase.App.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: x86 + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 1 + settings: + CPU: x86 + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Firebase.App.pdb b/Assets/Firebase/Plugins/Firebase.App.pdb new file mode 100644 index 0000000..bfdeba9 Binary files /dev/null and b/Assets/Firebase/Plugins/Firebase.App.pdb differ diff --git a/Assets/Firebase/Plugins/Firebase.App.pdb.meta b/Assets/Firebase/Plugins/Firebase.App.pdb.meta new file mode 100644 index 0000000..d1fa8b8 --- /dev/null +++ b/Assets/Firebase/Plugins/Firebase.App.pdb.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 44907853a9e64be4a31076a763ae13b3 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Firebase.App.pdb +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: x86 + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 1 + settings: + CPU: x86 + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Firebase.Crashlytics.dll b/Assets/Firebase/Plugins/Firebase.Crashlytics.dll new file mode 100644 index 0000000..204d673 Binary files /dev/null and b/Assets/Firebase/Plugins/Firebase.Crashlytics.dll differ diff --git a/Assets/Firebase/Plugins/Firebase.Crashlytics.dll.meta b/Assets/Firebase/Plugins/Firebase.Crashlytics.dll.meta new file mode 100644 index 0000000..1be1093 --- /dev/null +++ b/Assets/Firebase/Plugins/Firebase.Crashlytics.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 4a712f6ef12f441e9d8b053a3c30ad55 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Firebase.Crashlytics.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: x86 + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 1 + settings: + CPU: x86 + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Firebase.Crashlytics.pdb b/Assets/Firebase/Plugins/Firebase.Crashlytics.pdb new file mode 100644 index 0000000..eefa1c2 Binary files /dev/null and b/Assets/Firebase/Plugins/Firebase.Crashlytics.pdb differ diff --git a/Assets/Firebase/Plugins/Firebase.Crashlytics.pdb.meta b/Assets/Firebase/Plugins/Firebase.Crashlytics.pdb.meta new file mode 100644 index 0000000..2efa7bb --- /dev/null +++ b/Assets/Firebase/Plugins/Firebase.Crashlytics.pdb.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: cf098bb37bd1464083da05173619936e +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Firebase.Crashlytics.pdb +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: x86 + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 1 + settings: + CPU: x86 + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Firebase.Messaging.dll b/Assets/Firebase/Plugins/Firebase.Messaging.dll new file mode 100644 index 0000000..cb3295d Binary files /dev/null and b/Assets/Firebase/Plugins/Firebase.Messaging.dll differ diff --git a/Assets/Firebase/Plugins/Firebase.Messaging.dll.meta b/Assets/Firebase/Plugins/Firebase.Messaging.dll.meta new file mode 100644 index 0000000..f1cca28 --- /dev/null +++ b/Assets/Firebase/Plugins/Firebase.Messaging.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 0177f1334f3944ac8ca3df55e1d98660 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Firebase.Messaging.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: x86 + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 1 + settings: + CPU: x86 + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Firebase.Messaging.pdb b/Assets/Firebase/Plugins/Firebase.Messaging.pdb new file mode 100644 index 0000000..286eae1 Binary files /dev/null and b/Assets/Firebase/Plugins/Firebase.Messaging.pdb differ diff --git a/Assets/Firebase/Plugins/Firebase.Messaging.pdb.meta b/Assets/Firebase/Plugins/Firebase.Messaging.pdb.meta new file mode 100644 index 0000000..c4d55a9 --- /dev/null +++ b/Assets/Firebase/Plugins/Firebase.Messaging.pdb.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 45f91ddef5f24fee8410c18fdc5e55b6 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Firebase.Messaging.pdb +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: x86 + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 1 + settings: + CPU: x86 + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Firebase.Platform.dll b/Assets/Firebase/Plugins/Firebase.Platform.dll new file mode 100644 index 0000000..5a9f083 Binary files /dev/null and b/Assets/Firebase/Plugins/Firebase.Platform.dll differ diff --git a/Assets/Firebase/Plugins/Firebase.Platform.dll.meta b/Assets/Firebase/Plugins/Firebase.Platform.dll.meta new file mode 100644 index 0000000..24385bd --- /dev/null +++ b/Assets/Firebase/Plugins/Firebase.Platform.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 7d3eec03d7e241a48941e038118c5e6a +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Firebase.Platform.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: x86 + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 1 + settings: + CPU: x86 + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Firebase.Platform.pdb b/Assets/Firebase/Plugins/Firebase.Platform.pdb new file mode 100644 index 0000000..0cf413f Binary files /dev/null and b/Assets/Firebase/Plugins/Firebase.Platform.pdb differ diff --git a/Assets/Firebase/Plugins/Firebase.Platform.pdb.meta b/Assets/Firebase/Plugins/Firebase.Platform.pdb.meta new file mode 100644 index 0000000..33e86ed --- /dev/null +++ b/Assets/Firebase/Plugins/Firebase.Platform.pdb.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: af8fc0c835824578b855d4c0ed7b16ab +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Firebase.Platform.pdb +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: x86 + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 1 + settings: + CPU: x86 + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Firebase.TaskExtension.dll b/Assets/Firebase/Plugins/Firebase.TaskExtension.dll new file mode 100644 index 0000000..94637a4 Binary files /dev/null and b/Assets/Firebase/Plugins/Firebase.TaskExtension.dll differ diff --git a/Assets/Firebase/Plugins/Firebase.TaskExtension.dll.meta b/Assets/Firebase/Plugins/Firebase.TaskExtension.dll.meta new file mode 100644 index 0000000..097f6e6 --- /dev/null +++ b/Assets/Firebase/Plugins/Firebase.TaskExtension.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: f5d4069c578548ba9f199b46d61bf06d +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Firebase.TaskExtension.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: x86 + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 1 + settings: + CPU: x86 + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Firebase.TaskExtension.pdb b/Assets/Firebase/Plugins/Firebase.TaskExtension.pdb new file mode 100644 index 0000000..deb9b06 Binary files /dev/null and b/Assets/Firebase/Plugins/Firebase.TaskExtension.pdb differ diff --git a/Assets/Firebase/Plugins/Firebase.TaskExtension.pdb.meta b/Assets/Firebase/Plugins/Firebase.TaskExtension.pdb.meta new file mode 100644 index 0000000..1dfb4a7 --- /dev/null +++ b/Assets/Firebase/Plugins/Firebase.TaskExtension.pdb.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 736717de9e57417d930d929ac556b287 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Firebase.TaskExtension.pdb +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: x86 + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 1 + settings: + CPU: x86 + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/Google.MiniJson.dll b/Assets/Firebase/Plugins/Google.MiniJson.dll new file mode 100644 index 0000000..e06aa56 Binary files /dev/null and b/Assets/Firebase/Plugins/Google.MiniJson.dll differ diff --git a/Assets/Firebase/Plugins/Google.MiniJson.dll.meta b/Assets/Firebase/Plugins/Google.MiniJson.dll.meta new file mode 100644 index 0000000..eb7e33a --- /dev/null +++ b/Assets/Firebase/Plugins/Google.MiniJson.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 3ebb289656f1477fa263e62d36c6e329 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/Google.MiniJson.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 1 + settings: + CPU: x86 + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 1 + settings: + CPU: x86 + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 1 + settings: + CPU: x86 + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/iOS.meta b/Assets/Firebase/Plugins/iOS.meta new file mode 100644 index 0000000..587d77f --- /dev/null +++ b/Assets/Firebase/Plugins/iOS.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b78b51a58e165994f81fcb3ba889d64e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/iOS/Firebase.Analytics.dll b/Assets/Firebase/Plugins/iOS/Firebase.Analytics.dll new file mode 100644 index 0000000..ae18205 Binary files /dev/null and b/Assets/Firebase/Plugins/iOS/Firebase.Analytics.dll differ diff --git a/Assets/Firebase/Plugins/iOS/Firebase.Analytics.dll.meta b/Assets/Firebase/Plugins/iOS/Firebase.Analytics.dll.meta new file mode 100644 index 0000000..98f9ffb --- /dev/null +++ b/Assets/Firebase/Plugins/iOS/Firebase.Analytics.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 52718a3a80d44aacb368bcc9d62dd804 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/iOS/Firebase.Analytics.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/iOS/Firebase.Analytics.pdb b/Assets/Firebase/Plugins/iOS/Firebase.Analytics.pdb new file mode 100644 index 0000000..0266473 Binary files /dev/null and b/Assets/Firebase/Plugins/iOS/Firebase.Analytics.pdb differ diff --git a/Assets/Firebase/Plugins/iOS/Firebase.Analytics.pdb.meta b/Assets/Firebase/Plugins/iOS/Firebase.Analytics.pdb.meta new file mode 100644 index 0000000..eefbe13 --- /dev/null +++ b/Assets/Firebase/Plugins/iOS/Firebase.Analytics.pdb.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: e0a3fec4e6044b70added51eb3d310ee +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/iOS/Firebase.Analytics.pdb +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/iOS/Firebase.App.dll b/Assets/Firebase/Plugins/iOS/Firebase.App.dll new file mode 100644 index 0000000..8fec003 Binary files /dev/null and b/Assets/Firebase/Plugins/iOS/Firebase.App.dll differ diff --git a/Assets/Firebase/Plugins/iOS/Firebase.App.dll.meta b/Assets/Firebase/Plugins/iOS/Firebase.App.dll.meta new file mode 100644 index 0000000..51505a7 --- /dev/null +++ b/Assets/Firebase/Plugins/iOS/Firebase.App.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 5f3feda1a91343759b7eb58a29b492b7 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/iOS/Firebase.App.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/iOS/Firebase.App.pdb b/Assets/Firebase/Plugins/iOS/Firebase.App.pdb new file mode 100644 index 0000000..165d738 Binary files /dev/null and b/Assets/Firebase/Plugins/iOS/Firebase.App.pdb differ diff --git a/Assets/Firebase/Plugins/iOS/Firebase.App.pdb.meta b/Assets/Firebase/Plugins/iOS/Firebase.App.pdb.meta new file mode 100644 index 0000000..3122343 --- /dev/null +++ b/Assets/Firebase/Plugins/iOS/Firebase.App.pdb.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: e96748f6edd2467b95622dee98523c65 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/iOS/Firebase.App.pdb +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.dll b/Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.dll new file mode 100644 index 0000000..e08789b Binary files /dev/null and b/Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.dll differ diff --git a/Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.dll.meta b/Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.dll.meta new file mode 100644 index 0000000..3f2245b --- /dev/null +++ b/Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 3c83c9a9845245cfbbab5a52932b5045 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/iOS/Firebase.Crashlytics.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.pdb b/Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.pdb new file mode 100644 index 0000000..b04a33d Binary files /dev/null and b/Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.pdb differ diff --git a/Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.pdb.meta b/Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.pdb.meta new file mode 100644 index 0000000..6aaf699 --- /dev/null +++ b/Assets/Firebase/Plugins/iOS/Firebase.Crashlytics.pdb.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: fc067b050957416ea05be8e76ac98a69 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/iOS/Firebase.Crashlytics.pdb +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/iOS/Firebase.Messaging.dll b/Assets/Firebase/Plugins/iOS/Firebase.Messaging.dll new file mode 100644 index 0000000..ce9850d Binary files /dev/null and b/Assets/Firebase/Plugins/iOS/Firebase.Messaging.dll differ diff --git a/Assets/Firebase/Plugins/iOS/Firebase.Messaging.dll.meta b/Assets/Firebase/Plugins/iOS/Firebase.Messaging.dll.meta new file mode 100644 index 0000000..f460951 --- /dev/null +++ b/Assets/Firebase/Plugins/iOS/Firebase.Messaging.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 104bd79795964dd3a77a6fa53e729421 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/iOS/Firebase.Messaging.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/iOS/Firebase.Messaging.pdb b/Assets/Firebase/Plugins/iOS/Firebase.Messaging.pdb new file mode 100644 index 0000000..74187b5 Binary files /dev/null and b/Assets/Firebase/Plugins/iOS/Firebase.Messaging.pdb differ diff --git a/Assets/Firebase/Plugins/iOS/Firebase.Messaging.pdb.meta b/Assets/Firebase/Plugins/iOS/Firebase.Messaging.pdb.meta new file mode 100644 index 0000000..5e64d57 --- /dev/null +++ b/Assets/Firebase/Plugins/iOS/Firebase.Messaging.pdb.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: db52be13d765411796629c696730d984 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/iOS/Firebase.Messaging.pdb +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/x86_64.meta b/Assets/Firebase/Plugins/x86_64.meta new file mode 100644 index 0000000..67b60b5 --- /dev/null +++ b/Assets/Firebase/Plugins/x86_64.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 85c575d8a92a29c4cb562ecbac1c215a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.bundle b/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.bundle new file mode 100644 index 0000000..b8b312a Binary files /dev/null and b/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.bundle differ diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.bundle.meta b/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.bundle.meta new file mode 100644 index 0000000..6f28647 --- /dev/null +++ b/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.bundle.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 35bfcced25264151bd76b628a1dfa989 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/x86_64/FirebaseCppAnalytics.bundle +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.dll b/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.dll new file mode 100644 index 0000000..6de3bb9 Binary files /dev/null and b/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.dll differ diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.dll.meta b/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.dll.meta new file mode 100644 index 0000000..97b1a78 --- /dev/null +++ b/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: c48626ae27ed478483ba85fd7c81c04b +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/x86_64/FirebaseCppAnalytics.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.so b/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.so new file mode 100644 index 0000000..e7f3ae4 Binary files /dev/null and b/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.so differ diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.so.meta b/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.so.meta new file mode 100644 index 0000000..7c5f43e --- /dev/null +++ b/Assets/Firebase/Plugins/x86_64/FirebaseCppAnalytics.so.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 590090df30d142acba7e7be939fd2988 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/x86_64/FirebaseCppAnalytics.so +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.bundle b/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.bundle new file mode 100644 index 0000000..60189d6 Binary files /dev/null and b/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.bundle differ diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.bundle.meta b/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.bundle.meta new file mode 100644 index 0000000..29b0c9d --- /dev/null +++ b/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.bundle.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: db33cacaee9244768effe1c685b48760 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.bundle +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.dll b/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.dll new file mode 100644 index 0000000..13aa0f1 Binary files /dev/null and b/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.dll differ diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.dll.meta b/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.dll.meta new file mode 100644 index 0000000..e50eadb --- /dev/null +++ b/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 66adb52e65464b858b1fe1b6e092a9dd +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.so b/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.so new file mode 100644 index 0000000..9275ca7 Binary files /dev/null and b/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.so differ diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.so.meta b/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.so.meta new file mode 100644 index 0000000..4f23471 --- /dev/null +++ b/Assets/Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.so.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 7e0dbda61aaa430fb7d0913f7f100eef +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/x86_64/FirebaseCppApp-12_8_0.so +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.bundle b/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.bundle new file mode 100644 index 0000000..c28d4d6 Binary files /dev/null and b/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.bundle differ diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.bundle.meta b/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.bundle.meta new file mode 100644 index 0000000..2c74bd1 --- /dev/null +++ b/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.bundle.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 5d46f3be89af4272b9f8990f26048598 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/x86_64/FirebaseCppMessaging.bundle +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 1 + settings: + CPU: x86_64 + OSXUniversal: + enabled: 1 + settings: + CPU: AnyCPU + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.dll b/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.dll new file mode 100644 index 0000000..1b2395b Binary files /dev/null and b/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.dll differ diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.dll.meta b/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.dll.meta new file mode 100644 index 0000000..6e08f9f --- /dev/null +++ b/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 25030b1944ee412881e89b8967a05294 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/x86_64/FirebaseCppMessaging.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 1 + settings: + CPU: x86_64 + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.so b/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.so new file mode 100644 index 0000000..48d8889 Binary files /dev/null and b/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.so differ diff --git a/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.so.meta b/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.so.meta new file mode 100644 index 0000000..6e6e0a5 --- /dev/null +++ b/Assets/Firebase/Plugins/x86_64/FirebaseCppMessaging.so.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 0625d28dbdd6464a9915e074cb465acf +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/Plugins/x86_64/FirebaseCppMessaging.so +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 1 + settings: + CPU: x86_64 + LinuxUniversal: + enabled: 1 + settings: + CPU: AnyCPU + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository.meta b/Assets/Firebase/m2repository.meta new file mode 100644 index 0000000..fbf0680 --- /dev/null +++ b/Assets/Firebase/m2repository.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1cf9e5a06b484d645af49ced897aec26 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com.meta b/Assets/Firebase/m2repository/com.meta new file mode 100644 index 0000000..435942c --- /dev/null +++ b/Assets/Firebase/m2repository/com.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 946c2a0cf1bc5db46bf8d34f0aa30b27 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google.meta b/Assets/Firebase/m2repository/com/google.meta new file mode 100644 index 0000000..bd26ea6 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 603b13f7ef5dcbb4e82488d0edb08a15 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase.meta b/Assets/Firebase/m2repository/com/google/firebase.meta new file mode 100644 index 0000000..b714619 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 49e471f77d9ee984c8f021d12c3ec434 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity.meta new file mode 100644 index 0000000..af5a35d --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 017e482facc455f45a167c1346f3335c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0.meta new file mode 100644 index 0000000..cd86344 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4af573860f3cf5341bc33823748b758a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom new file mode 100644 index 0000000..55594df --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom @@ -0,0 +1,9 @@ + + + 4.0.0 + com.google.firebase + firebase-analytics-unity + 12.8.0 + srcaar + + \ No newline at end of file diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom.meta new file mode 100644 index 0000000..319a55f --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 487dec2845d948a3bc1e62c5156f3912 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.srcaar b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.srcaar new file mode 100644 index 0000000..7ba86e6 Binary files /dev/null and b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.srcaar differ diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.srcaar.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.srcaar.meta new file mode 100644 index 0000000..b969003 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.srcaar.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 54052cbecb874f9692a8b382b61f214c +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.srcaar +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/maven-metadata.xml b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/maven-metadata.xml new file mode 100644 index 0000000..d7df9fa --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/maven-metadata.xml @@ -0,0 +1,9 @@ + + com.google.firebase + firebase-analytics-unity + + 12.8.0 + 12.8.0 + + + diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/maven-metadata.xml.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/maven-metadata.xml.meta new file mode 100644 index 0000000..2f9d206 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/maven-metadata.xml.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 291f81d8ae2745cf913a96d116f2e3f7 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/m2repository/com/google/firebase/firebase-analytics-unity/maven-metadata.xml +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity.meta new file mode 100644 index 0000000..8071212 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 582d326c3f53fda469626ce8f3a3b869 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0.meta new file mode 100644 index 0000000..741ce54 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9622959658a108941941f91dbce13455 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom new file mode 100644 index 0000000..6a0a771 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom @@ -0,0 +1,9 @@ + + + 4.0.0 + com.google.firebase + firebase-app-unity + 12.8.0 + srcaar + + \ No newline at end of file diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom.meta new file mode 100644 index 0000000..df315b7 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e7114db9d92c4fe5bf7c3a64c9b144fd +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.srcaar b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.srcaar new file mode 100644 index 0000000..7bae5c4 Binary files /dev/null and b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.srcaar differ diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.srcaar.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.srcaar.meta new file mode 100644 index 0000000..a0380c9 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.srcaar.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: dcdbd7f82aa84194ad72a68e3ce9b47d +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.srcaar +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/maven-metadata.xml b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/maven-metadata.xml new file mode 100644 index 0000000..9f17e50 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/maven-metadata.xml @@ -0,0 +1,9 @@ + + com.google.firebase + firebase-app-unity + + 12.8.0 + 12.8.0 + + + diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/maven-metadata.xml.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/maven-metadata.xml.meta new file mode 100644 index 0000000..68113e2 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-app-unity/maven-metadata.xml.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 96337775a7c941d88ea15f8026ad6f8e +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/m2repository/com/google/firebase/firebase-app-unity/maven-metadata.xml +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity.meta new file mode 100644 index 0000000..2219470 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3842e3e163edd5e48be271ba2839dcd6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0.meta new file mode 100644 index 0000000..50d85e9 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f4d712409c2c945478f2edbc2d7ef21c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom new file mode 100644 index 0000000..737e0e8 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom @@ -0,0 +1,9 @@ + + + 4.0.0 + com.google.firebase + firebase-crashlytics-unity + 12.8.0 + srcaar + + \ No newline at end of file diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom.meta new file mode 100644 index 0000000..037b09e --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 951ffca241f3498dab7f2e8a17e86c5e +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.srcaar b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.srcaar new file mode 100644 index 0000000..71df1af Binary files /dev/null and b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.srcaar differ diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.srcaar.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.srcaar.meta new file mode 100644 index 0000000..d5fd1a5 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.srcaar.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 267d8a989a0b48b5be3ba6b7c7c95716 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.srcaar +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/maven-metadata.xml b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/maven-metadata.xml new file mode 100644 index 0000000..2054061 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/maven-metadata.xml @@ -0,0 +1,9 @@ + + com.google.firebase + firebase-crashlytics-unity + + 12.8.0 + 12.8.0 + + + diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/maven-metadata.xml.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/maven-metadata.xml.meta new file mode 100644 index 0000000..c1893a5 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/maven-metadata.xml.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: eda65244fc1b407e8948b25b31c17991 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/maven-metadata.xml +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity.meta new file mode 100644 index 0000000..111b081 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 93d8867ae32fcd044b24237cd23f39b1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0.meta new file mode 100644 index 0000000..db01989 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2a9a16643e9b16748a01cb73e813dada +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom new file mode 100644 index 0000000..ae1ae5f --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom @@ -0,0 +1,9 @@ + + + 4.0.0 + com.google.firebase + firebase-messaging-unity + 12.8.0 + srcaar + + \ No newline at end of file diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom.meta new file mode 100644 index 0000000..2778f64 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 46b0b84f2b4245feb818749b379fc5e1 +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.srcaar b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.srcaar new file mode 100644 index 0000000..2d49fc8 Binary files /dev/null and b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.srcaar differ diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.srcaar.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.srcaar.meta new file mode 100644 index 0000000..7c17573 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.srcaar.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 73575eff53f94b15b607c2e2defa3d0b +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.srcaar +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/maven-metadata.xml b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/maven-metadata.xml new file mode 100644 index 0000000..ed7fa68 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/maven-metadata.xml @@ -0,0 +1,9 @@ + + com.google.firebase + firebase-messaging-unity + + 12.8.0 + 12.8.0 + + + diff --git a/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/maven-metadata.xml.meta b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/maven-metadata.xml.meta new file mode 100644 index 0000000..1f05a73 --- /dev/null +++ b/Assets/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/maven-metadata.xml.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: f6a5eb4df3694f6dac9ddc5451ac17db +labels: +- gvh +- gvh_version-12.8.0 +- gvhp_exportpath-Firebase/m2repository/com/google/firebase/firebase-messaging-unity/maven-metadata.xml +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo.meta b/Assets/GeneratedLocalRepo.meta new file mode 100644 index 0000000..e913853 --- /dev/null +++ b/Assets/GeneratedLocalRepo.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ef31d9304c845a5409e16cc234aa2b27 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase.meta b/Assets/GeneratedLocalRepo/Firebase.meta new file mode 100644 index 0000000..6e7c252 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8ad33eef1e326a046abe885dc4ad70c3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository.meta new file mode 100644 index 0000000..522b99c --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e3cb11db6a63e24c9a2b519c7eb839a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com.meta new file mode 100644 index 0000000..d128865 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1d333d8717a443941914e587abd1b8a7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google.meta new file mode 100644 index 0000000..2dcbe92 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d829867bf6b775d418c66b24abb19984 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase.meta new file mode 100644 index 0000000..970881a --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d8e811b9f66d6484a973d08d5d2ee3f2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity.meta new file mode 100644 index 0000000..454c311 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b0c5a2aedd723d4ab0fc02caf561d6b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0.meta new file mode 100644 index 0000000..98e7c74 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 44f0a95af761f9249a428d284df8d666 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.aar b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.aar new file mode 100644 index 0000000..7ba86e6 Binary files /dev/null and b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.aar differ diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.aar.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.aar.meta new file mode 100644 index 0000000..d3aa964 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.aar.meta @@ -0,0 +1,34 @@ +fileFormatVersion: 2 +guid: d329be592e4c5cc4480c2b33699a1915 +labels: +- gpsr +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Android: Android + second: + enabled: 0 + settings: {} + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom new file mode 100644 index 0000000..441a75b --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom @@ -0,0 +1,9 @@ + + + 4.0.0 + com.google.firebase + firebase-analytics-unity + 12.8.0 + aar + + \ No newline at end of file diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom.meta new file mode 100644 index 0000000..3c10019 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-analytics-unity/12.8.0/firebase-analytics-unity-12.8.0.pom.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a2aa40ce243681f4d85a56aace6294c9 +labels: +- gpsr +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity.meta new file mode 100644 index 0000000..0a6ae3c --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 90f19498e8d9fd4418fa7d154ff9e000 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0.meta new file mode 100644 index 0000000..37a5163 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7d1c44b73803dad46a71faba9ef925c2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.aar b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.aar new file mode 100644 index 0000000..7bae5c4 Binary files /dev/null and b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.aar differ diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.aar.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.aar.meta new file mode 100644 index 0000000..a2c7f9a --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.aar.meta @@ -0,0 +1,34 @@ +fileFormatVersion: 2 +guid: 24c85b4455086ca40b18125a193bb16c +labels: +- gpsr +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Android: Android + second: + enabled: 0 + settings: {} + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom new file mode 100644 index 0000000..eba6576 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom @@ -0,0 +1,9 @@ + + + 4.0.0 + com.google.firebase + firebase-app-unity + 12.8.0 + aar + + \ No newline at end of file diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom.meta new file mode 100644 index 0000000..f719b85 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-app-unity/12.8.0/firebase-app-unity-12.8.0.pom.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 054e8e14b678df3458cedd8b1896f2a0 +labels: +- gpsr +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity.meta new file mode 100644 index 0000000..61365ae --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2d3fbf3eb6b9c3e4eaa65d4014cc6ebf +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0.meta new file mode 100644 index 0000000..853af85 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 93437f1ad21bb5240bb790e22f310ef4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.aar b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.aar new file mode 100644 index 0000000..71df1af Binary files /dev/null and b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.aar differ diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.aar.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.aar.meta new file mode 100644 index 0000000..cb40949 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.aar.meta @@ -0,0 +1,34 @@ +fileFormatVersion: 2 +guid: f9a69ca143f5c37468611f4e763ec238 +labels: +- gpsr +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Android: Android + second: + enabled: 0 + settings: {} + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom new file mode 100644 index 0000000..f69e5a5 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom @@ -0,0 +1,9 @@ + + + 4.0.0 + com.google.firebase + firebase-crashlytics-unity + 12.8.0 + aar + + \ No newline at end of file diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom.meta new file mode 100644 index 0000000..6b1a094 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-crashlytics-unity/12.8.0/firebase-crashlytics-unity-12.8.0.pom.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 94dc1b2920705cb4aae3811bb93bb310 +labels: +- gpsr +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity.meta new file mode 100644 index 0000000..f352e21 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: db81791426a7d404f952d45a7f3bb6f1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0.meta new file mode 100644 index 0000000..6f6abf0 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 444271c4e2f561640b89bece9ab979fa +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.aar b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.aar new file mode 100644 index 0000000..2d49fc8 Binary files /dev/null and b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.aar differ diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.aar.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.aar.meta new file mode 100644 index 0000000..f8e808d --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.aar.meta @@ -0,0 +1,34 @@ +fileFormatVersion: 2 +guid: 35c3b6861274f844da75a0ce799697bb +labels: +- gpsr +PluginImporter: + externalObjects: {} + serializedVersion: 2 + iconMap: {} + executionOrder: {} + defineConstraints: [] + isPreloaded: 0 + isOverridable: 0 + isExplicitlyReferenced: 0 + validateReferences: 1 + platformData: + - first: + Android: Android + second: + enabled: 0 + settings: {} + - first: + Any: + second: + enabled: 0 + settings: {} + - first: + Editor: Editor + second: + enabled: 0 + settings: + DefaultValueInitialized: true + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom new file mode 100644 index 0000000..0daa8b4 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom @@ -0,0 +1,9 @@ + + + 4.0.0 + com.google.firebase + firebase-messaging-unity + 12.8.0 + aar + + \ No newline at end of file diff --git a/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom.meta b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom.meta new file mode 100644 index 0000000..ea9ece4 --- /dev/null +++ b/Assets/GeneratedLocalRepo/Firebase/m2repository/com/google/firebase/firebase-messaging-unity/12.8.0/firebase-messaging-unity-12.8.0.pom.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5e2310355589f2240b1c265be20ff953 +labels: +- gpsr +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds.meta b/Assets/GoogleMobileAds.meta new file mode 100644 index 0000000..c942cc9 --- /dev/null +++ b/Assets/GoogleMobileAds.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 05951c9eb5d88414e81c0c7f9c565947 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/CHANGELOG.md b/Assets/GoogleMobileAds/CHANGELOG.md new file mode 100644 index 0000000..3c6f69c --- /dev/null +++ b/Assets/GoogleMobileAds/CHANGELOG.md @@ -0,0 +1,1502 @@ +Google Mobile Ads Unity Plugin Change Log + +************** +Version 10.6.0 +************** + +- Updated the GMA iOS SDK dependency version to 12.12.0. +- Added proguard rules to prevent minification of public APIs of GMA Android and UMP SDK. + +Built and tested with: + +- Google Mobile Ads Android SDK 24.5.0. +- Google Mobile Ads iOS SDK 12.12.0. +- Google User Messaging Platform Android SDK 3.2.0 +- Google User Messaging Platform iOS SDK 3.0.0 +- External Dependency Manager for Unity 1.2.186 + +************** +Version 10.5.0 +************** + +- Add `PlacementID` field to all formats. +- Enable loading EDM4U for Editor platform while importing. +- Fix a crash when `MobileAds.GetPlatformVersion` is called. +- Fix missing `link.xml` when using the UPM package ([#3951](https://github.com/googleads/googleads-mobile-unity/issues/3951)). +- Add the latest Unity Editor LTS version flag `2021_3_56` to `AndroidBuildPreProcessor`. + +Built and tested with: + +- Google Mobile Ads Android SDK 24.5.0. +- Google Mobile Ads iOS SDK 12.11.0. +- Google User Messaging Platform Android SDK 3.2.0 +- Google User Messaging Platform iOS SDK 3.0.0 +- External Dependency Manager for Unity 1.2.186 + +************** +Version 10.4.2 +************** + +- Fix issue with macros in `BuildPreProcessor` for Unity Editor 2021. +- Added `androidx.lifecycle` dependency required for AppOpenAd. + +Built and tested with: + +- Google Mobile Ads Android SDK 24.5.0. +- Google Mobile Ads iOS SDK 12.9.0. +- Google User Messaging Platform Android SDK 3.2.0 +- Google User Messaging Platform iOS SDK 3.0.0 +- External Dependency Manager for Unity 1.2.186 + +************** +Version 10.4.1 +************** + +- **Version 10.4.0 has been deprecated. Please update to 10.4.1 instead.** +- Add `package` and `minSdkVersion` attribute to AndroidManifest.xml. + +Built and tested with: + +- Google Mobile Ads Android SDK 24.5.0. +- Google Mobile Ads iOS SDK 12.9.0. +- Google User Messaging Platform Android SDK 3.2.0 +- Google User Messaging Platform iOS SDK 3.0.0 +- External Dependency Manager for Unity 1.2.186 + +************** +Version 10.4.0 +************** + +- Updated the GMA Android SDK dependency version to 24.5.0. +- Updated the GMA iOS SDK dependency version to 12.9.0. +- Added Android build post processor to solve common build issues. For more information see, [Enable Gradle build post processor](https://developers.google.com/admob/unity/android). +- Fixed [#3718](https://github.com/googleads/googleads-mobile-unity/issues/3718). +- Updated the Android library source code location according to Unity's [Android Library](https://docs.unity3d.com/Manual/android-library-plugin-create.html) [(aka bundled) plug-in](https://docs.unity3d.com/2019.4/Documentation/Manual/PluginInspector.html) format. + - **Old location:** [source/android-library](https://github.com/googleads/googleads-mobile-unity/tree/main/source/android-library) + - **New location:** [source/plugin/Assets/Plugins/Android/GoogleMobileAdsPlugin.androidlib](https://github.com/googleads/googleads-mobile-unity/tree/main/source/plugin/Assets/Plugins/Android/GoogleMobileAdsPlugin.androidlib) + - This change makes the SDK more streamlined to build from source. +- Merged the Android Manifest files into a single one located under `src/main`. +- Fixed [#3810](https://github.com/googleads/googleads-mobile-unity/issues/3810) - crash on `AdapterResponseInfo.AdSourceName`. + +Built and tested with: + +- Google Mobile Ads Android SDK 24.5.0. +- Google Mobile Ads iOS SDK 12.9.0. +- Google User Messaging Platform Android SDK 3.2.0 +- Google User Messaging Platform iOS SDK 3.0.0 +- External Dependency Manager for Unity 1.2.186 + +************** +Version 10.3.0 +************** + +- Updated the GMA Android SDK dependency version to 24.4.0. +- Updated the GMA iOS SDK dependency version to 12.6.0. +- Fixed `RaiseAdEventsOnUnityMainThread ` by ensuring the events are always called back on Main thread even if the SDK is called on background thread. + +Built and tested with: + +- Google Mobile Ads Android SDK 24.4.0. +- Google Mobile Ads iOS SDK 12.6.0. +- Google User Messaging Platform Android SDK 3.2.0 +- Google User Messaging Platform iOS SDK 3.0.0 +- External Dependency Manager for Unity 1.2.186 + +************** +Version 10.2.0 +************** +- Updated the GMA Android SDK dependency version to 24.3.0. +- Updated the GMA iOS SDK dependency version to 12.5.0. +- Run AppOpen ads in Immersive mode for Android. This will prevent the 3 button navigation from showing up when ads are shown. + +Built and tested with: +- Google Mobile Ads Android SDK 24.3.0. +- Google Mobile Ads iOS SDK 12.5.0. +- Google User Messaging Platform Android SDK 3.2.0 +- Google User Messaging Platform iOS SDK 3.0.0 +- External Dependency Manager for Unity 1.2.186 + +************** +Version 10.1.0 +************** +- Updated UMP SDK dependency on Android to 3.2.0 and on iOS to 3.0.0. +- Updated the GMA Android SDK dependency version to 24.2.0. +- Updated the GMA iOS SDK dependency version to 12.3.0. +- Updated SKAdNetworkIdentifiers List on iOS to reflect latest additions. +- Supports Preloading APIs on iOS and Android. +- Refactored Unity Editor Banner experience to be inline with Android and iOS behavior. +- Fixed a bug on AdRequest where setting the CustomTargeting parameter was not being propagated. +- Run fullscreen ads in Immersive mode for Android. This will prevent the 3 button navigation from showing up when ads are shown. +- Fixed crash on rendering Native Overlay ads due to conflict of icon and background IDs with other similarly named Resource ID's. + +Built and tested with: +- Google Mobile Ads Android SDK 24.2.0. +- Google Mobile Ads iOS SDK 12.3.0. +- Google User Messaging Platform Android SDK 3.2.0 +- Google User Messaging Platform iOS SDK 3.0.0 +- External Dependency Manager for Unity 1.2.185 + +************** +Version 10.0.0 +************** +- Updated the GMA Android SDK dependency version to 24.1.0. +- Updated the GMA iOS SDK dependency version to 12.2.0. +- Removed deprecated `AdFailedToLoadEventArgs` class. Use `LoadAdError` directly. +- Removed deprecated `AdValueEventArgs` class. Use `AdValue` directly. +- Changed the default behavior to True for OPTIMIZE_INITIALIZATION and +OPTIMIZE_AD_LOADING flags to align with GMA Android 24.0.0. +- Replaced `Optimize Ad Loading` and `Optimize Initialization` with +`Disable ad loading optimization` and `Disable initialization optimzation` +- Removed "Remove property tag from GMA Android SDK" feature from Google Mobile +Ads Editor Settings as this tag has been removed from GMA Android SDK v.24.0.0. +- Removed Preloading APIs for iOS as part of upgrade to newer to newer APIs. + +Built and tested with: +- Google Mobile Ads Android SDK 24.1.0. +- Google Mobile Ads iOS SDK 12.2.0. +- Google User Messaging Platform Android SDK 3.1.0 +- Google User Messaging Platform iOS SDK 2.7.0 +- External Dependency Manager for Unity 1.2.185 + +************** +Version 9.6.0 +************** +- Added ability to return correct native template view size on Android. +- Fixed issue with Native Overlay Icon not being clickable. +- Added `GetVersion` API to MobileAds class to be able to fetch the GMA Unity SDK Version. +- Fire `OnUserEarnedReward` once the ad counter expires when showing Rewarded ads in Unity Editor. + +Built and tested with: +- Google Mobile Ads Android SDK 23.6.0 +- Google Mobile Ads iOS SDK 11.13.0 +- Google User Messaging Platform Android SDK 3.1.0 +- Google User Messaging Platform iOS SDK 2.7.0 +- External Dependency Manager for Unity 1.2.185 + +************** +Version 9.5.0 +************** +- Added `CustomTargeting` field to AdRequest. +- Added `GetPlatformVersion` API to MobileAds class to be able to fetch the version info of the underlying GMA Android or iOS SDK. +- Updated the GMA iOS SDK dependency version to 11.13.0. +- Updated the GMA Android SDK dependency version to 23.6.0. + +Built and tested with: +- Google Mobile Ads Android SDK 23.6.0 +- Google Mobile Ads iOS SDK 11.13.0 +- Google User Messaging Platform Android SDK 3.1.0 +- Google User Messaging Platform iOS SDK 2.7.0 +- External Dependency Manager for Unity 1.2.183 + +************** +Version 9.4.0 +************** + +- To support testing with regulated US states, added the following options to UMPDebugGeography: + - RegulatedUSState + - Other +- Deprecated `DebugGeography.NotEEA`. Use `DebugGeography.Other` instead. +- Updated the GMA iOS SDK dependency version to 11.12.0. +- Updated the GMA Android SDK dependency version to 23.5.0. +- Updated UMP SDK dependency on Android to 3.1.0 and on iOS to 2.7.0. + +Built and tested with: +- Google Mobile Ads Android SDK 23.5.0 +- Google Mobile Ads iOS SDK 11.12.0 +- Google User Messaging Platform Android SDK 3.1.0 +- Google User Messaging Platform iOS SDK 2.7.0 +- External Dependency Manager for Unity 1.2.183 + +************** +Version 9.3.0 +************** +- Updated the iOS GMA SDK dependency version to 11.11.0. + +Built and tested with: +- Google Mobile Ads Android SDK 23.4.0 +- Google Mobile Ads iOS SDK 11.11.0 +- Google User Messaging Platform Android SDK 3.0.0 +- Google User Messaging Platform iOS SDK 2.6.0 +- External Dependency Manager for Unity 1.2.183 + +************** +Version 9.2.1 +************** +- Added French language support for Settings Inspector window. +- Fixed [#3510] by specifying the minSdkVersion in the library. +- Updated the dependency version for Android GMA SDK to 23.4.0 and iOS GMA SDK to 11.10.0. +- Updated iOS UMP SDK dependency to 2.6.0. + +Built and tested with: +- Google Mobile Ads Android SDK 23.4.0 +- Google Mobile Ads iOS SDK 11.10.0 +- Google User Messaging Platform Android SDK 3.0.0 +- Google User Messaging Platform iOS SDK 2.6.0 +- External Dependency Manager for Unity 1.2.183 + +************** +Version 9.2.0 +************** +- Added `IsCollapsible` API to `BannerView` to check if a collapsible banner was loaded. +- Fixed [#3369] by using appropriate LayoutParams. +- Fixed [#3455] Banner ad positioning not working on iOS. +- Updated GoogleMobileAds iOS SDK to 11.7.0. + +Built and tested with: +- Google Mobile Ads Android SDK 23.2.0 +- Google Mobile Ads iOS SDK 11.7.0 +- Google User Messaging Platform 2.2.0 +- External Dependency Manager for Unity 1.2.181 + +************** +Version 9.1.1 +************** +- Updated GoogleMobileAds Android SDK to 23.2.0. +- Updated GoogleMobileAds iOS SDK to 11.6.0. +- Updated External Dependency Manager for Unity to 1.2.181. +- Added the AndroidJNI dependency to the UPM package. + +Built and tested with: +- Google Mobile Ads Android SDK 23.2.0 +- Google Mobile Ads iOS SDK 11.6.0 +- Google User Messaging Platform 2.2.0 +- External Dependency Manager for Unity 1.2.181 + +************** +Version 9.1.0 +************** + +- Removed the app measurement feature as Android/iOS SDKs [no longer](https://support.google.com/admob/answer/13973847) initialize App measurement. +- Fixed [#3290] by calling static putPublisherFirstPartyIdEnabled with boolean return type. +- Fixed [#3042] by explicitly adding gradle.projectsEvaluated for executing validate_dependencies gradle script. +- Fixed [#2801] incorrect value for `AdapterResponseInfo.LatencyMillis` on iOS. +- Added `GetAdUnitID` API that allows reading the ad unit id for all ad formats. +- Enabled passing AdManagerAdRequest as part of Load API for Rewarded, Rewarded Interstitial and AppOpen formats. +- Updated Google Mobile Ads SDK dependency to use v11.3.0 on iOS. + +Built and tested with: +- Google Mobile Ads Android SDK 23.0.0 +- Google Mobile Ads iOS SDK 11.3.0 +- Google User Messaging Platform 2.2.0 +- External Dependency Manager for Unity 1.2.179 + +************** +Version 9.0.0 +************** + +- Removed `SameAppKeyEnabled` in `RequestConfiguration`. Use `PublisherFirstPartyIdEnabled` instead. +- Removed `ServerSideVerificationOptions.Builder`. Use `ServerSideVerificationOptions` directly. +- Removed `RequestConfiguration.Builder`. Use `RequestConfiguration` directly. +- Removed `AdRequest.Builder`. Use `AdRequest` directly. +- Removed `AdErrorEventArgs`. Use `AdError` directly. +- Removed `AppOpenAd.Load` API that takes a `ScreenOrientation` parameter. +- Made `AdValueEventArgs` Obsolete. Use `AdValue` directly. +- Made `AdFailedToLoadEventArgs` Obsolete. Use `LoadAdError` directly. +- Updated Google Mobile Ads SDK dependency to use v11.2.0 on iOS. +- Updated the Android User Messaging Platform dependency version to 2.2.0. +- Added the `NativeOverlayAd` class to fetch and display native ads using templates. +- Using `CFPreferences` APIs for `ApplicationPreferences` instead of `NSUserDefaults` on iOS. + +Built and tested with: +- Google Mobile Ads Android SDK 23.0.0 +- Google Mobile Ads iOS SDK 11.2.0 +- Google User Messaging Platform 2.2.0 +- External Dependency Manager for Unity 1.2.179 + +************** +Version 8.7.0 +************** + +- Added PublisherPrivacyPersonalizationState property accessible via RequestConfiguration. +- Added PublisherFirstPartyIdEnabled property in RequestConfiguration. +- Deprecated SameAppKeyEnabled in RequestConfiguration. Use PublisherFirstPartyIdEnabled instead. +- Added ApplicationPreferences GetString and GetInt APIs. +- Fixed [#3048] by applying accurate path for gradle scripts on Windows. +- Updated Google Mobile Ads SDK dependency to use v22.6.0 on Android. +- Updated Google Mobile Ads SDK dependency to use v10.14 on iOS. + +Built and tested with: +- Google Mobile Ads Android SDK 22.6.0 +- Google Mobile Ads iOS SDK 10.14 +- Google User Messaging Platform 2.1.0 +- External Dependency Manager for Unity 1.2.177 + +************** +Version 8.6.0 +************** + +- Fixed [#3007] by aligning the PrivacyOptionsRequirementStatus Enum on iOS with Android Plugin. +- Fixed [#2930] for Projects using Android Gradle Plugin less than 4.2.2. +- Added Editor Options to toggle adding packagingOptions to gradle files to pick the first occurrence of META-INF/kotlinx_coroutines_core.version file. +- Added Editor Options to enable removing the property tag from the Android Manifest of the GMA Android SDK. This is enabled by default for projects using Android Gradle Plugin version 4.2.1 and lower. +- Updated Google Mobile Ads SDK dependency to use v22.5.0 on Android. +- Updated Google Mobile Ads SDK dependency to use v10.13 on iOS. + +Built and tested with: +- Google Mobile Ads Android SDK 22.5.0 +- Google Mobile Ads iOS SDK 10.13 +- Google User Messaging Platform 2.1.0 +- External Dependency Manager for Unity 1.2.177 + +************** +Version 8.5.3 +************** + +- Fixed "cannot find symbol" error when building the Android bridge project using gradle. +- Fixed [#2930] by pinning the Google Mobile Ads SDK dependency to use v22.3.0 on Android. +- Fixed [#2974] ConsentInformation.Update() wasn't working as expected on consecutive requests. + +Built and tested with: +- Google Mobile Ads Android SDK 22.3.0 +- Google Mobile Ads iOS SDK 10.9 +- Google User Messaging Platform 2.1.0 +- External Dependency Manager for Unity 1.2.176 + +************** +Version 8.5.2 +************** + +- Fixed AndroidJavaException when using AdManagerAdRequest custom targeting. +- Fixed [#2826] "No such proxy method" error within GoogleMobileAds.Ump. +- Updated Google Mobile Ads SDK dependency to use v22.3.0 on Android. + +Built and tested with: +- Google Mobile Ads Android SDK 22.3.0 +- Google Mobile Ads iOS SDK 10.9 +- Google User Messaging Platform 2.1.0 +- External Dependency Manager for Unity 1.2.176 + +************** +Version 8.5.1 +************** + +- Version 8.5.0 has been deprecated. Please upgrade to 8.5.1 instead. +- Fixed [#2866] Read enum from getPrivacyOptionsRequirementStatus. +- Removed double quotes from GoogleMobileAdsSKAdNetworkItems.xml. + +Built and tested with: +- Google Mobile Ads Android SDK 22.2.0 +- Google Mobile Ads iOS SDK 10.9 +- Google User Messaging Platform 2.1.0 +- External Dependency Manager for Unity 1.2.176 + +************** +Version 8.5.0 +************** + +- Requires apps to build against Xcode 14.1 or higher. +- This release introduces several new APIs to simplify the consent gathering + process. + - Calling `ConsentInformation.Update()` is now required before interacting + with other `ConsentInformation` public APIs. Before calling it, the following are returned: + - `ConsentStatus` returns `ConsentStatus.Unknown` + - `PrivacyOptionsRequirementStatus` returns + `PrivacyOptionsRequirementStatus.Unknown` + - `ConsentInformation.CanRequestAds` returns `false`. + - [ConsentForm](https://github.com/googleads/googleads-mobile-unity/blob/main/source/plugin/Assets/GoogleMobileAds/Ump/Api/ConsentForm.cs) + - Added method `LoadAndPresentIfRequired` to combine load and show calls. + This method is intended for the use case of showing a form if needed + when the app starts. + - Added method `ShowPrivacyOptionsForm`, to be called when users interact + with your app's privacy setting. + - [ConsentInformation](https://github.com/googleads/googleads-mobile-unity/blob/main/source/plugin/Assets/GoogleMobileAds/Ump/Api/ConsentInformation.cs) + - Added `CanRequestAds` property. + - Added `PrivacyOptionsRequirementStatus` property to indicate whether + privacy options are required to be shown in this session. +- Updated the Android User Messaging Platform dependency version to 2.1.0. +- Updated the Google Mobile Ads iOS SDK dependency version to 10.9. +- Fixed [#2840] Check if the ad references get deallocated in the iOS + plugin (bridge). +- Updated [SKAdNetwork](https://developers.google.com/admob/unity/3p-skadnetworks) + list with values from the July 13, 2023 update. + +Built and tested with: +- Google Mobile Ads Android SDK 22.2.0 +- Google Mobile Ads iOS SDK 10.9 +- Google User Messaging Platform 2.1.0 +- External Dependency Manager for Unity 1.2.176 + +************** +Version 8.4.1 +************** + +- Fixed [#2815] Setting ApplicationPreferences on Android. + +Built and tested with: +- Google Mobile Ads Android SDK 22.2.0 +- Google Mobile Ads iOS SDK 10.7 +- Google User Messaging Platform 2.0.0 +- External Dependency Manager for Unity 1.2.176 + +************** +Version 8.4.0 +************** + +- Fixed [#2757] Rewarded Interstitial events not raising on the main thread. +- Added support for rendering Ad Manager banner ad. +- Removed method call logs from showing up in Unity Editor Console. +- Deprecated ScreenOrientation parameter of the AppOpenAd Load() API. Added AppOpenAd.Load() API for loading AppOpen Ads using ad unit ID, ad request and ad load callbacks. +- Added ApplicationPreferences API to manage GMA preferences. +- Updated Google Mobile Ads SDK dependency to use v10.7 on iOS. +- Updated Google Mobile Ads SDK dependency to use v22.2.0 on Android. + +Built and tested with: +- Google Mobile Ads Android SDK 22.2.0 +- Google Mobile Ads iOS SDK 10.7 +- Google User Messaging Platform 2.0.0 +- External Dependency Manager for Unity 1.2.176 + +************** +Version 8.3.0 +************** + +- Added support to RaiseAdEventsOnUnityMainThread for UMP callbacks. +- Added support for Ad Manager interstitial ad. +- Updated Google Mobile Ads SDK dependency to use v22.1.0 on Android. +- Updated Google Mobile Ads SDK dependency to use v10.5 on iOS. + +Built and tested with: +- Google Mobile Ads Android SDK 22.1.0 +- Google Mobile Ads iOS SDK 10.5 +- Google User Messaging Platform 2.0.0 +- External Dependency Manager for Unity 1.2.176 + +************** +Version 8.2.0 +************** + +- Fixed [#2646] Android Banner 'Descendant focus' crash. +- Fixed [#2676] Raising Interstitial events on main thread. +- Deprecated builder pattern in AdRequest, RequestConfiguration and ServerSideVerificationOptions Class. Utilize fields instead. +- Added AdManagerAdRequest class to allow passing CustomTargeting, CategoryExclusions and PublisherProvidedId as part of AdManager requests. +- Updated Google Mobile Ads SDK dependency to use v10.4 on iOS. + +Built and tested with: +- Google Mobile Ads Android SDK 22.0.0 +- Google Mobile Ads iOS SDK 10.4 +- Google User Messaging Platform 2.0.0 +- External Dependency Manager for Unity 1.2.176 + +************** +Version 8.1.0 +************** + +- Requires apps to build against Xcode 14.0 or higher. +- Fixed [#2611] [UMP] Exception raised when calling Update of ConsentInformation on Android + +Built and tested with: +- Google Mobile Ads Android SDK 22.0.0 +- Google Mobile Ads iOS SDK 10.3 +- Google User Messaging Platform 2.0.0 +- External Dependency Manager for Unity 1.2.175 + +************** +Version 8.0.0 +************** + +Plugin: +- Removed obsolete APIs for AppOpenAd. +- Removed obsolete APIs for InterstitialAd. +- Added the MobileAds.RaiseAdEventsOnUnityMainThread option for raising ad events on the Unity main thread. +- Dropped support for `armv7` and `i386` architectures. +- Requires minimum iOS version 11.0. +- Fixed [#2543] NullReferenceException when UMP ConsentDebugSettings are null. +- Fixed [#2531] Xcode 13 compile time error. +- Fixed [#1779] Crash with custom Banner Ad Sizes on the Unity platform. +- Fixed [#2553] Banner position in Unity Editor to reflect Android and iOS position. +- Added support for GMA Android SDK v22.0.0. Requires using GMA Android SDK v22.0.0 or higher. +- Added support for GMA iOS SDK v10.3. Requires using GMA iOS SDK v10.3 or higher. + +Built and tested with: +- Google Mobile Ads Android SDK 22.0.0 +- Google Mobile Ads iOS SDK 10.3 +- Google User Messaging Platform 2.0.0 +- External Dependency Manager for Unity 1.2.175 + +************** +Version 7.4.1 +************** + +Plugin: +- Added support for GMA iOS SDK v10. Requires using Google Mobile Ads iOS SDK v10.0 or higher. + +Built and tested with: +- Google Mobile Ads Android SDK 21.3.0 +- Google Mobile Ads iOS SDK 10.0 +- Google User Messaging Platform 2.0.0 +- External Dependency Manager for Unity 1.2.175 + +************** +Version 7.4.0 +************** + +Plugin: +- Added OnAdClicked and OnAdImpressionRecorded events to BannerView. +- Updated all ad format APIs to have consistent nomenclature. +- Added new InterstitialAd.OnAdClicked event to interstitial ads. +- Added new InterstitialAd.Load() API for loading interstitial ads. +- Added new InterstitialAd.CanShowAd() API for checking interstitial ad state. +- Added new RewardedAd.OnAdClicked event to rewarded ads. +- Added new RewardedAd.Load() API for loading rewarded ads. +- Added new RewardedAd.CanShowAd() API for checking rewarded ad state. +- Added new RewardedInterstitialAd.OnAdClicked event to rewarded interstitial ads. +- Added new RewardedInterstitialAd.Load() API for loading rewarded interstitial ads. +- Added new RewardedInterstitialAd.CanShowAd() API for checking rewarded interstitial ad state. +- Added new AppOpenAd.OnAdClicked event to app open ads. +- Added new AppOpenAd.Load() API for loading app open ads. +- Added new AppOpenAd.CanShowAd() API for checking app open ad state. +- Fixed [#2453] and [#2450] XCode build error when using iOS SDK 9.14.0 or greater. +- Added User Messaging Platform (UMP) APIs. + +Built and tested with: +- Google Mobile Ads Android SDK 21.3.0 +- Google Mobile Ads iOS SDK 9.11.0 +- Google User Messaging Platform 2.0.0 +- External Dependency Manager for Unity 1.2.175 + +************** +Version 7.3.1 +************** + +Plugin: +- Fixed [#1799](https://github.com/googleads/googleads-mobile-unity/issues/1799) RewardedAd OnAdFailedToPresentFullScreenContent called twice. + +Built and tested with: +- Google Mobile Ads Android SDK 21.3.0. +- Google Mobile Ads iOS SDK 9.11.0 +- External Dependency Manager for Unity 1.2.171 + +************** +Version 7.3.0 +************** + +Plugin: +- Requires using Google Mobile Ads Android SDK v21.3.0 or higher. +- Requires using Google Mobile Ads iOS SDK v9.11.0 or higher. +- Added response information for ad networks to the [ad response](https://developers.google.com/admob/unity/response-info). + +Built and tested with: +- Google Mobile Ads Android SDK 21.3.0. +- Google Mobile Ads iOS SDK 9.11.0 +- External Dependency Manager for Unity 1.2.171. + +************** +Version 7.2.0 +************** + +Plugin: +- Added settings to optimize Android initialization and ad loading thread usage. +- Fixed issue with AppOpenAd.GetResponseInfo() not completing on Android. +- Fixed display issue for AdInspector on the Unity Editor platform. + +Built and tested with: +- Google Mobile Ads Android SDK 21.0.0. +- Google Mobile Ads iOS SDK 9.9.0 +- External Dependency Manager for Unity 1.2.171. + +************** +Version 7.1.0 +************** + +Plugin: +- Added AppStateEventNotifier as a better option to OnApplicationPause for app open ads. + +Built and tested with: +- Google Mobile Ads Android SDK 21.0.0. +- Google Mobile Ads iOS SDK 9.0.0 +- External Dependency Manager for Unity 1.2.171. + +************** +Version 7.0.2 +************** + +Plugin: +- Added support for GMA Android SDK v21. Requires using GMA Android SDK v21.0.0 or higher. + +Built and tested with: +- Google Mobile Ads Android SDK 21.0.0. +- Google Mobile Ads iOS SDK 9.0.0 +- External Dependency Manager for Unity 1.2.171. + +************** +Version 7.0.1 +************** + +Plugin: +- Fixed Github issue [1943](https://github.com/googleads/googleads-mobile-unity/issues/1943) related App Id saving. +- Fixed Github issue [2001](https://github.com/googleads/googleads-mobile-unity/issues/2001) related to Android manifest. +- Fixed Github issue [2003](https://github.com/googleads/googleads-mobile-unity/issues/2003) related to Ad Inspector crash. +- Added placeholder AdInspector for Unity editor. + +Built and tested with: +- Google Play services 20.2.0 +- Google Mobile Ads iOS SDK 9.0.0 +- External Dependency Manager for Unity 1.2.171. + +************** +Version 7.0.0 +************** + +Plugin: +- Added support for GMA iOS SDK v9. Requires using GMA iOS SDK v9.0.0 or higher. +- Fixed https://github.com/googleads/googleads-mobile-unity/issues/1620 +- Updated to use External Dependency Manager for Unity 1.2.169. + +Built and tested with: +- Google Play services 20.2.0 +- Google Mobile Ads iOS SDK 9.0.0 +- External Dependency Manager for Unity 1.2.171. + +************** +Version 6.1.2 +************** + +Plugin: +- Fixed Github issue [1786](https://github.com/googleads/googleads-mobile-unity/issues/1786) related to GoogleMobileAdsSettings. +- Fixed issue related to missing GADUAdNetworkExtras.h file when using some mediation adapters. + +Built and tested with: +- Google Play services 20.2.0 +- Google Mobile Ads iOS SDK 8.8.0 +- External Dependency Manager for Unity 1.2.165. + +Known issue: +- iOS Resolver library cannot be loaded in Unity 2021.1.11 and 2021.1.12. It can be loaded properly with Unity 2021.1.10. See https://github.com/googlesamples/unity-jar-resolver/issues/441 for more information. + +************** +Version 6.1.1 +************** + +Plugin: +- Added support for ad inspector. + +Built and tested with: +- Google Play services 20.2.0 +- Google Mobile Ads iOS SDK 8.8.0 +- External Dependency Manager for Unity 1.2.165. + +Known issue: +- iOS Resolver library cannot be loaded in Unity 2021.1.11 and 2021.1.12. It can be loaded properly with Unity 2021.1.10. See https://github.com/googlesamples/unity-jar-resolver/issues/441 for more information. + + +************** +Version 6.1.0 +************** + +Plugin: +- Fixed https://github.com/googleads/googleads-mobile-unity/issues/1620 +- Added support for iOS 14+ [same app key](https://developers.google.com/admob/ios/ios14) +- Added support for App Open ads. + +Built and tested with: +- Google Play services 20.2.0 +- Google Mobile Ads iOS SDK 8.8.0 +- External Dependency Manager for Unity 1.2.165. + +Known issue: +- iOS Resolver library cannot be loaded in Unity 2021.1.11 and 2021.1.12. It can be loaded properly with Unity 2021.1.10. See https://github.com/googlesamples/unity-jar-resolver/issues/441 for more information. + +************** +Version 6.0.2 +************** + +Plugin: +- Fixed https://github.com/googleads/googleads-mobile-unity/issues/1677 This version requires Xcode 12.4 where the previous version required Xcode 12.5.1. +- You no longer need to enable "Link frameworks statically" for the Google Mobile Ads plugin to work. + +Built and tested with: +- Google Play services 20.2.0 +- Google Mobile Ads iOS SDK 8.8.0 +- External Dependency Manager for Unity 1.2.165. + +Known issue: +- iOS Resolver library cannot be loaded in Unity 2021.1.11 and 2021.1.12. It can be loaded properly with Unity 2021.1.10. See https://github.com/googlesamples/unity-jar-resolver/issues/441 for more information. + +************** +Version 6.0.1 +************** + +Plugin: +- Fixed https://github.com/googleads/googleads-mobile-unity/issues/1613 where build error occurs on Unity 2021. +- Fixed https://github.com/googleads/googleads-mobile-unity/issues/1616 where iOS build contains undefined symbol. +- Automatically added SKAdNetworkIdentifiers recommended by https://developers.google.com/admob/ios/ios14#skadnetwork into generated iOS builds. You can manage the list of SKAdNetworkIdentifier values by editing `Assets/GoogleMobileAds/Editor/GoogleMobileAdsSKAdNetworkItems.xml`. + +Built and tested with: +- Google Play services 20.0.0 +- Google Mobile Ads iOS SDK 8.2.0 +- External Dependency Manager for Unity 1.2.165. + +Known issue: +- iOS Resolver library cannot be loaded in Unity 2021.1.11 and 2021.1.12. It can be loaded properly with Unity 2021.1.10. See https://github.com/googlesamples/unity-jar-resolver/issues/441 for more information. + +************** +Version 6.0.0 +************** + +Plugin: +- Added support for GMA iOS SDK v8 and GMA Android SDK v20. Requires using GMA iOS SDK v8.0.0 or higher, and GMA Android SDK 20.0.0 or higher. +- Removed MobileAds.Initialize(string appId). +- Removed Birthday, Gender, TestDevices, TagForChildDirectedTreatment properties on AdRequest. TagForChildDirectedTreatment and TestDeviceIds properties are available under RequestConfiguration.. +- Removed OnAdLeavingApplication event for all formats. +- Removed MediationAdapterClassName from all formats in favor of ResponseInfo. +- Removed Message from AdErrorEventArgs class in favor of AdError. +- Removed RewardBasedVideoAd in favor of RewardedAd. +- Added support for ad load errors, please see https://developers.google.com/admob/unity/ad-load-errors for details. +- Ad Manager integration now requires providing the app ID in the Unity Editor. +- Changed package format to contain compiled assemblies in DLL format in place of the uncompiled code. +- You need to enable "Link frameworks statically" in Unity Editor -> Assets -> External Dependency Manager -> iOS Resolver -> Settings, or else the GMA plugin does not work. + +Built and tested with: +- Google Play services 20.0.0 +- Google Mobile Ads iOS SDK 8.2.0 +- External Dependency Manager for Unity 1.2.165. + +************** +Version 5.4.0 +************** + +Plugin: +- Add support for iOS14 with Googles `SKAdNetwork` identifiers automatically included in + `Info.plist`. +- Added the RewardedInterstitialAd format. This feature is currently in private beta. Reach out to your account manager to request access. +- Added mock ad views to enable developers to test ad placement and callback logic within the Unity editor. +- Added fix for crash that occurs when attempting to show interstitial when app is closing. +- Added fix for crash that occurs when calling `GetResponseInfo()` on iOS before ad is loaded. + +Built and tested with: +- Google Play services 19.5.0 +- Google Mobile Ads iOS SDK 7.68.0 +- External Dependency Manager for Unity 1.2.161. + +************** +Version 5.3.0 +************** + +Plugin: +- Add InitializationStatusClient for Init callback in Unity Editor. Fixes #1394. +- Update to Android SDK version 19.3.0 + +Built and tested with: +- Google Play services 19.3.0 +- Google Mobile Ads iOS SDK 7.63.0 +- External Dependency Manager for Unity 1.2.156. + +************** +Version 5.2.0 +************** + +Plugin: + - Added ResponseInfo class. See + https://developers.google.com/admob/unity/response-info for usage details. + - Fixes #1307 - issue with running in Unity Editor when targeting iOS platform. + - Fixes #1287 - issue where a crash is caused in equality check when AdSize is + null. + - Moved GoogleMobileAdsPlugin to GoogleMobileAdsPlugin.androidlib to ensure manifest + is picked up when building android app in Unity 2020. Fixes issue #1310. Thanks @pipe-alt! + - Fix error messages for iOS plugin. + - Added the DisableMediationInitialization() method to MobileAds. + Warning: Calling this method may negatively impact your Google mediation performance. + This method should only be called if you include Google mediation adapters in your app, but you + won't use mediate through Google during a particular app session (for example, you are running + an A/B mediation test). + +Built and tested with: +- Google Play services 19.2.0 +- Google Mobile Ads iOS SDK 7.60.0 +- External Dependency Manager for Unity 1.2.156. + +************** +Version 5.1.0 +************** + +Plugin: + - Added RequestConfiguration class. See + https://developers.google.com/admob/unity/targeting for usage details. + - Fixed issue with building for IL2CPP in versions of Unity 2017 and earlier. + - Adding missing imports for Unity 5.6 build (Thanks @EldersJavas !). + - Added GoogleMobileAds assembly definition. + - Added thread safety to GADUObjectCache in iOS plugin. + - Revised project structure. If upgrading from a previous version, delete + your GoogleMobileAds/ folder before importing this plugin. + +Built and tested with: +- Google Play services 19.1.0 +- Google Mobile Ads iOS SDK 7.58.0 +- Unity Jar Resolver 1.2.152 + + +************** +Version 5.0.1 +************** + +Plugin: + - Fixed issue with externs.cpp in pre-2019 versions of Unity + +Built and tested with: +- Google Play services 19.0.0 +- Google Mobile Ads iOS SDK 7.56.0 +- Unity Jar Resolver 1.2.136 + +************** +Version 5.0.0 +************** + +Plugin: + - Removed preprocessor directives for custom assembly support. + - Fixed IL2CPP build support on Android. + - Updated to Google Play services 19.0.0. + - Updated minimum Android API level to 16. + +Built and tested with: +- Google Play services 19.0.0 +- Google Mobile Ads iOS SDK 7.56.0 +- Unity Jar Resolver 1.2.136 + +************** +Version 4.2.1 +************** + +Plugin: + - Fixed issue with using `AdSize.FullWidth` API for apps that only support landscape. + +Built and tested with: +- Google Play services 18.3.0 +- Google Mobile Ads iOS SDK 7.53.1 +- Unity Jar Resolver 1.2.135 + +************** +Version 4.2.0 +************** + +Plugin: + - Added support for using AdSize.FullWidth with Adaptive banner APIs. + - Added `GetRewardItem()` API for `RewardedAd`. + - Fixed issue with Android implementation of `GetPortraitAnchoredAdaptiveBannerAdSizeWithWidth`. + +Built and tested with: +- Google Play services 18.3.0 +- Google Mobile Ads iOS SDK 7.53.1 +- Unity Jar Resolver 1.2.135 + +************** +Version 4.1.0 +************** + +Plugin: + - Released Anchored Adaptive Banner APIs. + +Built and tested with: +- Google Play services 18.2.0 +- Google Mobile Ads iOS SDK 7.51.0 +- Unity Jar Resolver 1.2.130 + +************** +Version 4.0.0 +************** + +Plugin: +- Breaking change: The Android library included in this plugin is now distributed as an aar, and + lives at `Assets/Plugins/Android/googlemobileads-unity.aar'. If you are upgrading from a previous + version, remove the `Assets/Plugins/Android/GoogleMobileAdsPlugin' folder prior to importing this + latest version of the plugin. +- Added proguard support on Android. +- Update Android Google Mobile Ads SDK version to 18.2.0. +- Fixed a bug where the AdSize.SMART_BANNER banner size did not work on Unity 2019.2+. +- Added assertion to stop Android builds when Google Mobile Ads settings are invalid. + +Built and tested with: +- Google Play services 18.2.0 +- Google Mobile Ads iOS SDK 7.50.0 +- Unity Jar Resolver 1.2.125 + +************** +Version 3.18.3 +************** + +Plugin: +- Update JAR resolver. + +Built and tested with: +- Google Play services 18.1.1 +- Google Mobile Ads iOS SDK 7.48.0 +- Unity Jar Resolver 1.2.124 + +************** +Version 3.18.2 +************** + +Plugin: +- Update to Android release 18.1.1. + +Built and tested with: +- Google Play services 18.1.1 +- Google Mobile Ads iOS SDK 7.47.0 +- Unity Jar Resolver 1.2.123 + +************** +Version 3.18.1 +************** + +Plugin: +- Add new Initialization API. +- Fixed Android compile error with PListProcessor. +- Removed reflection for improved IL2CPP support. +- Fixed iOS dependency to not use patch version. + +Built and tested with: +- Google Play services 18.1.0 +- Google Mobile Ads iOS SDK 7.46.0 +- Unity Jar Resolver 1.2.122 + +************** +Version 3.18.0 +************** + +Plugin: +- Added GoogleMobileAdsSettings editor UI for making Plist / manifest changes. +- Fix OnRewardedAdFailedToShow callbacks. +- Migrated android support library to androidx (JetPack) with Google Mobile Ads + SDK version 18.0.0. + +Built and tested with: +- Google Play services 18.0.0 +- Google Mobile Ads iOS SDK 7.45.0 +- Unity Jar Resolver 1.2.119 + +************** +Version 3.17.0 +************** + +Plugin: +- Revised Banner positioning code to use gravity instead of popup window. +- Tested Banner positioning with notched devices supporting Google P APIs. +- Added Rewarded Ads ServerSideVerificationOptions (thanks @halfdevil !) +- Fixed issue with PListProcessor macro. +- Added whitelist for apache http library (thanks @RolandSzep !) +- Specified package for gender enum (thanks @armnotstrong !) +- Added mediation extras for custom events (thanks SeanPONeil !) + +Built and tested with: +- Google Play services 17.2.0 +- Google Mobile Ads iOS SDK 7.44.0 +- Unity Jar Resolver 1.2.111 + +************** +Version 3.16.0 +************** + +Plugin: +- Added new RewardedAd APIs support. +- Added PListProcessor to assist in adding the GADApplicationIdentifier +to iOS build Info.plist. + +Built and tested with: +- Google Play services 17.2.0 +- Google Mobile Ads iOS SDK 7.42.0 +- Unity Jar Resolver 1.2.102.0 + +************** +Version 3.15.1 +************** + +Plugin: +- Fixed crash when adding mediation extras to ad request. + +Built and tested with: +- Google Play services 15.0.1 +- Google Mobile Ads iOS SDK 7.32.0 +- Unity Jar Resolver 1.2.88.0 + +************** +Version 3.15.0 +************** + +Plugin: +- Forward Android ad events on background thread through JNI interface +to mitigate ANRs. + +Mediation packages: +- Updated AppLovin Unity package to v3.0.3. +- Updated Chartboost Unity package to v1.1.1. +- Updated Facebook Unity package to v1.1.3. +- Updated IronSource Unity package to v1.0.2. +- Updated Nend Unity package to v2.0.0. +- Updated Tapjoy Unity package to v2.0.0. + +Built and tested with: +- Google Play services 15.0.1 +- Google Mobile Ads iOS SDK 7.31.0 +- Unity Jar Resolver 1.2.79.0 + +************** +Version 3.14.0 +************** + +Plugin: +- Fixed Google Play dependencies version conflict with Firebase plugins. + +Mediation packages: +- Updated AdColony Unity package to v1.2.1. +- Updated AppLovin Unity package to v3.0.2. +- Updated Chartboost Unity package to v1.1.0. +- Updated Facebook Unity package to v1.1.2. +- Updated InMobi Unity package to v2.1.0. +- Updated IronSource Unity package to v1.0.1. +- Updated Maio Unity package to v1.1.0. +- Updated MoPub Unity package to v2.1.0. +- Updated MyTarget Unity package to v2.1.0. +- Updated Nend Unity package to v1.0.2. +- Updated Tapjoy Unity package to v1.1.1. +- Updated UnityAds Unity package to v1.1.3. + +Built and tested with: +- Google Play services 15.0.1 +- Google Mobile Ads iOS SDK 7.31.0 +- Unity Jar Resolver 1.2.75.0 + +************** +Version 3.13.1 +************** + +Plugin: +- Fixed issue where banner ads reposition to top of screen after a full +screen ad is displayed. + +Built and tested with: +- Google Play services 12.0.1 +- Google Mobile Ads iOS SDK 7.30.0 +- Unity Jar Resolver 1.2.64.0 + +************** +Version 3.13.0 +************** + +Plugin: +- Added `OnAdCompleted` ad event to rewarded video ads. +- Removed support for Native Ads Express. + +Mediation packages: +- Added Chartboost mediation support package. +- Added MoPub mediation support package. +- Updated AppLovin Unity package to v1.2.1. +- Updated AdColony Unity package to v1.0.1. +- Updated myTarget Unity package to v2.0.0. + +Built and tested with: +- Google Play services 12.0.1 +- Google Mobile Ads iOS SDK 7.30.0 +- Unity Jar Resolver 1.2.64.0 + +************** +Version 3.12.0 +************** + +Plugin: +- Added `setUserId` API to rewarded video ads to identify users in +server-to-server reward callbacks. +- Removed functionality that forced ad events to be invoked on the +main thread. + +Mediation packages: +- Updated maio Unity package to v1.0.1. + +Built and tested with: +- Google Play services 11.8.0 +- Google Mobile Ads iOS SDK 7.29.0 +- Unity Jar Resolver 1.2.61.0 + +************** +Version 3.11.1 +************** + +Plugin: +- Fixed issue where calling GetWidthInPixels() or GetHeightInPixels() resulted +in a null pointer exception. + +Mediation packages: +- Added Facebook mediation support package. + +Built and tested with: +- Google Play services 11.8.0 +- Google Mobile Ads iOS SDK 7.28.0 +- Unity Jar Resolver 1.2.61.0 + +************** +Version 3.11.0 +************** + +Plugin: +- Updated Android ad events to be invoked on the main thread. +- Added `MobileAds.SetiOSAppPauseOnBackground()` method to pause iOS apps when +displaying full screen ads. +- Fixed issue were banners repositioned incorrectly following an orientation +change. + +Mediation packages: +- Added maio mediation support package. +- Added nend mediation support package. + +Built and tested with: +- Google Play services 11.8.0 +- Google Mobile Ads iOS SDK 7.27.0 +- Unity Jar Resolver 1.2.61.0 + +************** +Version 3.10.0 +************** + +Plugin: +- Updated Smart Banner positioning to render within safe area on iOS 11. +- Added API to return height and width of BannerView in pixels. +- Added SetPosition method to reposition banner ads. +- Updated AppLovin Unity mediation package to support AppLovin initialization +integration. + +Mediation packages: +- Added InMobi mediation support package. +- Added Tapjoy mediation support package. +- Added Unity Ads mediation support package. +- Added myTarget mediation support package. + +Built and tested with: +- Google Play services 11.6.2 +- Google Mobile Ads iOS SDK 7.27.0 +- Unity Jar Resolver 1.2.59.0 + +************* +Version 3.9.0 +************* + +Plugin: +- Implemented workaround for issue where ad views are rendered in incorrect +position. +- Resolved compatibility issues with Gradle 4. +- Resolved comnpatilbity issues with older versions of Xcode. + +Mediation packages: +- Added API for video ad volume control. +- Added AdColony mediation support package. +- Added AppLovin mediation support package. + +Built and tested with: +- Google Play services 11.6.0 +- Google Mobile Ads iOS SDK 7.25.0 +- Unity Jar Resolver 1.2.59.0 + +************* +Version 3.8.0 +************* + +- Added support for Vungle mediation extras. +- Updated ad views to render within safe area on iOS 11 when using predefined +AdPosition constants. +- Added MediationAdapterClassName() method to all ad formats. +- Fixed issue where ad views are always rendered on the top of the screen for +certain devices. + +Built and tested with: +- Google Play services 11.4.0 +- Google Mobile Ads iOS SDK 7.24.1 +- Unity Jar Resolver 1.2.59.0 + +************* +Version 3.7.1 +************* + +- Fix issue where banner and Native Express ads fail to show after being hidden. + +Built and tested with: +- Google Play services 11.4.0 +- Google Mobile Ads iOS SDK 7.24.0 +- Unity Jar Resolver 1.2.52.0 + +************* +Version 3.7.0 +************* + +- Updated dependency specification for JarResolver to use new XML format. +- Resolved JarResolver incompatibility issues when using Firebase Unity plugins. + +Built and tested with: +- Google Play services 11.2.0 +- Google Mobile Ads iOS SDK 7.23.0 +- Unity Jar Resolver 1.2.48.0 + +************* +Version 3.6.3 +************* + +- Fixed serving of live ads to iOS simulator when simulator set as test +device. +- Reverted addition of mediation sub-directories to Plugin folder. + +Built and tested with: +- Google Play services 11.0.4 +- Google Mobile Ads iOS SDK 7.21.0 +- Unity Jar Resolver 1.2.35.0 + +************* +Version 3.6.2 +************* + +- Add mediation sub-directories to Plugin folder. + +Built and tested with: +- Google Play services 11.0.4 +- Google Mobile Ads iOS SDK 7.21.0 +- Unity Jar Resolver 1.2.35.0 + +************* +Version 3.6.1 +************* + +- Updated Unity Jar Resolver. + +Built and tested with: +- Google Play services 11.0.0 +- Google Mobile Ads iOS SDK 7.21.0 +- Unity Jar Resolver 1.2.32.0 + +************* +Version 3.6.0 +************* + +- Added method to initialize the GMA SDK. +- Added FullWidth AdSize constant. +- Fixed incompatibility with Gradle build system. +- Updated iOS code to remove modular imports. + +Built and tested with: +- Google Play services 11.0.0 +- Google Mobile Ads iOS SDK 7.21.0 +- Unity Jar Resolver 1.2.31.0 + +************* +Version 3.5.0 +************* +- Fix ad views losing visibility after an activity change for certain devices +(eg. Huaweai devices). + +Built and tested with: +- Google Play services 10.2.4 +- Google Mobile Ads iOS SDK 7.20.0 +- Unity Jar Resolver 1.2.20.0 + +************* +Version 3.4.0 +************* +- Fix native express and banner ad behavior where initializing and +hidden ads create unclickable region. + +Built and tested with: +- Google Play services 10.2.1 +- Google Mobile Ads iOS SDK 7.19.0 +- Unity Jar Resolver 1.2.14.0 + +************* +Version 3.3.0 +************* +- Removed support for in-app purchases. +- Fix positioning of ads in sticky-immersive mode. +- Fix issue were ads larger than 320dp could not be rendered. +- Fix incorrect positioning of ads in iOS for ad position BOTTOM. +- Add rewarded video test ad units to HelloWorld sample app. +- Suppress warnings for unused placeholder ad events. + +Built and tested with: +- Google Play services 10.2.0 +- Google Mobile Ads iOS SDK 7.18.0 +- Unity Jar Resolver 1.2.12.0 + +************* +Version 3.2.0 +************* +- Banner ads and native express ads display correctly on Unity 5.6. +- Add ability to specify x, y location of ad views. + +Built and tested with: +- Google Play services 10.0.1 +- Google Mobile Ads iOS SDK 7.16.0 +- Unity Jar Resolver 1.2.9.0 + +************* +Version 3.1.3 +************* +- Fix incorrect invocation of events on ads failing to load. + +Built and tested with: +- Google Play services 10.0.0 +- Google Mobile Ads iOS SDK 7.15.0 +- Unity Jar Resolver 1.2.6.0 + +************* +Version 3.1.2 +************* +- Fix NPE when ad events are not hooked up. + +Built and tested with: +- Google Play services 9.8.0 +- Google Mobile Ads iOS SDK 7.13.0 +- Unity Jar Resolver 1.2.2.0 + +************* +Version 3.1.1 +************* +- Remove dependency on Android Support Library and update GMA iOS SDK +version in `AdMobDependencies.cs`. + +Built and tested with: +- Google Play services 9.6.1 +- Google Mobile Ads iOS SDK 7.13.0 +- Unity Jar Resolver 1.2.2.0 + +************* +Version 3.1.0 +************* +- Integrate plugin with play-services-resolver-1.2.1.0. +- Removal of CocoaPods integration. + +Built and tested with: +- Google Play services 9.6.0 +- Google Mobile Ads iOS SDK 7.12.0 +- Unity Jar Resolver 1.2.1.0 + +************* +Version 3.0.7 +************* +- Fix crash within OnAdLoaded ad event for rewarded video ads on iOS. + +Built and tested with: +- Google Play services 9.4.0 +- Google Mobile Ads iOS SDK 7.11.0 +- Unity Jar Resolver 1.2 + +************* +Version 3.0.6 +************* +- Add support for Native Ads express. +- Fix compatibility issues with Android IL2CPP compilation. +- Fix memory leak of C# client objects + +Built and tested with: +- Google Play services 9.4.0 +- Google Mobile Ads iOS SDK 7.10.1 +- Unity Jar Resolver 1.2 + +************* +Version 3.0.5 +************* +- Remove use of JSONUtility. + +Built and tested with: +- Google Play services 9.2.0 +- Google Mobile Ads iOS SDK 7.8.1 +- Unity Jar Resolver 1.2 + +************* +Version 3.0.4 +************* +- Fix Podfile compatibility with CocoaPods 1.0.0. +- Add support for DFP custom native ad formats. + +Built and tested with: +- Google Play services 9.0.0 +- Google Mobile Ads iOS SDK 7.8.1 +- Unity Jar Resolver 1.2 + +************* +Version 3.0.3 +************* +- Restrict simultaneous rewarded video requests on Android. + +Built and tested with: +- Google Play services 8.4.0 +- Google Mobile Ads iOS SDK 7.7.0 + +************* +Version 3.0.2 +************* +- Fix compatibility issues with Google Mobile Ads iOS SDK 7.7.0 + +Built and tested with: +- Google Play services 8.4.0 +- Google Mobile Ads iOS SDK 7.7.0 + +************* +Version 3.0.1 +************* +- Update preprocessor directives for iOS post build setup +- Add request agent to all ad requests from plugin + +Built and tested with: +- Google Play services 8.4.0 +- Google Mobile Ads iOS SDK 7.6.0 + +************* +Version 3.0.0 +************* +- Add support for Custom In-App purchase flow on Android +- Add CocoaPods integration and automated build settings for iOS projects +- Use JarResolver plugin to resolve Google Play services client dependencies +- Ad events for banners and interstitials refactored with new names + +Built and tested with: +- Google Play services 8.4.0 +- Google Mobile Ads iOS SDK 7.6.0 + +************* +Version 2.3.1 +************* +- Move IInAppBillingService into its own JAR + +************* +Version 2.3.0 +************* +- Add support for In-App Purchase house ads on Android + +************* +Version 2.2.1 +************* +- Fix for Android manifest merge issues on Unity 4.x +- Fix for TouchCount issue on Unity 5.0 + +*********** +Version 2.2 +*********** +- Support for Unity 5.0 & ARC +- Additional Banner positions +- iOS Ads SDK 7.0.0 compatibility + +*********** +Version 2.1 +*********** +- Support for Interstitial Ads +- Ad events use EventHandlers + +*********** +Version 2.0 +*********** +- A single package with cross platform (Android/iOS) support +- Mock ad calls when running inside Unity editor +- Support for Banner Ads +- Custom banner sizes +- Banner ad events listeners +- AdRequest targeting methods +- A sample project to demonstrate plugin integration + +*********** +Version 1.2 +*********** +- Initial Android version with Google Play services support +- Support for Banner Ads only + +*********** +Version 1.1 +*********** +- Initial iOS only version +- Support for Banner Ads only + +*********** +Version 1.0 +*********** +- Initial version for Android (using now deprecated legacy Android SDK) diff --git a/Assets/GoogleMobileAds/CHANGELOG.md.meta b/Assets/GoogleMobileAds/CHANGELOG.md.meta new file mode 100644 index 0000000..f4e5d7f --- /dev/null +++ b/Assets/GoogleMobileAds/CHANGELOG.md.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 161c4904cd2045a1bf046453a58a9d7b +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/CHANGELOG.md +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor.meta b/Assets/GoogleMobileAds/Editor.meta new file mode 100644 index 0000000..dd81e72 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ad2c7d42170b57d41bbce607405135c5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/AndroidBuildPreProcessor.cs b/Assets/GoogleMobileAds/Editor/AndroidBuildPreProcessor.cs new file mode 100644 index 0000000..17c58cd --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/AndroidBuildPreProcessor.cs @@ -0,0 +1,191 @@ +#if UNITY_ANDROID +#if UNITY_2022 || UNITY_2021_3_58 || UNITY_2021_3_57 || UNITY_2021_3_56 || UNITY_2021_3_55 || UNITY_2021_3_54 || UNITY_2021_3_53 || UNITY_2021_3_52 || UNITY_2021_3_51 || UNITY_2021_3_50 || UNITY_2021_3_49 || UNITY_2021_3_48 || UNITY_2021_3_47 || UNITY_2021_3_46 || UNITY_2021_3_45 || UNITY_2021_3_44 || UNITY_2021_3_43 || UNITY_2021_3_42 || UNITY_2021_3_41 +// 2021.3.41f1+ Gradle version 7.5.1+ +// https://docs.unity3d.com/2021.3/Documentation/Manual/android-gradle-overview.html +#define ANDROID_GRADLE_BUILD_JETIFIER_ENTRY_ENABLED +#endif + +#if UNITY_6000_0_OR_NEWER || UNITY_2023 || ANDROID_GRADLE_BUILD_JETIFIER_ENTRY_ENABLED +#define ANDROID_GRADLE_BUILD_PRE_PROCESSOR_ENABLED +#endif + +using System; +using UnityEngine; +using UnityEditor; +using System.IO; +using GooglePlayServices; +using UnityEditor.Build; +using UnityEditor.Build.Reporting; + +namespace GoogleMobileAds.Editor +{ + /// + /// This script will verify and configure your Android build settings to be compatible + /// with the Google Mobile Ads SDK. This includes: + /// - Verify the Android Google Mobile Ads app ID is set. + /// - Throw an exception if the Android Google Mobile Ads app ID is not set. + /// - Set minimum API level to 23 (the target API level may be automatically set, we should not + /// hardcode it). + /// - Enable Custom Main Gradle Template. + /// - Update Custom Main Gradle Template with dependencies using the Play Services Resolver. + /// - Enable Custom Gradle Properties Template. + /// - Update Custom Gradle Properties Template with the Jetifier Ignorelist. + /// + public class AndroidBuildPreProcessor : IPreprocessBuildWithReport + { + const int MinimumAPILevel = 23; + const string CustomGradlePropertiesTemplatesFileName = "gradleTemplate.properties"; + const string CustomMainGradleTemplateFileName = "mainTemplate.gradle"; + const string JetifierEntry = + "android.jetifier.ignorelist=annotation-experimental-1.4.0.aar"; + + // Set the callback order to be before EDM4U. + // https://github.com/googlesamples/unity-jar-resolver/blob/master/source/AndroidResolver/src/PlayServicesPreBuild.cs#L39 + public int callbackOrder { get { return -1; } } + + public void OnPreprocessBuild(BuildReport report) + { + if(!GoogleMobileAdsSettings.LoadInstance().EnableGradleBuildPreProcessor) + { + return; + } + // For more details see, https://developers.google.com/admob/unity/android +#if ANDROID_GRADLE_BUILD_PRE_PROCESSOR_ENABLED + ApplyBuildSettings(report); +#endif + } + + private void ApplyBuildSettings(BuildReport report) + { + Debug.Log("Running Android Gradle Build Pre-Processor."); + + // Set Minimum Api Level. + if (PlayerSettings.Android.minSdkVersion < (AndroidSdkVersions)MinimumAPILevel) + { + PlayerSettings.Android.minSdkVersion = (AndroidSdkVersions)MinimumAPILevel; + Debug.Log($"Set minimum API Level to: {MinimumAPILevel}."); + } + else + { + Debug.Log($"Verified Minimum API Level is >= {MinimumAPILevel}."); + } + + // Create Assets/Plugins folder. + if (!AssetDatabase.IsValidFolder(Path.Combine("Assets", "Plugins"))) + { + AssetDatabase.CreateFolder("Assets", "Plugins"); + AssetDatabase.Refresh(); + } + + // Create Assets/Plugins/Android folder. + if (!AssetDatabase.IsValidFolder(Path.Combine("Assets", "Plugins", "Android"))) + { + AssetDatabase.CreateFolder(Path.Combine("Assets", "Plugins"), "Android"); + AssetDatabase.Refresh(); + } + + // Ensure Custom Main Gradle Template. + EnsureGradleFileExists(CustomMainGradleTemplateFileName); + + // Ensure Custom Gradle Properties Templates. + EnsureGradleFileExists(CustomGradlePropertiesTemplatesFileName); + + #if ANDROID_GRADLE_BUILD_JETIFIER_ENTRY_ENABLED + string customGradlePropertiesTemplatesFilePath = Path.Combine( + Application.dataPath, + "Plugins", "Android", + CustomGradlePropertiesTemplatesFileName); + if (File.Exists(customGradlePropertiesTemplatesFilePath)) + { + var gradlePropertiesFileContent = + File.ReadAllText(customGradlePropertiesTemplatesFilePath); + if (!gradlePropertiesFileContent.Contains(JetifierEntry)) + { + File.AppendAllText( + customGradlePropertiesTemplatesFilePath, + Environment.NewLine + JetifierEntry); + Debug.Log($"Added Jetifier Entry."); + } + else + { + Debug.Log($"Verified Jetifier Entry exists."); + } + } + else + { + Debug.LogError("Failed to add Jetifier Entry."); + } + #endif + + Debug.Log("Resolving Android Gradle dependencies."); + PlayServicesResolver.ResolveSync(true); + Debug.Log("Android Build Pre-Processor finished."); + } + + /// + /// Ensures that the given Gradle file exists. + /// + /// name of the given Gradle file. + private void EnsureGradleFileExists(string fileName) + { + bool foundTargetFile = false; + bool foundDisabledFile = false; + + // Check for target file. + string targetPath = Path.Combine(Application.dataPath, "Plugins", "Android", fileName); + if (File.Exists(targetPath)) + { + foundTargetFile = true; + } + + // Check for the ".DISABLED" file. + string disabledPath = Path.Combine(Application.dataPath, "Plugins", "Android", + $"{fileName}.DISABLED"); + if (File.Exists(disabledPath)) + { + foundDisabledFile = true; + } + + // If DISABLED and target exist, delete DISABLED. + if (foundTargetFile && foundDisabledFile) + { + File.Delete(disabledPath); + Debug.Log($"Removed disabled {fileName}."); + return; + } + // If DISABLED exists, move it to target. + if (foundDisabledFile) + { + File.Move(disabledPath, targetPath); + AssetDatabase.Refresh(); + Debug.Log($"Enabled {fileName}."); + return; + } + // If target exists, return true. + if (foundTargetFile) + { + Debug.Log($"Verified {fileName}."); + return; + } + + // If target does not exist, create it from source. + var unityGradleTemplateDirectory = Path.Combine( + PlayServicesResolver.AndroidPlaybackEngineDirectory, + "Tools", + "GradleTemplates"); + string sourceFileName = Path.Combine(unityGradleTemplateDirectory, fileName); + if (!File.Exists(sourceFileName)) + { + throw new BuildFailedException( + "Android Build Pre-Processor failed. "+ + $"Unable to find source {sourceFileName}. Is your file system read-only?" + + "If this issue persists, contact Google Mobile Ads Support "+ + "at https://developers.google.com/admob/support"); + } + File.Copy(sourceFileName, targetPath); + AssetDatabase.Refresh(); + Debug.Log($"Created {fileName}."); + } + } +} +#endif diff --git a/Assets/GoogleMobileAds/Editor/AndroidBuildPreProcessor.cs.meta b/Assets/GoogleMobileAds/Editor/AndroidBuildPreProcessor.cs.meta new file mode 100644 index 0000000..61b58c5 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/AndroidBuildPreProcessor.cs.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c0080e86890c24abba53b3f4d2daf6db +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/AndroidBuildPreProcessor.cs +timeCreated: 1480838400 diff --git a/Assets/GoogleMobileAds/Editor/BuildPreProcessor.cs b/Assets/GoogleMobileAds/Editor/BuildPreProcessor.cs new file mode 100644 index 0000000..54ac86e --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/BuildPreProcessor.cs @@ -0,0 +1,55 @@ +using System; +using UnityEngine; +using UnityEditor; +using System.IO; +using GooglePlayServices; +using UnityEditor.Build; +using UnityEditor.Build.Reporting; + +namespace GoogleMobileAds.Editor +{ + /// + /// Pre-processor that performs common setup tasks for all platforms before a build. + /// + public class BuildPreProcessor : IPreprocessBuildWithReport + { + // Set the callback order to be before EDM4U. + // https://github.com/googlesamples/unity-jar-resolver/blob/master/source/AndroidResolver/src/PlayServicesPreBuild.cs#L39 + public int callbackOrder { get { return -1; } } + + private readonly static string _linkXmlAssetsPath = + Path.Combine(Application.dataPath, "GoogleMobileAds", "link.xml"); + + public void OnPreprocessBuild(BuildReport report) + { + // Unity's managed code stripping process does not inherently process `link.xml` files + // in UPM packages. This pre-processor copies the `link.xml` file from the UPM package + // to the Unity project's `Assets/GoogleMobileAds` directory if it does not exist. + if (!File.Exists(_linkXmlAssetsPath)) + { + CopyLinkXml(); + } + } + + private static void CopyLinkXml() + { + if (!AssetDatabase.IsValidFolder(Path.Combine("Assets", "GoogleMobileAds"))) + { + AssetDatabase.CreateFolder("Assets", "GoogleMobileAds"); + } + var pathUtils = ScriptableObject.CreateInstance(); + if (pathUtils.IsPackageRootPath()) + { + string parentDirectoryPath = pathUtils.GetParentDirectoryAssetPath(); + string linkXmlPackagePath = Path.Combine(parentDirectoryPath, "link.xml"); + if(String.IsNullOrEmpty(linkXmlPackagePath)) + { + Debug.LogWarning("link.xml not found in the package."); + return; + } + AssetDatabase.CopyAsset(linkXmlPackagePath, _linkXmlAssetsPath); + } + AssetDatabase.Refresh(); + } + } +} diff --git a/Assets/GoogleMobileAds/Editor/BuildPreProcessor.cs.meta b/Assets/GoogleMobileAds/Editor/BuildPreProcessor.cs.meta new file mode 100644 index 0000000..159958b --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/BuildPreProcessor.cs.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: 79760efe9b6bb4736aa4ffd869e2ed0c +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/BuildPreProcessor.cs +timeCreated: 1480838400 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: + instanceID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/EditorLocalization.cs b/Assets/GoogleMobileAds/Editor/EditorLocalization.cs new file mode 100644 index 0000000..d3c6d29 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/EditorLocalization.cs @@ -0,0 +1,172 @@ +using System; +using System.Text.RegularExpressions; +using System.Collections.Generic; +using System.IO; +using UnityEngine; + +namespace GoogleMobileAds.Editor +{ + public class EditorLocalization + { + private const string LOCALIZATION_DATA_JSON_RELATIVE_PATH = "GoogleMobileAds/Editor"; + private const string LOCALIZATION_DATA_JSON_FILENAME = + "gma_settings_editor_localization_data.json"; + private const string LOCALIZATIONS_JSON_KEY = "LocalizationsByKey"; + private const string LOCALIZATION_KEY_PREFIX = "KEY_"; + + private readonly Lazy _localizationData = + new Lazy(() => InitLocalizationDataOrThrow()); + private EditorLocalizationData GetLocalizationData() => _localizationData.Value; + + /** + * Gets the default language for the settings editor. + * We assume the default locale used belong to the list of supported cultures + * (https://www.csharp-examples.net/culture-names/), and that each key has a default + * localization provided. + */ + public string GetDefaultLanguage() + { + return "en"; // English + } + + /** + * Checks that a localization key exists. + */ + public bool HasKey(string key) + { + return GetLocalizationData().LocalizationsByKey.ContainsKey(key); + } + + /** + * Localizes a resource key based on a provided user language. + * Returns the key name if the key could not be localized. + */ + public string ForKey(string key) + { + key = key.ToUpper(); + // Accept both key syntaxes. + if (key.StartsWith(LOCALIZATION_KEY_PREFIX)) + key = key.Replace(LOCALIZATION_KEY_PREFIX, ""); + + if (GetLocalizationData().LocalizationsByKey.TryGetValue(key, + out Dictionary localizations)) + { + // Key was found. Try to localize the key with the user language (e.g., "en" or "fr"). + // Else, use the default (fallback) language, if the localization key is missing for + // the chosen language (or no language was selected). + // The region is omitted purposely as we don't currently require this level of details. + string userLanguage = GoogleMobileAdsSettings.LoadInstance().UserLanguage; + if (localizations == null) + { + return null; + } + bool userLanguageExists = localizations.TryGetValue(userLanguage, + out string userLocalization); + bool userLocalizationIsValid = userLanguageExists && + !string.IsNullOrEmpty(userLocalization); + return userLocalizationIsValid ? userLocalization: localizations[GetDefaultLanguage()]; + } + + // Error, key not found, no localization to return so let's fallback to the key name + // to provide some sort of indication in the UI. + Debug.LogError($"Localization key not found: {key}."); + return key; + } + + /** + * Deserializes the localization data, encoded in json. + * Returns the json deserialized to a EditorLocalizationData class instance. + * Throws an ArgumentException if the json file cannot be deserialized. + */ + private static EditorLocalizationData InitLocalizationDataOrThrow() + { + string localizationDataPath = + Path.Combine(Application.dataPath, LOCALIZATION_DATA_JSON_RELATIVE_PATH, + LOCALIZATION_DATA_JSON_FILENAME); + // Handle importing the localization data file via Unity Package Manager. + var pathUtils = ScriptableObject.CreateInstance(); + if (pathUtils.IsPackageRootPath()) + { + localizationDataPath = + Path.Combine(pathUtils.GetDirectoryAssetPath(), LOCALIZATION_DATA_JSON_FILENAME); + } + try + { + string json = File.ReadAllText(localizationDataPath); + var data = DeserializeFromJson(json); + if (data.LocalizationsByKey == null) + { + throw new ArgumentNullException("LocalizationsByKey"); + } + return data; + } + catch (Exception) + { + throw new ArgumentException( + $"Exception thrown while retrieving localization data from {localizationDataPath}:" + + " {ex:full}"); + } + } + + // We would like to handle the deserialization of the JSON file referenced above but without + // leveraging any JSON library to avoid adding any dependency. + private static EditorLocalizationData DeserializeFromJson(string json) + { + var data = new EditorLocalizationData(); + data.LocalizationsByKey = new Dictionary>(); + // We match every field in the JSON. The order in which those matches are found is used to + // deserialize the localization values. + var regex = new Regex(@"""(?[^""]+)"""); + var matches = regex.Matches(json); + var currentKeys = new List(); + var valueProcessed = false; + foreach (Match match in matches) + { + var val = match.Groups["val"].Value; + if (val.Equals(LOCALIZATIONS_JSON_KEY)) + { + currentKeys.Clear(); + continue; + } + + if (valueProcessed) + { + valueProcessed = false; + if (val.StartsWith(LOCALIZATION_KEY_PREFIX)) + { + // Start a new level. + currentKeys.Clear(); + } + else if (currentKeys.Count > 0) + { + // Go up one level by removing the latest key. + currentKeys.RemoveAt(currentKeys.Count - 1); + } + } + + // The localization values are 2 levels deep. + if (currentKeys.Count < 2) + { + currentKeys.Add(val); + continue; + } + + ProcessValue(data, currentKeys, val); + valueProcessed = true; + } + + return data; + } + + private static void ProcessValue(EditorLocalizationData data, List currentKeys, + string val) + { + if (currentKeys.Count != 2) + return; + currentKeys[0] = currentKeys[0].Replace(LOCALIZATION_KEY_PREFIX, ""); + if (!data.LocalizationsByKey.ContainsKey(currentKeys[0])) + data.LocalizationsByKey[currentKeys[0]] = new Dictionary(); + data.LocalizationsByKey[currentKeys[0]][currentKeys[1]] = val; + } + } +} diff --git a/Assets/GoogleMobileAds/Editor/EditorLocalization.cs.meta b/Assets/GoogleMobileAds/Editor/EditorLocalization.cs.meta new file mode 100644 index 0000000..722729c --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/EditorLocalization.cs.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: 1a843cb3b999a40ea9babd1f69e1232f +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/EditorLocalization.cs +timeCreated: 1480838400 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: + instanceID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/EditorLocalizationData.cs b/Assets/GoogleMobileAds/Editor/EditorLocalizationData.cs new file mode 100644 index 0000000..8ff2037 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/EditorLocalizationData.cs @@ -0,0 +1,11 @@ +using System.Collections.Generic; + +namespace GoogleMobileAds.Editor +{ + public class EditorLocalizationData + { + // First key: the localization key. Second key: the language to lookup. Value: the resulting + // localization. + public Dictionary> LocalizationsByKey { get; set; } + } +} diff --git a/Assets/GoogleMobileAds/Editor/EditorLocalizationData.cs.meta b/Assets/GoogleMobileAds/Editor/EditorLocalizationData.cs.meta new file mode 100644 index 0000000..87ecf24 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/EditorLocalizationData.cs.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: e7aaa882f59b8405d97e3042283cc034 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/EditorLocalizationData.cs +timeCreated: 1480838400 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: + instanceID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/EditorPathUtils.cs b/Assets/GoogleMobileAds/Editor/EditorPathUtils.cs new file mode 100644 index 0000000..a24498c --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/EditorPathUtils.cs @@ -0,0 +1,57 @@ +// Copyright (C) 2023 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System.IO; +using UnityEditor; +using UnityEngine; + +/* + * EditorPathUtils class finds and processes the AssetPath for + * EditorPathUtils.cs within unity asset database. + */ +public class EditorPathUtils : ScriptableObject +{ + /* + * Returns the asset path of EditorPathUtils.cs + */ + private string GetFilePath() + { + return AssetDatabase.GetAssetPath(MonoScript.FromScriptableObject(this)); + } + + /* + * Returns the asset directory path of EditorPathUtils.cs + */ + public string GetDirectoryAssetPath() + { + return Path.GetDirectoryName(GetFilePath()); + } + + /* + * Returns the parent asset directory path of EditorPathUtils.cs + */ + public string GetParentDirectoryAssetPath() + { + return Path.GetDirectoryName(GetDirectoryAssetPath()); + } + + /* + * Returns true if GMA import is done via unity package manager, + * false otherwise. + */ + public bool IsPackageRootPath() + { + return GetFilePath().StartsWith("Packages"); + } +} diff --git a/Assets/GoogleMobileAds/Editor/EditorPathUtils.cs.meta b/Assets/GoogleMobileAds/Editor/EditorPathUtils.cs.meta new file mode 100644 index 0000000..3a26ae7 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/EditorPathUtils.cs.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: e1f0097ebfa3e416197e298c9135b6de +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/EditorPathUtils.cs +timeCreated: 1480838400 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: + instanceID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/GoogleMobileAds.Editor.asmdef b/Assets/GoogleMobileAds/Editor/GoogleMobileAds.Editor.asmdef new file mode 100644 index 0000000..9cd84ca --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GoogleMobileAds.Editor.asmdef @@ -0,0 +1,20 @@ +{ + "name": "GoogleMobileAds.Editor", + "references": [ + "GoogleMobileAds", + "GoogleMobileAds.Core", + "GoogleMobileAds.Placement", + "GoogleMobileAds.Placement.Core" + ], + "includePlatforms": [ + "Editor" + ], + "excludePlatforms": [], + "allowUnsafeCode": false, + "overrideReferences": false, + "precompiledReferences": [], + "autoReferenced": true, + "defineConstraints": [], + "versionDefines": [], + "noEngineReferences": false +} \ No newline at end of file diff --git a/Assets/GoogleMobileAds/Editor/GoogleMobileAds.Editor.asmdef.meta b/Assets/GoogleMobileAds/Editor/GoogleMobileAds.Editor.asmdef.meta new file mode 100644 index 0000000..6e38880 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GoogleMobileAds.Editor.asmdef.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cbb42e4cfd9484f52972c8f05e1c3252 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/GoogleMobileAds.Editor.asmdef +timeCreated: 1480838400 +AssemblyDefinitionImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/GoogleMobileAdsDependencies.xml b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsDependencies.xml new file mode 100644 index 0000000..0a297cb --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsDependencies.xml @@ -0,0 +1,27 @@ + + + + + https://maven.aliyun.com/repository/google + + + + + https://maven.aliyun.com/repository/google + + + + + https://maven.aliyun.com/repository/google + + + + + + + + https://github.com/CocoaPods/Specs + + + + diff --git a/Assets/GoogleMobileAds/Editor/GoogleMobileAdsDependencies.xml.meta b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsDependencies.xml.meta new file mode 100644 index 0000000..6c43d9d --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsDependencies.xml.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 2c9357ed17521401bb7b6733145ebcd9 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/GoogleMobileAdsDependencies.xml +timeCreated: 1504855478 +licenseType: Pro +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSKAdNetworkItems.xml b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSKAdNetworkItems.xml new file mode 100644 index 0000000..bbc9a89 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSKAdNetworkItems.xml @@ -0,0 +1,55 @@ + + + cstr6suwn9.skadnetwork + + + 4fzdc2evr5.skadnetwork + 2fnua5tdw4.skadnetwork + ydx93a7ass.skadnetwork + p78axxw29g.skadnetwork + v72qych5uu.skadnetwork + ludvb6z3bs.skadnetwork + cp8zw746q7.skadnetwork + 3sh42y64q3.skadnetwork + c6k4g5qg8m.skadnetwork + s39g8k73mm.skadnetwork + 3qy4746246.skadnetwork + f38h382jlk.skadnetwork + hs6bdukanm.skadnetwork + mlmmfzh3r3.skadnetwork + v4nxqhlyqp.skadnetwork + wzmmz9fp6w.skadnetwork + su67r6k2v3.skadnetwork + yclnxrl5pm.skadnetwork + t38b2kh725.skadnetwork + 7ug5zh24hu.skadnetwork + gta9lk7p23.skadnetwork + vutu7akeur.skadnetwork + y5ghdn5j9k.skadnetwork + v9wttpbfk9.skadnetwork + n38lu8286q.skadnetwork + 47vhws6wlr.skadnetwork + kbd757ywx3.skadnetwork + 9t245vhmpl.skadnetwork + a2p9lx4jpn.skadnetwork + 22mmun2rn5.skadnetwork + 44jx6755aq.skadnetwork + k674qkevps.skadnetwork + 4468km3ulz.skadnetwork + 2u9pt9hc89.skadnetwork + 8s468mfl3y.skadnetwork + klf5c3l5u5.skadnetwork + ppxm28t8ap.skadnetwork + kbmxgpxpgc.skadnetwork + uw77j35x4d.skadnetwork + 578prtvx9j.skadnetwork + 4dzt52r2t5.skadnetwork + tl55sbb4fm.skadnetwork + c3frkrj4fj.skadnetwork + e5fvkxwrpn.skadnetwork + 8c4e2ghe7u.skadnetwork + 3rd42ekr43.skadnetwork + 97r2b46745.skadnetwork + 3qcr597p9d.skadnetwork + diff --git a/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSKAdNetworkItems.xml.meta b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSKAdNetworkItems.xml.meta new file mode 100644 index 0000000..5a672b9 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSKAdNetworkItems.xml.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: b18ecf64be00344e7b039c69e9af56bf +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/GoogleMobileAdsSKAdNetworkItems.xml +timeCreated: 1480838400 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettings.cs b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettings.cs new file mode 100644 index 0000000..3c96473 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettings.cs @@ -0,0 +1,115 @@ +using System; +using System.IO; +using UnityEditor; +using UnityEngine; + +namespace GoogleMobileAds.Editor +{ + internal class GoogleMobileAdsSettings : ScriptableObject + { + private const string MobileAdsSettingsResDir = "Assets/GoogleMobileAds/Resources"; + + private const string MobileAdsSettingsFile = "GoogleMobileAdsSettings"; + + private const string MobileAdsSettingsFileExtension = ".asset"; + + internal static GoogleMobileAdsSettings LoadInstance() + { + // Read from resources. + var instance = Resources.Load(MobileAdsSettingsFile); + + // Create instance if null. + if (instance == null) + { + Directory.CreateDirectory(MobileAdsSettingsResDir); + instance = ScriptableObject.CreateInstance(); + string assetPath = Path.Combine(MobileAdsSettingsResDir, + MobileAdsSettingsFile + MobileAdsSettingsFileExtension); + AssetDatabase.CreateAsset(instance, assetPath); + AssetDatabase.SaveAssets(); + } + + return instance; + } + + [SerializeField] + private string adMobAndroidAppId = string.Empty; + + [SerializeField] + private string adMobIOSAppId = string.Empty; + + [SerializeField] + private bool enableKotlinXCoroutinesPackagingOption = true; + + [SerializeField] + private bool enableGradleBuildPreProcessor = true; + + [SerializeField] + private bool disableOptimizeInitialization; + + [SerializeField] + private bool disableOptimizeAdLoading; + + [SerializeField] + private string userTrackingUsageDescription; + + [SerializeField] + private string userLanguage = "en"; + + public string GoogleMobileAdsAndroidAppId + { + get { return adMobAndroidAppId; } + + set { adMobAndroidAppId = value; } + } + + public bool EnableGradleBuildPreProcessor + { + get { return enableGradleBuildPreProcessor; } + + set { enableGradleBuildPreProcessor = value; } + } + + public bool EnableKotlinXCoroutinesPackagingOption + { + get { return enableKotlinXCoroutinesPackagingOption; } + + set { enableKotlinXCoroutinesPackagingOption = value; } + } + + public string GoogleMobileAdsIOSAppId + { + get { return adMobIOSAppId; } + + set { adMobIOSAppId = value; } + } + + public bool DisableOptimizeInitialization + { + get { return disableOptimizeInitialization; } + + set { disableOptimizeInitialization = value; } + } + + public bool DisableOptimizeAdLoading + { + get { return disableOptimizeAdLoading; } + + set { disableOptimizeAdLoading = value; } + } + + public string UserTrackingUsageDescription + { + get { return userTrackingUsageDescription; } + + set { userTrackingUsageDescription = value; } + } + + public string UserLanguage + { + get { return userLanguage; } + + set { userLanguage = value; } + } + } +} diff --git a/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettings.cs.meta b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettings.cs.meta new file mode 100644 index 0000000..21467db --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettings.cs.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: a187246822bbb47529482707f3e0eff8 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/GoogleMobileAdsSettings.cs +timeCreated: 1480838400 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: + instanceID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettingsEditor.cs b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettingsEditor.cs new file mode 100644 index 0000000..e747759 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettingsEditor.cs @@ -0,0 +1,164 @@ +#if UNITY_6000_0_OR_NEWER || UNITY_2023 || UNITY_2022 || UNITY_2021_3_55 || UNITY_2021_3_54 || UNITY_2021_3_53 || UNITY_2021_3_52 || UNITY_2021_3_51 || UNITY_2021_3_50 || UNITY_2021_3_49 || UNITY_2021_3_48 || UNITY_2021_3_47 || UNITY_2021_3_46 || UNITY_2021_3_45 || UNITY_2021_3_44 || UNITY_2021_3_43 || UNITY_2021_3_42 || UNITY_2021_3_41 +#define ANDROID_GRADLE_BUILD_PRE_PROCESSOR_ENABLED +#endif + +using System; +using UnityEditor; +using UnityEngine; + +namespace GoogleMobileAds.Editor +{ + [InitializeOnLoad] + [CustomEditor(typeof(GoogleMobileAdsSettings))] + public class GoogleMobileAdsSettingsEditor : UnityEditor.Editor + { + SerializedProperty _appIdAndroid; + SerializedProperty _appIdiOS; + SerializedProperty _enableGradleBuildPreProcessor; + SerializedProperty _enableKotlinXCoroutinesPackagingOption; + SerializedProperty _disableOptimizeInitialization; + SerializedProperty _disableOptimizeAdLoading; + SerializedProperty _userLanguage; + SerializedProperty _userTrackingUsageDescription; + + // Using an ordered list of languages is computationally expensive when trying to create an + // array out of them for purposes of showing a dropdown menu. Care should be taken to ensure + // these arrays are kept in sync. + string[] availableLanguages = new string[] { "English", "French"}; + string[] languageCodes = new string[] { "en", "fr" }; + int selectedIndex = 0; + + [MenuItem("Assets/Google Mobile Ads/Settings...")] + public static void OpenInspector() + { + Selection.activeObject = GoogleMobileAdsSettings.LoadInstance(); + } + + public void OnEnable() + { + _appIdAndroid = serializedObject.FindProperty("adMobAndroidAppId"); + _appIdiOS = serializedObject.FindProperty("adMobIOSAppId"); + _enableGradleBuildPreProcessor = + serializedObject.FindProperty("enableGradleBuildPreProcessor"); + _enableKotlinXCoroutinesPackagingOption = + serializedObject.FindProperty("enableKotlinXCoroutinesPackagingOption"); + _disableOptimizeInitialization = serializedObject.FindProperty("disableOptimizeInitialization"); + _disableOptimizeAdLoading = serializedObject.FindProperty("disableOptimizeAdLoading"); + _userLanguage = serializedObject.FindProperty("userLanguage"); + _userTrackingUsageDescription = + serializedObject.FindProperty("userTrackingUsageDescription"); + + selectedIndex = Array.IndexOf(languageCodes, _userLanguage.stringValue); + selectedIndex = selectedIndex >= 0 ? selectedIndex : 0; + } + + public override void OnInspectorGUI() + { + // Make sure the Settings object has all recent changes. + serializedObject.Update(); + + var settings = (GoogleMobileAdsSettings)target; + + if (settings == null) + { + UnityEngine.Debug.LogError("GoogleMobileAdsSettings is null."); + return; + } + + EditorLocalization localization = new EditorLocalization(); + EditorGUI.BeginChangeCheck(); + selectedIndex = EditorGUILayout.Popup("Language", selectedIndex, availableLanguages); + if (EditorGUI.EndChangeCheck()) + { + _userLanguage.stringValue = languageCodes[selectedIndex]; + } + + EditorGUIUtility.labelWidth = 60.0f; + EditorGUILayout.LabelField(localization.ForKey("GMA_APP_ID_LABEL"), + EditorStyles.boldLabel); + EditorGUI.indentLevel++; + + EditorGUILayout.PropertyField(_appIdAndroid, new GUIContent("Android")); + + EditorGUILayout.PropertyField(_appIdiOS, new GUIContent("iOS")); + + EditorGUILayout.HelpBox(localization.ForKey("GMA_APP_ID_HELPBOX"), MessageType.Info); + + EditorGUI.indentLevel--; + EditorGUILayout.Separator(); + + EditorGUIUtility.labelWidth = 325.0f; + EditorGUILayout.LabelField(localization.ForKey("ANDROID_SETTINGS_LABEL"), + EditorStyles.boldLabel); + EditorGUI.indentLevel++; + + EditorGUI.BeginChangeCheck(); + +#if ANDROID_GRADLE_BUILD_PRE_PROCESSOR_ENABLED + EditorGUILayout.PropertyField( + _enableGradleBuildPreProcessor, + new GUIContent( + localization.ForKey("ENABLE_GRADLE_BUILD_PRE_PROCESSOR_SETTING"))); + + if (settings.EnableGradleBuildPreProcessor) + { + EditorGUILayout.HelpBox( + localization.ForKey("ENABLE_GRADLE_BUILD_PRE_PROCESSOR_HELPBOX"), + MessageType.Info); + } +#endif + + EditorGUILayout.PropertyField( + _enableKotlinXCoroutinesPackagingOption, + new GUIContent( + localization.ForKey("ENABLE_KOTLINX_COROUTINES_PACKAGING_OPTION_SETTING"))); + + if (settings.EnableKotlinXCoroutinesPackagingOption) + { + EditorGUILayout.HelpBox( + localization.ForKey("ENABLE_KOTLINX_COROUTINES_PACKAGING_OPTION_HELPBOX"), + MessageType.Info); + } + + + EditorGUILayout.PropertyField( + _disableOptimizeInitialization, + new GUIContent(localization.ForKey("DISABLE_OPTIMIZE_INITIALIZATION_SETTING"))); + if (settings.DisableOptimizeInitialization) + { + EditorGUILayout.HelpBox(localization.ForKey("DISABLE_OPTIMIZE_INITIALIZATION_HELPBOX"), + MessageType.Info); + } + + EditorGUILayout.PropertyField( + _disableOptimizeAdLoading, + new GUIContent(localization.ForKey("DISABLE_OPTIMIZE_AD_LOADING_SETTING"))); + + if (settings.DisableOptimizeAdLoading) + { + EditorGUILayout.HelpBox(localization.ForKey("DISABLE_OPTIMIZE_AD_LOADING_HELPBOX"), + MessageType.Info); + } + + EditorGUI.indentLevel--; + EditorGUILayout.Separator(); + + EditorGUIUtility.labelWidth = 300.0f; + EditorGUILayout.LabelField(localization.ForKey("UMP_SPECIFIC_SETTINGS_LABEL"), + EditorStyles.boldLabel); + EditorGUI.indentLevel++; + + EditorGUILayout.PropertyField( + _userTrackingUsageDescription, + new GUIContent(localization.ForKey("USER_TRACKING_USAGE_DESCRIPTION_SETTING"))); + + EditorGUILayout.HelpBox(localization.ForKey("USER_TRACKING_USAGE_DESCRIPTION_HELPBOX"), + MessageType.Info); + + EditorGUI.indentLevel--; + EditorGUILayout.Separator(); + + serializedObject.ApplyModifiedProperties(); + } + } +} diff --git a/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettingsEditor.cs.meta b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettingsEditor.cs.meta new file mode 100644 index 0000000..62c0507 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettingsEditor.cs.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: 8afb1338afbd34c4fac628cd6175c032 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/GoogleMobileAdsSettingsEditor.cs +timeCreated: 1480838400 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: + instanceID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/GoogleUmpDependencies.xml b/Assets/GoogleMobileAds/Editor/GoogleUmpDependencies.xml new file mode 100644 index 0000000..272f4f9 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GoogleUmpDependencies.xml @@ -0,0 +1,16 @@ + + + + + https://maven.aliyun.com/repository/google + + + + + + + https://github.com/CocoaPods/Specs + + + + diff --git a/Assets/GoogleMobileAds/Editor/GoogleUmpDependencies.xml.meta b/Assets/GoogleMobileAds/Editor/GoogleUmpDependencies.xml.meta new file mode 100644 index 0000000..5694d38 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GoogleUmpDependencies.xml.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: f7225ce7103aa4556994e2c2be08cd37 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/GoogleUmpDependencies.xml +timeCreated: 1480838400 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/GradleProcessor.cs b/Assets/GoogleMobileAds/Editor/GradleProcessor.cs new file mode 100644 index 0000000..84f0901 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GradleProcessor.cs @@ -0,0 +1,99 @@ +using System; +using System.IO; +using UnityEditor.Android; + +using GoogleMobileAds.Editor; + +public class GradleProcessor : IPostGenerateGradleAndroidProject +{ + public int callbackOrder { get { return 0; } } + + private const string GMA_PACKAGING_OPTIONS_LAUNCHER = + "apply from: '../unityLibrary/GoogleMobileAdsPlugin.androidlib/packaging_options.gradle'"; + + private const string GMA_PACKAGING_OPTIONS = + "apply from: 'GoogleMobileAdsPlugin.androidlib/packaging_options.gradle'"; + + private const string GMA_VALIDATE_GRADLE_DEPENDENCIES = + "gradle.projectsEvaluated { apply from: 'GoogleMobileAdsPlugin.androidlib/validate_dependencies.gradle' }"; + + public void OnPostGenerateGradleAndroidProject(string path) + { + var rootDirinfo = new DirectoryInfo(path); + var rootPath = rootDirinfo.Parent.FullName; + var gradleList = Directory.GetFiles(rootPath, "build.gradle", SearchOption.AllDirectories); + + var packagingOptionsLauncher = GMA_PACKAGING_OPTIONS_LAUNCHER; + var packagingOptionsUnityLibrary = GMA_PACKAGING_OPTIONS; + var validateGradleDependencies = GMA_VALIDATE_GRADLE_DEPENDENCIES; + + // Windows path requires '\\' +#if UNITY_EDITOR_WIN + packagingOptionsLauncher = packagingOptionsLauncher.Replace("/","\\\\"); + packagingOptionsUnityLibrary = packagingOptionsUnityLibrary.Replace("/","\\\\"); + validateGradleDependencies = validateGradleDependencies.Replace("/","\\\\"); +#endif + + foreach (var gradlepath in gradleList) + { + if (!gradlepath.Contains("unityLibrary/build.gradle") && + !gradlepath.Contains("launcher/build.gradle") && + !gradlepath.Contains("unityLibrary\\build.gradle") && + !gradlepath.Contains("launcher\\build.gradle")) + { + continue; + } + + var contents = File.ReadAllText(gradlepath); + // Delete existing packaging_options and then set it if enabled. + if (contents.Contains("packaging_options.gradle")) + { + contents = DeleteLineContainingSubstring(contents, "packaging_options.gradle"); + } + + if (!GoogleMobileAdsSettings.LoadInstance().EnableKotlinXCoroutinesPackagingOption) + { + File.WriteAllText(gradlepath, contents); + continue; + } + + if (gradlepath.Contains("unityLibrary/build.gradle") || gradlepath.Contains("unityLibrary\\build.gradle")) + { + contents += Environment.NewLine + packagingOptionsUnityLibrary; + } + else if (gradlepath.Contains("launcher/build.gradle") || gradlepath.Contains("launcher\\build.gradle")) + { + contents += Environment.NewLine + packagingOptionsLauncher; + } + File.WriteAllText(gradlepath, contents); + } + + // TODO (b/311555203) Use delete then write approach above to update this Gradle script too. + var unityLibraryGradle = Directory.GetFiles(rootPath, "unityLibrary/build.gradle", + SearchOption.TopDirectoryOnly); + + foreach (var gradlePath in unityLibraryGradle) + { + var contents = File.ReadAllText(gradlePath); + if (contents.Contains(validateGradleDependencies)) + { + contents = DeleteLineContainingSubstring(contents, validateGradleDependencies); + File.WriteAllText(gradlePath, contents); + } + } + } + + private string DeleteLineContainingSubstring(string file, string substring) + { + string newFile = ""; + var lines = file.Split(new[] { Environment.NewLine }, StringSplitOptions.None); + foreach (var line in lines) + { + if (!line.Contains(substring)) + { + newFile += line + Environment.NewLine; + } + } + return newFile; + } +} diff --git a/Assets/GoogleMobileAds/Editor/GradleProcessor.cs.meta b/Assets/GoogleMobileAds/Editor/GradleProcessor.cs.meta new file mode 100644 index 0000000..b3a3b5c --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/GradleProcessor.cs.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: ee0016d28899644a9bbcb67f438d41bd +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/GradleProcessor.cs +timeCreated: 1480838400 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: + instanceID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/ManifestProcessor.cs b/Assets/GoogleMobileAds/Editor/ManifestProcessor.cs new file mode 100644 index 0000000..be3d174 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/ManifestProcessor.cs @@ -0,0 +1,249 @@ +// Copyright (C) 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#if UNITY_ANDROID +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Xml.Linq; + +using UnityEditor; +using UnityEditor.Build; +#if UNITY_2018_1_OR_NEWER +using UnityEditor.Build.Reporting; +#endif +using UnityEngine; +using GoogleMobileAds.Editor; + +#if UNITY_2018_1_OR_NEWER +public class ManifestProcessor : IPreprocessBuildWithReport +#else +public class ManifestProcessor : IPreprocessBuild +#endif +{ + private const string MANIFEST_RELATIVE_PATH = + "Plugins/Android/GoogleMobileAdsPlugin.androidlib/AndroidManifest.xml"; + + private const string PROPERTIES_RELATIVE_PATH = + "Plugins/Android/GoogleMobileAdsPlugin.androidlib/project.properties"; + + private const string METADATA_APPLICATION_ID = + "com.google.android.gms.ads.APPLICATION_ID"; + + private const string METADATA_DELAY_APP_MEASUREMENT_INIT = + "com.google.android.gms.ads.DELAY_APP_MEASUREMENT_INIT"; + + private const string METADATA_OPTIMIZE_INITIALIZATION = + "com.google.android.gms.ads.flag.OPTIMIZE_INITIALIZATION"; + + private const string METADATA_OPTIMIZE_AD_LOADING = + "com.google.android.gms.ads.flag.OPTIMIZE_AD_LOADING"; + + // LINT.IfChange + private const string METADATA_UNITY_VERSION = "com.google.unity.ads.UNITY_VERSION"; + // LINT.ThenChange(//depot/google3/javatests/com/google/android/gmscore/integ/modules/admob/tests/robolectric/src/com/google/android/gms/ads/nonagon/signals/StaticDeviceSignalSourceTest.java) + + private XNamespace ns = "http://schemas.android.com/apk/res/android"; + + public int callbackOrder { get { return 0; } } + +#if UNITY_2018_1_OR_NEWER + public void OnPreprocessBuild(BuildReport report) +#else + public void OnPreprocessBuild(BuildTarget target, string path) +#endif + { + string manifestPath = Path.Combine(Application.dataPath, MANIFEST_RELATIVE_PATH); + string propertiesPath = Path.Combine(Application.dataPath, PROPERTIES_RELATIVE_PATH); + + /* + * Handle importing GMA via Unity Package Manager. + */ + EditorPathUtils pathUtils = + ScriptableObject.CreateInstance(); + if (pathUtils.IsPackageRootPath()) + { + // pathUtils.GetParentDirectoryAssetPath() returns "Packages/.../GoogleMobileAds" but + // Plugins is at the same level of GoogleMobileAds so we go up one directory before + // appending MANIFEST_RELATIVE_PATH. + string packagesPathPrefix = + Path.GetDirectoryName(pathUtils.GetParentDirectoryAssetPath()); + manifestPath = Path.Combine(packagesPathPrefix, MANIFEST_RELATIVE_PATH); + propertiesPath = Path.Combine(packagesPathPrefix, PROPERTIES_RELATIVE_PATH); + } + + if (AssetDatabase.IsValidFolder("Packages/com.google.ads.mobile")) + { + manifestPath = Path.Combine("Packages/com.google.ads.mobile", MANIFEST_RELATIVE_PATH); + } + + if (!File.Exists(manifestPath)) + { + manifestPath = Path.Combine(Path.GetDirectoryName(manifestPath), "src", "main", + "AndroidManifest.xml"); + } + + XDocument manifest = null; + try + { + manifest = XDocument.Load(manifestPath); + } + #pragma warning disable 0168 + catch (IOException e) + #pragma warning restore 0168 + { + StopBuildWithMessage("AndroidManifest.xml is missing. Try re-importing the plugin."); + } + + XElement elemManifest = manifest.Element("manifest"); + if (elemManifest == null) + { + StopBuildWithMessage("AndroidManifest.xml is not valid. Try re-importing the plugin."); + } + + XElement elemApplication = elemManifest.Element("application"); + if (elemApplication == null) + { + StopBuildWithMessage("AndroidManifest.xml is not valid. Try re-importing the plugin."); + } + + GoogleMobileAdsSettings instance = GoogleMobileAdsSettings.LoadInstance(); + string appId = instance.GoogleMobileAdsAndroidAppId.Trim(); + + if (appId.Length == 0) + { + StopBuildWithMessage( + "Android Google Mobile Ads app ID is empty. Please enter a valid app ID to run ads properly."); + } + + IEnumerable metas = elemApplication.Descendants() + .Where( elem => elem.Name.LocalName.Equals("meta-data")); + + SetMetadataElement(elemApplication, + metas, + METADATA_APPLICATION_ID, + appId); + + SetMetadataElement(elemApplication, + metas, + METADATA_OPTIMIZE_INITIALIZATION, + !instance.DisableOptimizeInitialization, + true); + + SetMetadataElement(elemApplication, + metas, + METADATA_OPTIMIZE_AD_LOADING, + !instance.DisableOptimizeAdLoading, + true); + + SetMetadataElement(elemApplication, + metas, + METADATA_UNITY_VERSION, + Application.unityVersion); + + elemManifest.Save(manifestPath); + } + + private XElement CreateMetaElement(string name, object value) + { + return new XElement("meta-data", + new XAttribute(ns + "name", name), new XAttribute(ns + "value", value)); + } + + private XElement GetMetaElement(IEnumerable metas, string metaName) + { + foreach (XElement elem in metas) + { + IEnumerable attrs = elem.Attributes(); + foreach (XAttribute attr in attrs) + { + if (attr.Name.Namespace.Equals(ns) + && attr.Name.LocalName.Equals("name") && attr.Value.Equals(metaName)) + { + return elem; + } + } + } + return null; + } + + /// + /// Utility for setting a metadata element + /// + /// application element + /// all metadata elements + /// name of the element to set + /// value to set + private void SetMetadataElement(XElement elemApplication, + IEnumerable metas, + string metadataName, + string metadataValue) + { + XElement element = GetMetaElement(metas, metadataName); + if (element == null) + { + elemApplication.Add(CreateMetaElement(metadataName, metadataValue)); + } + else + { + element.SetAttributeValue(ns + "value", metadataValue); + } + } + + /// + /// Utility for setting a metadata element + /// + /// application element + /// all metadata elements + /// name of the element to set + /// value to set + /// If metadataValue is default, node will be removed. + private void SetMetadataElement(XElement elemApplication, + IEnumerable metas, + string metadataName, + bool metadataValue, + bool defaultValue = false) + { + XElement element = GetMetaElement(metas, metadataName); + if (metadataValue != defaultValue) + { + if (element == null) + { + elemApplication.Add(CreateMetaElement(metadataName, metadataValue)); + } + else + { + element.SetAttributeValue(ns + "value", metadataValue); + } + } + else + { + if (element != null) + { + element.Remove(); + } + } + } + + private void StopBuildWithMessage(string message) + { + string prefix = "[GoogleMobileAds] "; + #if UNITY_2017_1_OR_NEWER + throw new BuildPlayerWindow.BuildMethodException(prefix + message); + #else + throw new OperationCanceledException(prefix + message); + #endif + } +} +#endif diff --git a/Assets/GoogleMobileAds/Editor/ManifestProcessor.cs.meta b/Assets/GoogleMobileAds/Editor/ManifestProcessor.cs.meta new file mode 100644 index 0000000..192e277 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/ManifestProcessor.cs.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: c9ee5d47594eb43a19e795c834fdc044 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/ManifestProcessor.cs +timeCreated: 1480838400 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: + instanceID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/PListProcessor.cs b/Assets/GoogleMobileAds/Editor/PListProcessor.cs new file mode 100644 index 0000000..3f71e8a --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/PListProcessor.cs @@ -0,0 +1,232 @@ +// Copyright (C) 2020 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#if UNITY_IPHONE || UNITY_IOS +using System; +using System.Collections.Generic; +using System.IO; +using System.Xml; + +using UnityEditor; +using UnityEditor.Callbacks; +using UnityEditor.iOS.Xcode; +using UnityEngine; + +using GoogleMobileAds.Editor; + +public static class PListProcessor +{ + private const string KEY_SK_ADNETWORK_ITEMS = "SKAdNetworkItems"; + + private const string KEY_SK_ADNETWORK_ID = "SKAdNetworkIdentifier"; + + private const string SKADNETWORKS_RELATIVE_PATH = "GoogleMobileAds/Editor/GoogleMobileAdsSKAdNetworkItems.xml"; + + private const string SKADNETWORKS_FILE_NAME = "GoogleMobileAdsSKAdNetworkItems.xml"; + + [PostProcessBuild] + public static void OnPostProcessBuild(BuildTarget buildTarget, string path) + { + string plistPath = Path.Combine(path, "Info.plist"); + PlistDocument plist = new PlistDocument(); + plist.ReadFromFile(plistPath); + + GoogleMobileAdsSettings instance = GoogleMobileAdsSettings.LoadInstance(); + string appId = instance.GoogleMobileAdsIOSAppId.Trim(); + if (appId.Length == 0) + { + NotifyBuildFailure( + "iOS Google Mobile Ads app ID is empty. Please enter a valid app ID to run ads properly."); + } + else + { + plist.root.SetString("GADApplicationIdentifier", appId); + } + + string userTrackingDescription = instance.UserTrackingUsageDescription; + if (!string.IsNullOrEmpty(userTrackingDescription)) + { + plist.root.SetString("NSUserTrackingUsageDescription", userTrackingDescription); + } + + List skNetworkIds = ReadSKAdNetworkIdentifiersFromXML(); + if (skNetworkIds.Count > 0) + { + AddSKAdNetworkIdentifier(plist, skNetworkIds); + } + + string unityVersion = Application.unityVersion; + if (!string.IsNullOrEmpty(unityVersion)) + { + plist.root.SetString("GADUUnityVersion", unityVersion); + } + + File.WriteAllText(plistPath, plist.WriteToString()); + } + + private static PlistElementArray GetSKAdNetworkItemsArray(PlistDocument document) + { + PlistElementArray array; + if (document.root.values.ContainsKey(KEY_SK_ADNETWORK_ITEMS)) + { + try + { + PlistElement element; + document.root.values.TryGetValue(KEY_SK_ADNETWORK_ITEMS, out element); + array = element.AsArray(); + } +#pragma warning disable 0168 + catch (Exception e) +#pragma warning restore 0168 + { + // The element is not an array type. + array = null; + } + } + else + { + array = document.root.CreateArray(KEY_SK_ADNETWORK_ITEMS); + } + return array; + } + + private static List ReadSKAdNetworkIdentifiersFromXML() + { + List skAdNetworkItems = new List(); + + string path = Path.Combine(Application.dataPath, SKADNETWORKS_RELATIVE_PATH); + + /* + * Handle importing GMA via Unity Package Manager. + */ + EditorPathUtils pathUtils = ScriptableObject.CreateInstance(); + if (pathUtils.IsPackageRootPath()) + { + string parentDirectoryPath = pathUtils.GetDirectoryAssetPath(); + path = Path.Combine(parentDirectoryPath, SKADNETWORKS_FILE_NAME); + } + + try + { + if (!File.Exists(path)) + { + throw new FileNotFoundException(); + } + using (FileStream fs = File.OpenRead(path)) + { + XmlDocument document = new XmlDocument(); + document.Load(fs); + + XmlNode root = document.FirstChild; + + XmlNodeList nodes = root.SelectNodes(KEY_SK_ADNETWORK_ID); + foreach (XmlNode node in nodes) + { + skAdNetworkItems.Add(node.InnerText); + } + } + } + #pragma warning disable 0168 + catch (FileNotFoundException e) + #pragma warning restore 0168 + { + NotifyBuildFailure("GoogleMobileAdsSKAdNetworkItems.xml not found", false); + } + catch (IOException e) + { + NotifyBuildFailure("Failed to read GoogleMobileAdsSKAdNetworkIds.xml: " + e.Message, false); + } + + return skAdNetworkItems; + } + + private static void AddSKAdNetworkIdentifier(PlistDocument document, List skAdNetworkIds) + { + PlistElementArray array = GetSKAdNetworkItemsArray(document); + if (array != null) + { + foreach (string id in skAdNetworkIds) + { + if (!ContainsSKAdNetworkIdentifier(array, id)) + { + PlistElementDict added = array.AddDict(); + added.SetString(KEY_SK_ADNETWORK_ID, id); + } + } + } + else + { + NotifyBuildFailure("SKAdNetworkItems element already exists in Info.plist, but is not an array.", false); + } + } + + private static bool ContainsSKAdNetworkIdentifier(PlistElementArray skAdNetworkItemsArray, string id) + { + foreach (PlistElement elem in skAdNetworkItemsArray.values) + { + try + { + PlistElementDict elemInDict = elem.AsDict(); + PlistElement value; + bool identifierExists = elemInDict.values.TryGetValue(KEY_SK_ADNETWORK_ID, out value); + + if (identifierExists && value.AsString().Equals(id)) + { + return true; + } + } +#pragma warning disable 0168 + catch (Exception e) +#pragma warning restore 0168 + { + // Do nothing + } + } + + return false; + } + + private static void NotifyBuildFailure(string message, bool showOpenSettingsButton = true) + { + string dialogTitle = "Google Mobile Ads"; + string dialogMessage = "Error: " + message; + + if (showOpenSettingsButton) + { + bool openSettings = EditorUtility.DisplayDialog( + dialogTitle, dialogMessage, "Open Settings", "Close"); + if (openSettings) + { + GoogleMobileAdsSettingsEditor.OpenInspector(); + } + } + else + { + EditorUtility.DisplayDialog(dialogTitle, dialogMessage, "Close"); + } + + ThrowBuildException("[GoogleMobileAds] " + message); + } + + private static void ThrowBuildException(string message) + { +#if UNITY_2017_1_OR_NEWER + throw new BuildPlayerWindow.BuildMethodException(message); +#else + throw new OperationCanceledException(message); +#endif + } +} + +#endif diff --git a/Assets/GoogleMobileAds/Editor/PListProcessor.cs.meta b/Assets/GoogleMobileAds/Editor/PListProcessor.cs.meta new file mode 100644 index 0000000..9e28012 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/PListProcessor.cs.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: d1d26b084dc244c8c818f67662e51f6c +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/PListProcessor.cs +timeCreated: 1480838400 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: + instanceID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources.meta b/Assets/GoogleMobileAds/Editor/Resources.meta new file mode 100644 index 0000000..2b14cb5 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ed0572a2674df6a419597cb8b46979a6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds.meta new file mode 100644 index 0000000..6784ece --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 17f4ec0b1e0da9e47b7cd6e902fa6143 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages.meta new file mode 100644 index 0000000..def3f23 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 329d381b12b44f544b4ed3d6f613da8e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/1024x768.png b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/1024x768.png new file mode 100644 index 0000000..2c1095b Binary files /dev/null and b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/1024x768.png differ diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/1024x768.png.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/1024x768.png.meta new file mode 100644 index 0000000..2cb626c --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/1024x768.png.meta @@ -0,0 +1,103 @@ +fileFormatVersion: 2 +guid: 4c69db43dbd474a2987be5807129b4cc +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/1024x768.png +timeCreated: 1480838400 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spritePixelsToUnits: 100 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/300x250.png b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/300x250.png new file mode 100644 index 0000000..7ae8fb9 Binary files /dev/null and b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/300x250.png differ diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/300x250.png.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/300x250.png.meta new file mode 100644 index 0000000..48b92f8 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/300x250.png.meta @@ -0,0 +1,103 @@ +fileFormatVersion: 2 +guid: 898f886a39d714db5b90d2c36676c894 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/300x250.png +timeCreated: 1480838400 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spritePixelsToUnits: 100 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x100.png b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x100.png new file mode 100644 index 0000000..3e82893 Binary files /dev/null and b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x100.png differ diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x100.png.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x100.png.meta new file mode 100644 index 0000000..fbcfbe4 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x100.png.meta @@ -0,0 +1,103 @@ +fileFormatVersion: 2 +guid: 1a2723ddf964e4565a408007ab387283 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x100.png +timeCreated: 1480838400 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spritePixelsToUnits: 100 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x480.png b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x480.png new file mode 100644 index 0000000..4db4410 Binary files /dev/null and b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x480.png differ diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x480.png.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x480.png.meta new file mode 100644 index 0000000..291e030 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x480.png.meta @@ -0,0 +1,103 @@ +fileFormatVersion: 2 +guid: 77d9c04b43d404f44ab60d7159b279bb +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x480.png +timeCreated: 1480838400 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spritePixelsToUnits: 100 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x50.png b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x50.png new file mode 100644 index 0000000..f01e80f Binary files /dev/null and b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x50.png differ diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x50.png.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x50.png.meta new file mode 100644 index 0000000..0aad671 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x50.png.meta @@ -0,0 +1,103 @@ +fileFormatVersion: 2 +guid: 5a6531d4c9c484d679a2d6f9e6fefed5 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x50.png +timeCreated: 1480838400 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spritePixelsToUnits: 100 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/468x60.png b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/468x60.png new file mode 100644 index 0000000..26ec5e0 Binary files /dev/null and b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/468x60.png differ diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/468x60.png.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/468x60.png.meta new file mode 100644 index 0000000..ffa7235 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/468x60.png.meta @@ -0,0 +1,103 @@ +fileFormatVersion: 2 +guid: 74358f5fb13a549aabac4a5a7ac76739 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/468x60.png +timeCreated: 1480838400 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spritePixelsToUnits: 100 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/480x320.png b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/480x320.png new file mode 100644 index 0000000..e07d350 Binary files /dev/null and b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/480x320.png differ diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/480x320.png.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/480x320.png.meta new file mode 100644 index 0000000..d99c40f --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/480x320.png.meta @@ -0,0 +1,103 @@ +fileFormatVersion: 2 +guid: d30303c99ba3f4b9b9924da34e6d742d +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/480x320.png +timeCreated: 1480838400 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spritePixelsToUnits: 100 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/728x90.png b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/728x90.png new file mode 100644 index 0000000..8d5a3d7 Binary files /dev/null and b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/728x90.png differ diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/728x90.png.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/728x90.png.meta new file mode 100644 index 0000000..3322a5a --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/728x90.png.meta @@ -0,0 +1,103 @@ +fileFormatVersion: 2 +guid: cfead63ff9d9d48e2b4ba3c2dee7cea9 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/728x90.png +timeCreated: 1480838400 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spritePixelsToUnits: 100 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/768x1024.png b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/768x1024.png new file mode 100644 index 0000000..d28e55c Binary files /dev/null and b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/768x1024.png differ diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/768x1024.png.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/768x1024.png.meta new file mode 100644 index 0000000..5f64fbe --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/768x1024.png.meta @@ -0,0 +1,103 @@ +fileFormatVersion: 2 +guid: 8a53f9c63a5e94b14a98698a7b07365b +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/768x1024.png +timeCreated: 1480838400 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spritePixelsToUnits: 100 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/AdInspectorHome.png b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/AdInspectorHome.png new file mode 100644 index 0000000..9c97b5e Binary files /dev/null and b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/AdInspectorHome.png differ diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/AdInspectorHome.png.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/AdInspectorHome.png.meta new file mode 100644 index 0000000..958db49 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/AdInspectorHome.png.meta @@ -0,0 +1,131 @@ +fileFormatVersion: 2 +guid: d271d6a1aed6848559ecad6252e333b1 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/AdInspectorHome.png +timeCreated: 1480838400 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: + x: 0.5 + y: 0.5 + spritePixelsToUnits: 100 + spriteBorder: + x: 0 + y: 0 + z: 0 + w: 0 + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdInspector.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdInspector.meta new file mode 100644 index 0000000..29fd2b4 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdInspector.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 20f10f9bcaaef3f4d85b9f5e4db46f90 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdInspector/768x1024.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdInspector/768x1024.prefab new file mode 100644 index 0000000..7ad712a --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdInspector/768x1024.prefab @@ -0,0 +1,504 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1026234277025590 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224770140206732756} + - component: {fileID: 222623742081011482} + - component: {fileID: 114466248550890148} + - component: {fileID: 114214230567826922} + m_Layer: 5 + m_Name: Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224770140206732756 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1026234277025590} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 224688741740444772} + m_Father: {fileID: 224247655386807502} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 1350, y: -100} + m_SizeDelta: {x: 150, y: 150} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &222623742081011482 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1026234277025590} + m_CullTransparentMesh: 1 +--- !u!114 &114466248550890148 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1026234277025590} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &114214230567826922 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1026234277025590} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114466248550890148} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &1168051963893118 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224349703481187764} + - component: {fileID: 223920107105332924} + - component: {fileID: 114572656286436090} + - component: {fileID: 114715352366433274} + m_Layer: 5 + m_Name: 768x1024 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224349703481187764 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168051963893118} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 224188954884660388} + - {fileID: 224247655386807502} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!223 &223920107105332924 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168051963893118} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &114572656286436090 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168051963893118} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1440, y: 2960} + m_ScreenMatchMode: 2 + m_MatchWidthOrHeight: 0.5 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 0 +--- !u!114 &114715352366433274 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168051963893118} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!1 &1455544211993956 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224188954884660388} + - component: {fileID: 222991998422378294} + - component: {fileID: 114288914574884706} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224188954884660388 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455544211993956} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 224349703481187764} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &222991998422378294 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455544211993956} + m_CullTransparentMesh: 1 +--- !u!114 &114288914574884706 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455544211993956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.80784315} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &1519554490061234 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224688741740444772} + - component: {fileID: 222698607200636900} + - component: {fileID: 114090591266759776} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224688741740444772 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1519554490061234} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 224770140206732756} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &222698607200636900 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1519554490061234} + m_CullTransparentMesh: 1 +--- !u!114 &114090591266759776 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1519554490061234} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 50 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 50 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: X +--- !u!1 &1919592978971710 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224247655386807502} + - component: {fileID: 222996861862976686} + - component: {fileID: 114508546300043044} + - component: {fileID: 114645982259750808} + m_Layer: 5 + m_Name: Ad + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224247655386807502 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919592978971710} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 224770140206732756} + m_Father: {fileID: 224349703481187764} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &222996861862976686 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919592978971710} + m_CullTransparentMesh: 1 +--- !u!114 &114508546300043044 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919592978971710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d271d6a1aed6848559ecad6252e333b1, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &114645982259750808 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919592978971710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114508546300043044} + m_OnClick: + m_PersistentCalls: + m_Calls: [] \ No newline at end of file diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdInspector/768x1024.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdInspector/768x1024.prefab.meta new file mode 100644 index 0000000..c29f350 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdInspector/768x1024.prefab.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: d09dfea4c722a4e239e771200d3639cc +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/AdInspector/768x1024.prefab +timeCreated: 1480838400 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen.meta new file mode 100644 index 0000000..5bddca4 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9c16201fd149155478130c95955794d4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/1024x768.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/1024x768.prefab new file mode 100644 index 0000000..84a5e43 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/1024x768.prefab @@ -0,0 +1,472 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1506555509391478} + m_IsPrefabParent: 1 +--- !u!1 &1048958803402864 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224396785236523192} + - component: {fileID: 222833382448378890} + - component: {fileID: 114429971286294426} + - component: {fileID: 114825474698679592} + m_Layer: 5 + m_Name: Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1086316119044956 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224412111100384724} + - component: {fileID: 222123731056135654} + - component: {fileID: 114947809371510874} + - component: {fileID: 114962388913432892} + m_Layer: 5 + m_Name: Ad + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1506555509391478 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224049503732257422} + - component: {fileID: 223443791425986802} + - component: {fileID: 114420769206196330} + - component: {fileID: 114535206133587424} + m_Layer: 5 + m_Name: 1024x768 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1701400232489060 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224410274476360834} + - component: {fileID: 222763382731799498} + - component: {fileID: 114000294713222290} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1761048403840336 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224408585172404824} + - component: {fileID: 222519335633903876} + - component: {fileID: 114502356579168518} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114000294713222290 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1701400232489060} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 45 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 50 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Close Ad +--- !u!114 &114420769206196330 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1506555509391478} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 2960, y: 1440} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 1 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114429971286294426 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1048958803402864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114502356579168518 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1761048403840336} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.809} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114535206133587424 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1506555509391478} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &114825474698679592 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1048958803402864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114429971286294426} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114947809371510874 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1086316119044956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 21300000, guid: 4c69db43dbd474a2987be5807129b4cc, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114962388913432892 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1086316119044956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114947809371510874} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!222 &222123731056135654 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1086316119044956} +--- !u!222 &222519335633903876 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1761048403840336} +--- !u!222 &222763382731799498 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1701400232489060} +--- !u!222 &222833382448378890 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1048958803402864} +--- !u!223 &223443791425986802 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1506555509391478} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224049503732257422 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1506555509391478} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224408585172404824} + - {fileID: 224412111100384724} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!224 &224396785236523192 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1048958803402864} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224410274476360834} + m_Father: {fileID: 224412111100384724} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 169.8, y: -35.9} + m_SizeDelta: {x: 339.8, y: 71.8} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224408585172404824 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1761048403840336} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224049503732257422} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224410274476360834 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1701400232489060} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224396785236523192} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224412111100384724 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1086316119044956} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224396785236523192} + m_Father: {fileID: 224049503732257422} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 2000, y: 1436} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/1024x768.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/1024x768.prefab.meta new file mode 100644 index 0000000..4cb0aff --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/1024x768.prefab.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 30454d768d0994255b52eafa89dad8e2 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/1024x768.prefab +timeCreated: 1480838400 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/768x1024.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/768x1024.prefab new file mode 100644 index 0000000..57e57d4 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/768x1024.prefab @@ -0,0 +1,472 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1168051963893118} + m_IsPrefabParent: 1 +--- !u!1 &1026234277025590 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224770140206732756} + - component: {fileID: 222623742081011482} + - component: {fileID: 114466248550890148} + - component: {fileID: 114214230567826922} + m_Layer: 5 + m_Name: Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1168051963893118 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224349703481187764} + - component: {fileID: 223920107105332924} + - component: {fileID: 114572656286436090} + - component: {fileID: 114715352366433274} + m_Layer: 5 + m_Name: 768x1024 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1455544211993956 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224188954884660388} + - component: {fileID: 222991998422378294} + - component: {fileID: 114288914574884706} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1519554490061234 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224688741740444772} + - component: {fileID: 222698607200636900} + - component: {fileID: 114090591266759776} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1919592978971710 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224247655386807502} + - component: {fileID: 222996861862976686} + - component: {fileID: 114508546300043044} + - component: {fileID: 114645982259750808} + m_Layer: 5 + m_Name: Ad + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114090591266759776 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1519554490061234} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 50 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 50 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Close Ad +--- !u!114 &114214230567826922 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1026234277025590} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114466248550890148} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114288914574884706 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1455544211993956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.80784315} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114466248550890148 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1026234277025590} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114508546300043044 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1919592978971710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 21300000, guid: 8a53f9c63a5e94b14a98698a7b07365b, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114572656286436090 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1168051963893118} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1440, y: 2960} + m_ScreenMatchMode: 2 + m_MatchWidthOrHeight: 0.5 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114645982259750808 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1919592978971710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114508546300043044} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114715352366433274 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1168051963893118} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!222 &222623742081011482 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1026234277025590} +--- !u!222 &222698607200636900 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1519554490061234} +--- !u!222 &222991998422378294 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1455544211993956} +--- !u!222 &222996861862976686 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1919592978971710} +--- !u!223 &223920107105332924 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1168051963893118} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224188954884660388 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1455544211993956} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224349703481187764} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224247655386807502 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1919592978971710} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224770140206732756} + m_Father: {fileID: 224349703481187764} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1436, y: 2000} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224349703481187764 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1168051963893118} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224188954884660388} + - {fileID: 224247655386807502} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!224 &224688741740444772 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1519554490061234} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224770140206732756} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 9.1, y: -5.6} + m_SizeDelta: {x: 18.2, y: 11.2} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224770140206732756 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1026234277025590} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224688741740444772} + m_Father: {fileID: 224247655386807502} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 172.1, y: -37.5} + m_SizeDelta: {x: 344.1, y: 75.2} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/768x1024.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/768x1024.prefab.meta new file mode 100644 index 0000000..a4e2eb9 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/768x1024.prefab.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 7d86e5c9e525f4fadbbea7ee54246b94 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/768x1024.prefab +timeCreated: 1480838400 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners.meta new file mode 100644 index 0000000..7f196da --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 83c273847e911bc42ae46dee711c7f91 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/ADAPTIVE.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/ADAPTIVE.prefab new file mode 100644 index 0000000..92974d7 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/ADAPTIVE.prefab @@ -0,0 +1,292 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1269133880751524} + m_IsPrefabParent: 1 +--- !u!1 &1269133880751524 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224903529129881488} + - component: {fileID: 223611447948025624} + - component: {fileID: 114814154768417776} + - component: {fileID: 114782070117714080} + m_Layer: 5 + m_Name: ADAPTIVE + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1399486727572022 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224568288566307878} + - component: {fileID: 222163316230224026} + - component: {fileID: 114350348470438990} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1542249946006888 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224920579879238496} + - component: {fileID: 222908399171909076} + - component: {fileID: 114302043590274744} + - component: {fileID: 114573167377799528} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114302043590274744 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1542249946006888} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114350348470438990 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1399486727572022} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 25 + m_FontStyle: 1 + m_BestFit: 1 + m_MinSize: 20 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: This is a Test Adaptive Banner +--- !u!114 &114573167377799528 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1542249946006888} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114302043590274744} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114782070117714080 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1269133880751524} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 2960, y: 1440} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 1 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114814154768417776 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1269133880751524} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!222 &222163316230224026 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1399486727572022} +--- !u!222 &222908399171909076 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1542249946006888} +--- !u!223 &223611447948025624 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1269133880751524} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224568288566307878 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1399486727572022} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224920579879238496} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 2.4, y: 0.000043869} + m_SizeDelta: {x: 362.7, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224903529129881488 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1269133880751524} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224920579879238496} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!224 &224920579879238496 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1542249946006888} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224568288566307878} + m_Father: {fileID: 224903529129881488} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -800} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/ADAPTIVE.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/ADAPTIVE.prefab.meta new file mode 100644 index 0000000..02fe835 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/ADAPTIVE.prefab.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: b2a3ea2f1837847d9981501e0eeca085 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/ADAPTIVE.prefab +timeCreated: 1480838400 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/BANNER.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/BANNER.prefab new file mode 100644 index 0000000..598e792 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/BANNER.prefab @@ -0,0 +1,217 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1922916089534430} + m_IsPrefabParent: 1 +--- !u!1 &1746883794458476 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224102598220924924} + - component: {fileID: 222746751799034550} + - component: {fileID: 114085332113477484} + - component: {fileID: 114158516453251810} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1922916089534430 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224975965904302652} + - component: {fileID: 223151453590684250} + - component: {fileID: 114308861063183428} + - component: {fileID: 114122664426735340} + m_Layer: 5 + m_Name: BANNER + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114085332113477484 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1746883794458476} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 21300000, guid: 5a6531d4c9c484d679a2d6f9e6fefed5, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114122664426735340 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1922916089534430} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1280, y: 800} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 1 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114158516453251810 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1746883794458476} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114085332113477484} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114308861063183428 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1922916089534430} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!222 &222746751799034550 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1746883794458476} +--- !u!223 &223151453590684250 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1922916089534430} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224102598220924924 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1746883794458476} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224975965904302652} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -20} + m_SizeDelta: {x: 260, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224975965904302652 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1922916089534430} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224102598220924924} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/BANNER.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/BANNER.prefab.meta new file mode 100644 index 0000000..c9a7ca7 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/BANNER.prefab.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: b2a8ac187bcca47a286cb00c8094da36 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/BANNER.prefab +timeCreated: 1480838400 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/CENTER.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/CENTER.prefab new file mode 100644 index 0000000..97586f9 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/CENTER.prefab @@ -0,0 +1,292 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1416738728138556} + m_IsPrefabParent: 1 +--- !u!1 &1136984565866652 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224716041920118618} + - component: {fileID: 222921256881353822} + - component: {fileID: 114680691601076658} + - component: {fileID: 114238919180307928} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1367349203345002 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224396676929103998} + - component: {fileID: 222812030589784238} + - component: {fileID: 114064202109378262} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1416738728138556 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224556414654429204} + - component: {fileID: 223868036777227868} + - component: {fileID: 114335156126952382} + - component: {fileID: 114348016595591796} + m_Layer: 5 + m_Name: CENTER + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114064202109378262 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1367349203345002} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 25 + m_FontStyle: 1 + m_BestFit: 1 + m_MinSize: 20 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: This is a Test Smart Banner +--- !u!114 &114238919180307928 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1136984565866652} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114680691601076658} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114335156126952382 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1416738728138556} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &114348016595591796 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1416738728138556} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 2960, y: 1440} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 1 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114680691601076658 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1136984565866652} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &222812030589784238 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1367349203345002} +--- !u!222 &222921256881353822 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1136984565866652} +--- !u!223 &223868036777227868 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1416738728138556} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224396676929103998 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1367349203345002} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224716041920118618} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 2.4, y: 0.000043869} + m_SizeDelta: {x: 362.7, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224556414654429204 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1416738728138556} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224716041920118618} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!224 &224716041920118618 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1136984565866652} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224396676929103998} + m_Father: {fileID: 224556414654429204} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/CENTER.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/CENTER.prefab.meta new file mode 100644 index 0000000..767d184 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/CENTER.prefab.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 452d0eeb28d68420d95c05a6712689be +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/CENTER.prefab +timeCreated: 1480838400 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/FULL_BANNER.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/FULL_BANNER.prefab new file mode 100644 index 0000000..e22051e --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/FULL_BANNER.prefab @@ -0,0 +1,217 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1693671887655770} + m_IsPrefabParent: 1 +--- !u!1 &1289376599481394 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224722748174579388} + - component: {fileID: 222144676729818894} + - component: {fileID: 114315551303721412} + - component: {fileID: 114421075155369980} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1693671887655770 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224276549256597394} + - component: {fileID: 223952169128518932} + - component: {fileID: 114696334858063158} + - component: {fileID: 114239890049580038} + m_Layer: 5 + m_Name: FULL_BANNER + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114239890049580038 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1693671887655770} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 2690, y: 1440} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 1 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114315551303721412 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1289376599481394} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 21300000, guid: 74358f5fb13a549aabac4a5a7ac76739, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114421075155369980 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1289376599481394} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114315551303721412} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114696334858063158 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1693671887655770} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!222 &222144676729818894 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1289376599481394} +--- !u!223 &223952169128518932 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1693671887655770} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224276549256597394 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1693671887655770} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224722748174579388} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!224 &224722748174579388 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1289376599481394} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224276549256597394} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 675, y: 85} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/FULL_BANNER.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/FULL_BANNER.prefab.meta new file mode 100644 index 0000000..b98e143 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/FULL_BANNER.prefab.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: a01bd5a6d0f504aecb61dad504950abd +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/FULL_BANNER.prefab +timeCreated: 1480838400 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LARGE_BANNER.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LARGE_BANNER.prefab new file mode 100644 index 0000000..baa2cbd --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LARGE_BANNER.prefab @@ -0,0 +1,217 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1689999242186388} + m_IsPrefabParent: 1 +--- !u!1 &1260121452411016 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224967535306520620} + - component: {fileID: 222213910864577190} + - component: {fileID: 114252159333637556} + - component: {fileID: 114791891126826622} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1689999242186388 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224970415831850420} + - component: {fileID: 223744438911749882} + - component: {fileID: 114831681655494918} + - component: {fileID: 114428819205255628} + m_Layer: 5 + m_Name: LARGE_BANNER + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114252159333637556 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1260121452411016} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 21300000, guid: 1a2723ddf964e4565a408007ab387283, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114428819205255628 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1689999242186388} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1440, y: 2960} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 1 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114791891126826622 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1260121452411016} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114252159333637556} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114831681655494918 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1689999242186388} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!222 &222213910864577190 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1260121452411016} +--- !u!223 &223744438911749882 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1689999242186388} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224967535306520620 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1260121452411016} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224970415831850420} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 950, y: 295} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224970415831850420 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1689999242186388} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224967535306520620} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LARGE_BANNER.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LARGE_BANNER.prefab.meta new file mode 100644 index 0000000..48f2297 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LARGE_BANNER.prefab.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 2758392ec5c0c413886eaf50350c125e +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LARGE_BANNER.prefab +timeCreated: 1480838400 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LEADERBOARD.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LEADERBOARD.prefab new file mode 100644 index 0000000..5a586ac --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LEADERBOARD.prefab @@ -0,0 +1,217 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1972469136070810} + m_IsPrefabParent: 1 +--- !u!1 &1183579264172830 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224697483211628194} + - component: {fileID: 222129017442517786} + - component: {fileID: 114721459383001118} + - component: {fileID: 114677129427402038} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1972469136070810 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224006990116994490} + - component: {fileID: 223012850224642572} + - component: {fileID: 114471196217915594} + - component: {fileID: 114399773188946396} + m_Layer: 5 + m_Name: LEADERBOARD + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114399773188946396 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1972469136070810} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 2960, y: 1440} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 1 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114471196217915594 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1972469136070810} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &114677129427402038 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1183579264172830} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114721459383001118} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114721459383001118 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1183579264172830} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 21300000, guid: cfead63ff9d9d48e2b4ba3c2dee7cea9, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &222129017442517786 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1183579264172830} +--- !u!223 &223012850224642572 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1972469136070810} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224006990116994490 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1972469136070810} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224697483211628194} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!224 &224697483211628194 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1183579264172830} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224006990116994490} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1050, y: 130} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LEADERBOARD.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LEADERBOARD.prefab.meta new file mode 100644 index 0000000..cf36ed9 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LEADERBOARD.prefab.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 60a76727b740d485fa446352e56931c5 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LEADERBOARD.prefab +timeCreated: 1480838400 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/MEDIUM_RECTANGLE.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/MEDIUM_RECTANGLE.prefab new file mode 100644 index 0000000..a6edd0f --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/MEDIUM_RECTANGLE.prefab @@ -0,0 +1,217 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1512588571484440} + m_IsPrefabParent: 1 +--- !u!1 &1512588571484440 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224538654718470302} + - component: {fileID: 223629559242470952} + - component: {fileID: 114983991128439442} + - component: {fileID: 114372880593303924} + m_Layer: 5 + m_Name: MEDIUM_RECTANGLE + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1995456870296158 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224894678874208494} + - component: {fileID: 222075172098901274} + - component: {fileID: 114038968471933872} + - component: {fileID: 114975822294336148} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114038968471933872 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1995456870296158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 21300000, guid: 898f886a39d714db5b90d2c36676c894, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114372880593303924 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1512588571484440} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 2160, y: 1080} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 1 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114975822294336148 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1995456870296158} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114038968471933872} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114983991128439442 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1512588571484440} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!222 &222075172098901274 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1995456870296158} +--- !u!223 &223629559242470952 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1512588571484440} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224538654718470302 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1512588571484440} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224894678874208494} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!224 &224894678874208494 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1995456870296158} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224538654718470302} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0} + m_AnchorMax: {x: 0.5, y: 0} + m_AnchoredPosition: {x: 0, y: 135} + m_SizeDelta: {x: 322, y: 270} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/MEDIUM_RECTANGLE.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/MEDIUM_RECTANGLE.prefab.meta new file mode 100644 index 0000000..0e00443 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/MEDIUM_RECTANGLE.prefab.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: da3156337d5ca4d529cf72f8b467823b +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/MEDIUM_RECTANGLE.prefab +timeCreated: 1480838400 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/SMART_BANNER.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/SMART_BANNER.prefab new file mode 100644 index 0000000..8221f02 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/SMART_BANNER.prefab @@ -0,0 +1,292 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1853606194061450} + m_IsPrefabParent: 1 +--- !u!1 &1343426381164082 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224490741999108352} + - component: {fileID: 222779771472130718} + - component: {fileID: 114916822656868938} + - component: {fileID: 114959255499348754} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1369006202624816 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224233332446998570} + - component: {fileID: 222910655472497136} + - component: {fileID: 114193057462813808} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1853606194061450 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224156852809508418} + - component: {fileID: 223985404539061306} + - component: {fileID: 114034781880355044} + - component: {fileID: 114616652852970184} + m_Layer: 5 + m_Name: SMART_BANNER + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114034781880355044 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1853606194061450} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &114193057462813808 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1369006202624816} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 25 + m_FontStyle: 1 + m_BestFit: 1 + m_MinSize: 20 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: This is a Test Smart Banner +--- !u!114 &114616652852970184 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1853606194061450} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 2960, y: 1440} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0.5 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114916822656868938 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1343426381164082} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114959255499348754 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1343426381164082} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114916822656868938} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!222 &222779771472130718 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1343426381164082} +--- !u!222 &222910655472497136 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1369006202624816} +--- !u!223 &223985404539061306 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1853606194061450} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224156852809508418 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1853606194061450} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224490741999108352} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!224 &224233332446998570 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1369006202624816} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224490741999108352} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 2.4, y: 0.000043869} + m_SizeDelta: {x: 362.7, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224490741999108352 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1343426381164082} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224233332446998570} + m_Father: {fileID: 224156852809508418} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 50} + m_SizeDelta: {x: 0, y: 100} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/SMART_BANNER.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/SMART_BANNER.prefab.meta new file mode 100644 index 0000000..7049afa --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/SMART_BANNER.prefab.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 15069cdc38e2b41f7836116419a9187c +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/SMART_BANNER.prefab +timeCreated: 1480838400 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials.meta new file mode 100644 index 0000000..ecf5838 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d78ddcb3b0cbd14418fb7c84e547256f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/1024x768.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/1024x768.prefab new file mode 100644 index 0000000..84a5e43 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/1024x768.prefab @@ -0,0 +1,472 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1506555509391478} + m_IsPrefabParent: 1 +--- !u!1 &1048958803402864 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224396785236523192} + - component: {fileID: 222833382448378890} + - component: {fileID: 114429971286294426} + - component: {fileID: 114825474698679592} + m_Layer: 5 + m_Name: Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1086316119044956 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224412111100384724} + - component: {fileID: 222123731056135654} + - component: {fileID: 114947809371510874} + - component: {fileID: 114962388913432892} + m_Layer: 5 + m_Name: Ad + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1506555509391478 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224049503732257422} + - component: {fileID: 223443791425986802} + - component: {fileID: 114420769206196330} + - component: {fileID: 114535206133587424} + m_Layer: 5 + m_Name: 1024x768 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1701400232489060 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224410274476360834} + - component: {fileID: 222763382731799498} + - component: {fileID: 114000294713222290} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1761048403840336 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224408585172404824} + - component: {fileID: 222519335633903876} + - component: {fileID: 114502356579168518} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114000294713222290 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1701400232489060} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 45 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 50 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Close Ad +--- !u!114 &114420769206196330 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1506555509391478} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 2960, y: 1440} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 1 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114429971286294426 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1048958803402864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114502356579168518 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1761048403840336} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.809} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114535206133587424 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1506555509391478} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &114825474698679592 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1048958803402864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114429971286294426} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114947809371510874 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1086316119044956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 21300000, guid: 4c69db43dbd474a2987be5807129b4cc, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114962388913432892 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1086316119044956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114947809371510874} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!222 &222123731056135654 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1086316119044956} +--- !u!222 &222519335633903876 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1761048403840336} +--- !u!222 &222763382731799498 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1701400232489060} +--- !u!222 &222833382448378890 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1048958803402864} +--- !u!223 &223443791425986802 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1506555509391478} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224049503732257422 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1506555509391478} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224408585172404824} + - {fileID: 224412111100384724} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!224 &224396785236523192 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1048958803402864} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224410274476360834} + m_Father: {fileID: 224412111100384724} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 169.8, y: -35.9} + m_SizeDelta: {x: 339.8, y: 71.8} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224408585172404824 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1761048403840336} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224049503732257422} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224410274476360834 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1701400232489060} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224396785236523192} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224412111100384724 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1086316119044956} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224396785236523192} + m_Father: {fileID: 224049503732257422} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 2000, y: 1436} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/1024x768.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/1024x768.prefab.meta new file mode 100644 index 0000000..328ebdd --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/1024x768.prefab.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 53084846ca7a14a878485a5db71fda00 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/1024x768.prefab +timeCreated: 1480838400 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/768x1024.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/768x1024.prefab new file mode 100644 index 0000000..57e57d4 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/768x1024.prefab @@ -0,0 +1,472 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1168051963893118} + m_IsPrefabParent: 1 +--- !u!1 &1026234277025590 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224770140206732756} + - component: {fileID: 222623742081011482} + - component: {fileID: 114466248550890148} + - component: {fileID: 114214230567826922} + m_Layer: 5 + m_Name: Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1168051963893118 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224349703481187764} + - component: {fileID: 223920107105332924} + - component: {fileID: 114572656286436090} + - component: {fileID: 114715352366433274} + m_Layer: 5 + m_Name: 768x1024 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1455544211993956 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224188954884660388} + - component: {fileID: 222991998422378294} + - component: {fileID: 114288914574884706} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1519554490061234 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224688741740444772} + - component: {fileID: 222698607200636900} + - component: {fileID: 114090591266759776} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1919592978971710 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224247655386807502} + - component: {fileID: 222996861862976686} + - component: {fileID: 114508546300043044} + - component: {fileID: 114645982259750808} + m_Layer: 5 + m_Name: Ad + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114090591266759776 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1519554490061234} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 50 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 50 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Close Ad +--- !u!114 &114214230567826922 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1026234277025590} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114466248550890148} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114288914574884706 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1455544211993956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.80784315} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114466248550890148 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1026234277025590} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114508546300043044 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1919592978971710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 21300000, guid: 8a53f9c63a5e94b14a98698a7b07365b, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114572656286436090 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1168051963893118} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1440, y: 2960} + m_ScreenMatchMode: 2 + m_MatchWidthOrHeight: 0.5 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114645982259750808 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1919592978971710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114508546300043044} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114715352366433274 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1168051963893118} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!222 &222623742081011482 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1026234277025590} +--- !u!222 &222698607200636900 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1519554490061234} +--- !u!222 &222991998422378294 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1455544211993956} +--- !u!222 &222996861862976686 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1919592978971710} +--- !u!223 &223920107105332924 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1168051963893118} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224188954884660388 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1455544211993956} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224349703481187764} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224247655386807502 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1919592978971710} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224770140206732756} + m_Father: {fileID: 224349703481187764} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1436, y: 2000} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224349703481187764 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1168051963893118} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224188954884660388} + - {fileID: 224247655386807502} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!224 &224688741740444772 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1519554490061234} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224770140206732756} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 9.1, y: -5.6} + m_SizeDelta: {x: 18.2, y: 11.2} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224770140206732756 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1026234277025590} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224688741740444772} + m_Father: {fileID: 224247655386807502} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 172.1, y: -37.5} + m_SizeDelta: {x: 344.1, y: 75.2} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/768x1024.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/768x1024.prefab.meta new file mode 100644 index 0000000..c51b40d --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/768x1024.prefab.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 9e579ef4793d34e79be6a216c0b67d78 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/768x1024.prefab +timeCreated: 1480838400 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded.meta new file mode 100644 index 0000000..f51a94e --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1301929017fd57f42a619189cfdf92a1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/1024x768.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/1024x768.prefab new file mode 100644 index 0000000..90748af --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/1024x768.prefab @@ -0,0 +1,547 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1372156606540976} + m_IsPrefabParent: 1 +--- !u!1 &1128573709916514 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224613362496813788} + - component: {fileID: 222982220858172370} + - component: {fileID: 114531233940747562} + - component: {fileID: 114252552421956380} + m_Layer: 5 + m_Name: Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1266630977519298 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224230749014027406} + - component: {fileID: 222796572593907422} + - component: {fileID: 114058432909893366} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1372156606540976 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224692589100518744} + - component: {fileID: 223553207263892384} + - component: {fileID: 114758204355010086} + - component: {fileID: 114768781952071512} + m_Layer: 5 + m_Name: 1024x768 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1776151137375062 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224516481964458542} + - component: {fileID: 222969686989629696} + - component: {fileID: 114818721744753168} + - component: {fileID: 114637091538056986} + m_Layer: 5 + m_Name: Ad + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1839101188223610 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224920559942719848} + - component: {fileID: 222848794251129344} + - component: {fileID: 114380357142010322} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1940818438327928 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224061913340101242} + - component: {fileID: 222966908609815736} + - component: {fileID: 114332259168256334} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114058432909893366 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1266630977519298} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.80784315} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114252552421956380 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1128573709916514} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114531233940747562} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114332259168256334 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1940818438327928} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 45 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 45 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 5 second(s) remaining +--- !u!114 &114380357142010322 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1839101188223610} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 45 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 50 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Close Ad +--- !u!114 &114531233940747562 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1128573709916514} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114637091538056986 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1776151137375062} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114818721744753168} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114758204355010086 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1372156606540976} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 2960, y: 1440} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0.5 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114768781952071512 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1372156606540976} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &114818721744753168 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1776151137375062} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 21300000, guid: 4c69db43dbd474a2987be5807129b4cc, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &222796572593907422 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1266630977519298} +--- !u!222 &222848794251129344 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1839101188223610} +--- !u!222 &222966908609815736 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1940818438327928} +--- !u!222 &222969686989629696 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1776151137375062} +--- !u!222 &222982220858172370 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1128573709916514} +--- !u!223 &223553207263892384 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1372156606540976} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224061913340101242 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1940818438327928} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224516481964458542} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 290, y: -42.7} + m_SizeDelta: {x: 493, y: 51.4} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224230749014027406 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1266630977519298} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224692589100518744} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224516481964458542 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1776151137375062} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224613362496813788} + - {fileID: 224061913340101242} + m_Father: {fileID: 224692589100518744} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 2000, y: 1436} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224613362496813788 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1128573709916514} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224920559942719848} + m_Father: {fileID: 224516481964458542} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 161.38, y: -34.2} + m_SizeDelta: {x: 323, y: 68.4} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224692589100518744 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1372156606540976} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224230749014027406} + - {fileID: 224516481964458542} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!224 &224920559942719848 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1839101188223610} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224613362496813788} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/1024x768.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/1024x768.prefab.meta new file mode 100644 index 0000000..156ebc1 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/1024x768.prefab.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: ac0a546bb4fb349229fc5824b288ec00 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/1024x768.prefab +timeCreated: 1480838400 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/768x1024.prefab b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/768x1024.prefab new file mode 100644 index 0000000..3435626 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/768x1024.prefab @@ -0,0 +1,547 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &100100000 +Prefab: + m_ObjectHideFlags: 1 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: [] + m_RemovedComponents: [] + m_ParentPrefab: {fileID: 0} + m_RootGameObject: {fileID: 1632466019560500} + m_IsPrefabParent: 1 +--- !u!1 &1145201493799244 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224859375040150520} + - component: {fileID: 222539723179981582} + - component: {fileID: 114644123904461240} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1440340526681520 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224646837243202000} + - component: {fileID: 222062092593612000} + - component: {fileID: 114435428706387640} + - component: {fileID: 114820238492461956} + m_Layer: 5 + m_Name: Ad + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1632466019560500 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224858207565310680} + - component: {fileID: 223253263155428692} + - component: {fileID: 114432944070235470} + - component: {fileID: 114257052656689914} + m_Layer: 5 + m_Name: 768x1024 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1641665161670648 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224559117849289246} + - component: {fileID: 222246365610716666} + - component: {fileID: 114514696656541846} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1652198827308984 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224172518945175052} + - component: {fileID: 222229915290430514} + - component: {fileID: 114777983548721902} + - component: {fileID: 114638760954846786} + m_Layer: 5 + m_Name: Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &1728821091649996 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + serializedVersion: 5 + m_Component: + - component: {fileID: 224102788109289026} + - component: {fileID: 222431000284531562} + - component: {fileID: 114197769342207226} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &114197769342207226 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1728821091649996} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.80784315} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114257052656689914 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1632466019560500} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &114432944070235470 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1632466019560500} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1440, y: 2960} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0.495 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!114 &114435428706387640 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1440340526681520} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 21300000, guid: 8a53f9c63a5e94b14a98698a7b07365b, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114514696656541846 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1641665161670648} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 40 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Close Ad +--- !u!114 &114638760954846786 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1652198827308984} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114777983548721902} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &114644123904461240 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1145201493799244} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 40 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 5 second(s) remaining +--- !u!114 &114777983548721902 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1652198827308984} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!114 &114820238492461956 +MonoBehaviour: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1440340526681520} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114435428706387640} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!222 &222062092593612000 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1440340526681520} +--- !u!222 &222229915290430514 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1652198827308984} +--- !u!222 &222246365610716666 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1641665161670648} +--- !u!222 &222431000284531562 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1728821091649996} +--- !u!222 &222539723179981582 +CanvasRenderer: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1145201493799244} +--- !u!223 &223253263155428692 +Canvas: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1632466019560500} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &224102788109289026 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1728821091649996} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224858207565310680} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224172518945175052 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1652198827308984} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224559117849289246} + m_Father: {fileID: 224646837243202000} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 149.4, y: -35.1} + m_SizeDelta: {x: 298.7, y: 70.3} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224559117849289246 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1641665161670648} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224172518945175052} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224646837243202000 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1440340526681520} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 224172518945175052} + - {fileID: 224859375040150520} + m_Father: {fileID: 224858207565310680} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1436, y: 2000} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!224 &224858207565310680 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1632466019560500} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 224102788109289026} + - {fileID: 224646837243202000} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!224 &224859375040150520 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 100100000} + m_GameObject: {fileID: 1145201493799244} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 224646837243202000} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 237.9, y: -43.363} + m_SizeDelta: {x: 432.3, y: 53.775} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/768x1024.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/768x1024.prefab.meta new file mode 100644 index 0000000..10319f0 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/768x1024.prefab.meta @@ -0,0 +1,13 @@ +fileFormatVersion: 2 +guid: 4e3dd9a9607da46da8125b4b59a18db2 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/768x1024.prefab +timeCreated: 1480838400 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 100100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/Ump.meta b/Assets/GoogleMobileAds/Editor/Resources/Ump.meta new file mode 100644 index 0000000..9622c5f --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/Ump.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3b150aa0031b3f64da1e82b31dd2b8b1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.png b/Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.png new file mode 100644 index 0000000..d819851 Binary files /dev/null and b/Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.png differ diff --git a/Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.png.meta b/Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.png.meta new file mode 100644 index 0000000..e3789c1 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.png.meta @@ -0,0 +1,145 @@ +fileFormatVersion: 2 +guid: cb0d255b8cd434556a80e3ae50b24b9c +labels: +- gvh +- gvh_version-7.2.1 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/DummyAds/AdImages/AdInspectorHome.png +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/Ump/ConsentForm.png +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + swizzle: 50462976 + cookieLightType: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.prefab b/Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.prefab new file mode 100644 index 0000000..3da58b4 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.prefab @@ -0,0 +1,525 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1026234277025590 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224770140206732756} + - component: {fileID: 222623742081011482} + - component: {fileID: 114466248550890148} + - component: {fileID: 114214230567826922} + - component: {fileID: 5577847591443948799} + m_Layer: 5 + m_Name: Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224770140206732756 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1026234277025590} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 224688741740444772} + m_Father: {fileID: 224247655386807502} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0} + m_AnchorMax: {x: 0.5, y: 0} + m_AnchoredPosition: {x: 0, y: 280} + m_SizeDelta: {x: 800, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &222623742081011482 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1026234277025590} + m_CullTransparentMesh: 1 +--- !u!114 &114466248550890148 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1026234277025590} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.23921569, g: 0.40784314, b: 0.76862746, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: f795a5541737a4c09a571dc953a23ba5, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &114214230567826922 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1026234277025590} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114466248550890148} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &5577847591443948799 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1026234277025590} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 0 + m_MinWidth: 150 + m_MinHeight: 150 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!1 &1168051963893118 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224349703481187764} + - component: {fileID: 223920107105332924} + - component: {fileID: 114572656286436090} + - component: {fileID: 114715352366433274} + m_Layer: 5 + m_Name: ConsentForm + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224349703481187764 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168051963893118} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 224188954884660388} + - {fileID: 224247655386807502} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!223 &223920107105332924 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168051963893118} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!114 &114572656286436090 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168051963893118} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1440, y: 2960} + m_ScreenMatchMode: 2 + m_MatchWidthOrHeight: 0.5 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 0 +--- !u!114 &114715352366433274 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1168051963893118} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!1 &1455544211993956 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224188954884660388} + - component: {fileID: 222991998422378294} + - component: {fileID: 114288914574884706} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224188954884660388 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455544211993956} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 224349703481187764} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &222991998422378294 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455544211993956} + m_CullTransparentMesh: 1 +--- !u!114 &114288914574884706 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455544211993956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.80784315} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &1519554490061234 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224688741740444772} + - component: {fileID: 222698607200636900} + - component: {fileID: 114090591266759776} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224688741740444772 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1519554490061234} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 224770140206732756} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &222698607200636900 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1519554490061234} + m_CullTransparentMesh: 1 +--- !u!114 &114090591266759776 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1519554490061234} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 40 + m_FontStyle: 1 + m_BestFit: 0 + m_MinSize: 0 + m_MaxSize: 56 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Consent +--- !u!1 &1919592978971710 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 224247655386807502} + - component: {fileID: 222996861862976686} + - component: {fileID: 114508546300043044} + - component: {fileID: 114645982259750808} + m_Layer: 5 + m_Name: Ad + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &224247655386807502 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919592978971710} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 224770140206732756} + m_Father: {fileID: 224349703481187764} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 1000, y: 1650} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &222996861862976686 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919592978971710} + m_CullTransparentMesh: 1 +--- !u!114 &114508546300043044 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919592978971710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: cb0d255b8cd434556a80e3ae50b24b9c, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &114645982259750808 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919592978971710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Highlighted + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 114508546300043044} + m_OnClick: + m_PersistentCalls: + m_Calls: [] diff --git a/Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.prefab.meta b/Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.prefab.meta new file mode 100644 index 0000000..558f2ec --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.prefab.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 32087445d9e7f4577ae9170a6b11f114 +labels: +- gvh +- gvh_version-7.2.1 +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/DummyAds/AdInspector/768x1024.prefab +- gvhp_exportpath-GoogleMobileAds/Editor/Resources/Ump/ConsentForm.prefab +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/Utils.cs b/Assets/GoogleMobileAds/Editor/Utils.cs new file mode 100644 index 0000000..3b463f3 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Utils.cs @@ -0,0 +1,91 @@ +// Copyright (C) 2023 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +using System; +using System.Collections.Generic; +using System.IO; +using System.Text.RegularExpressions; + +namespace GoogleMobileAds.Editor +{ + /* + * Utils class that contains helper methods. + */ + public static class Utils + { + internal static string GradleTemplatePath = + Path.Combine(AndroidPluginsDir, "baseProjectTemplate.gradle"); + + // Android library plugins directory that contains custom gradle templates. + internal const string AndroidPluginsDir = "Assets/Plugins/Android"; + + // Extracts an Android Gradle Plugin version number from the contents of a *.gradle file. + // This should work for Unity 2022.1 and below. + // Ex. + // classpath 'com.android.tools.build:gradle:4.0.1' + private static Regex androidGradlePluginVersionExtract_legacy = + new Regex(@"^\s*classpath\s+['""]com\.android\.tools\.build:gradle:([^'""]+)['""]$"); + + // Extracts an Android Gradle Plugin version number from the contents of a *.gradle file for + // Unity 2022.2+ or 2023.1+. + // Ex. + // id 'com.android.application' version '7.1.2' apply false + private static Regex androidGradlePluginVersionExtract = + new Regex(@"^\s*id\s+['""]com\.android\.application['""] version ['""]([^'""]+)['""]"); + + /// + /// Get the Android Gradle Plugin version used by the Unity project. + /// + public static string AndroidGradlePluginVersion + { + private set {} + get + { + if (!Directory.Exists(AndroidPluginsDir) || !File.Exists(GradleTemplatePath)) + { + return DefaultAndroidGradlePlugin(); + } + var gradleTemplates = Directory.GetFiles(AndroidPluginsDir, "*.gradle", + SearchOption.TopDirectoryOnly); + foreach (var path in gradleTemplates) + { + foreach (var line in File.ReadAllLines(path)) + { + var match = androidGradlePluginVersionExtract_legacy.Match(line); + if (match != null && match.Success) + { + return match.Result("$1"); + } + match = androidGradlePluginVersionExtract.Match(line); + if (match != null && match.Success) + { + return match.Result("$1"); + } + } + } + return DefaultAndroidGradlePlugin(); + } + } + + // TODO(@vkini): read from default Unity baseProjectTemplate.gradle file + private static string DefaultAndroidGradlePlugin() + { +#if UNITY_2022_3_OR_NEWER + return "7.1.2"; +#else + return "4.0.1"; +#endif + } + } +} \ No newline at end of file diff --git a/Assets/GoogleMobileAds/Editor/Utils.cs.meta b/Assets/GoogleMobileAds/Editor/Utils.cs.meta new file mode 100644 index 0000000..e37200a --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/Utils.cs.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: 7d7678b2375fe4456b0ab2b506c2240c +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/Utils.cs +timeCreated: 1480838400 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: + instanceID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Editor/gma_settings_editor_localization_data.json b/Assets/GoogleMobileAds/Editor/gma_settings_editor_localization_data.json new file mode 100644 index 0000000..762bff3 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/gma_settings_editor_localization_data.json @@ -0,0 +1,72 @@ +{ + "LocalizationsByKey": { + "KEY_ANALYTICS_ENABLED_HELPBOX": { + "en": "Sends the usage statistics to Google to gather reports on the failures and to inform future improvements of the Google Mobile Ads Unity plugin.", + "fr": "Envoie les données d'utilisation à Google pour collecter des rapports d'erreurs et participer aux futures améliorations du plugin Google Mobile Ads Unity." + }, + "KEY_ANALYTICS_ENABLED_SETTING": { + "en": "Send plugin usage statistics", + "fr": "Envoyer les données d'utilisation et de diagnostic du plugin" + }, + "KEY_ANDROID_SETTINGS_LABEL": { + "en": "Android settings", + "fr": "Paramètres Android" + }, + "KEY_ENABLE_GRADLE_BUILD_PRE_PROCESSOR_HELPBOX": { + "en": "Modifies the /Plugin/Android/ Gradle files to fix common build errors seen on older Unity versions, see https://developers.google.com/admob/unity/android", + "fr": "Modifie les fichiers Gradle de /Plugin/Android/ pour corriger les erreurs de compilation les plus courantes sur des versions antérieures d'Unity, voir https://developers.google.com/admob/unity/android?hl=fr" + }, + "KEY_ENABLE_GRADLE_BUILD_PRE_PROCESSOR_SETTING": { + "en": "Enable Gradle build pre-processor", + "fr": "Activer le pre-processeur de compilation Gradle" + }, + "KEY_ENABLE_KOTLINX_COROUTINES_PACKAGING_OPTION_HELPBOX": { + "en": "Adds an instruction to fix the build.gradle build error with message '2 files found with path 'META-INF/kotlinx_coroutines_core.version''. For more details, see https://developers.google.com/admob/unity/gradle", + "fr": "Ajoute une instruction pour corriger l'erreur de compilation de build.gradle '2 files found with path 'META-INF/kotlinx_coroutines_core.version''. Pour plus d'informations, visitez https://developers.google.com/admob/unity/gradle?hl=fr" + }, + "KEY_ENABLE_KOTLINX_COROUTINES_PACKAGING_OPTION_SETTING": { + "en": "Enable kotlinx.coroutines packaging option", + "fr": "Activer l'option de packaging kotlinx.coroutines" + }, + "KEY_GMA_APP_ID_HELPBOX": { + "en": "Google Mobile Ads App ID will look similar to this sample ID: ca-app-pub-3940256099942544~3347511713", + "fr": "L'ID de votre application Google Mobile Ads sera similaire à cet exemple: ca-app-pub-3940256099942544~3347511713" + }, + "KEY_GMA_APP_ID_LABEL": { + "en": "Google Mobile Ads App ID", + "fr": "ID d'application Google Mobile Ads" + }, + "KEY_MISC_LABEL": { + "en": "Misc", + "fr": "Divers" + }, + "KEY_DISABLE_OPTIMIZE_AD_LOADING_HELPBOX": { + "en": "This disables using a background thread to offload Ad loading tasks", + "fr": "Cela désactive l'utilisation d'un thread d'arrière-plan pour décharger les tâches de chargement des publicités." + }, + "KEY_DISABLE_OPTIMIZE_AD_LOADING_SETTING": { + "en": "Disable ad loading optimization", + "fr": "Désactiver l'optimisation du chargement des annonces" + }, + "KEY_DISABLE_OPTIMIZE_INITIALIZATION_HELPBOX": { + "en": "Disable offloading initialization to a background thread.", + "fr": "L'initialisation ne sera pas transférée vers un thread d'arrière-plan." + }, + "KEY_DISABLE_OPTIMIZE_INITIALIZATION_SETTING": { + "en": "Disable initialization optimization", + "fr": "Désactiver l'optimisation de l'initialisation" + }, + "KEY_UMP_SPECIFIC_SETTINGS_LABEL": { + "en": "UMP-specific settings", + "fr": "Paramètres spécifiques UMP" + }, + "KEY_USER_TRACKING_USAGE_DESCRIPTION_HELPBOX": { + "en": "A message that informs the user why an iOS app is requesting permission to use data for tracking the user or the device.", + "fr": "Un message qui informe l'utilisateur pourquoi une application iOS demande l'autorisation d'utiliser des données pour suivre l'utilisateur ou l'appareil." + }, + "KEY_USER_TRACKING_USAGE_DESCRIPTION_SETTING": { + "en": "User Tracking Usage Description", + "fr": "Description de l'utilisation du suivi des utilisateurs" + } + } +} diff --git a/Assets/GoogleMobileAds/Editor/gma_settings_editor_localization_data.json.meta b/Assets/GoogleMobileAds/Editor/gma_settings_editor_localization_data.json.meta new file mode 100644 index 0000000..16f0818 --- /dev/null +++ b/Assets/GoogleMobileAds/Editor/gma_settings_editor_localization_data.json.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 83a3846a658ae46219b050c8451aabfe +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/Editor/gma_settings_editor_localization_data.json +timeCreated: 1480838400 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Android.dll b/Assets/GoogleMobileAds/GoogleMobileAds.Android.dll new file mode 100644 index 0000000..403627e Binary files /dev/null and b/Assets/GoogleMobileAds/GoogleMobileAds.Android.dll differ diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Android.dll.meta b/Assets/GoogleMobileAds/GoogleMobileAds.Android.dll.meta new file mode 100644 index 0000000..8b8f67f --- /dev/null +++ b/Assets/GoogleMobileAds/GoogleMobileAds.Android.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 9daf61812a464faa90dec7f977094a88 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/GoogleMobileAds.Android.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Common.dll b/Assets/GoogleMobileAds/GoogleMobileAds.Common.dll new file mode 100644 index 0000000..f9c62d2 Binary files /dev/null and b/Assets/GoogleMobileAds/GoogleMobileAds.Common.dll differ diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Common.dll.meta b/Assets/GoogleMobileAds/GoogleMobileAds.Common.dll.meta new file mode 100644 index 0000000..1627342 --- /dev/null +++ b/Assets/GoogleMobileAds/GoogleMobileAds.Common.dll.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 91a5b07cc3384f86a88d7c29698e058b +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/GoogleMobileAds.Common.dll +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Core.dll b/Assets/GoogleMobileAds/GoogleMobileAds.Core.dll new file mode 100644 index 0000000..bdebf3a Binary files /dev/null and b/Assets/GoogleMobileAds/GoogleMobileAds.Core.dll differ diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Core.dll.meta b/Assets/GoogleMobileAds/GoogleMobileAds.Core.dll.meta new file mode 100644 index 0000000..19be895 --- /dev/null +++ b/Assets/GoogleMobileAds/GoogleMobileAds.Core.dll.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 36487fa6a5984d3a80bc98eca8a2b9e6 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/GoogleMobileAds.Core.dll +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Ump.Android.dll b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.Android.dll new file mode 100644 index 0000000..e4dd5e3 Binary files /dev/null and b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.Android.dll differ diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Ump.Android.dll.meta b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.Android.dll.meta new file mode 100644 index 0000000..4bc1392 --- /dev/null +++ b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.Android.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: bf90317f8c2e41979b0be47e1b17c528 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/GoogleMobileAds.Ump.Android.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 1 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Ump.Unity.dll b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.Unity.dll new file mode 100644 index 0000000..4222724 Binary files /dev/null and b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.Unity.dll differ diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Ump.Unity.dll.meta b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.Unity.dll.meta new file mode 100644 index 0000000..74c0c4e --- /dev/null +++ b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.Unity.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: a86d988d5f444cd9a999bd434cef8a51 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/GoogleMobileAds.Ump.Unity.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Ump.dll b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.dll new file mode 100644 index 0000000..ce50f7f Binary files /dev/null and b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.dll differ diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Ump.dll.meta b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.dll.meta new file mode 100644 index 0000000..28bfcc9 --- /dev/null +++ b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.dll.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: f84de9af142947eeb3522e42d9487838 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/GoogleMobileAds.Ump.dll +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Ump.iOS.dll b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.iOS.dll new file mode 100644 index 0000000..4a4fb0b Binary files /dev/null and b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.iOS.dll differ diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Ump.iOS.dll.meta b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.iOS.dll.meta new file mode 100644 index 0000000..247d88f --- /dev/null +++ b/Assets/GoogleMobileAds/GoogleMobileAds.Ump.iOS.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: d18ea87e83804d1eadf467931aabe099 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/GoogleMobileAds.Ump.iOS.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Unity.dll b/Assets/GoogleMobileAds/GoogleMobileAds.Unity.dll new file mode 100644 index 0000000..d61a0ca Binary files /dev/null and b/Assets/GoogleMobileAds/GoogleMobileAds.Unity.dll differ diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.Unity.dll.meta b/Assets/GoogleMobileAds/GoogleMobileAds.Unity.dll.meta new file mode 100644 index 0000000..7041b7c --- /dev/null +++ b/Assets/GoogleMobileAds/GoogleMobileAds.Unity.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 3bce71ee5c7c4e0fbbb4d836c01a35a2 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/GoogleMobileAds.Unity.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 1 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.dll b/Assets/GoogleMobileAds/GoogleMobileAds.dll new file mode 100644 index 0000000..bd2ef8f Binary files /dev/null and b/Assets/GoogleMobileAds/GoogleMobileAds.dll differ diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.dll.meta b/Assets/GoogleMobileAds/GoogleMobileAds.dll.meta new file mode 100644 index 0000000..ecf9533 --- /dev/null +++ b/Assets/GoogleMobileAds/GoogleMobileAds.dll.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: b251d35e618a42e085fb4a5a888d05cd +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/GoogleMobileAds.dll +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.iOS.dll b/Assets/GoogleMobileAds/GoogleMobileAds.iOS.dll new file mode 100644 index 0000000..53c3945 Binary files /dev/null and b/Assets/GoogleMobileAds/GoogleMobileAds.iOS.dll differ diff --git a/Assets/GoogleMobileAds/GoogleMobileAds.iOS.dll.meta b/Assets/GoogleMobileAds/GoogleMobileAds.iOS.dll.meta new file mode 100644 index 0000000..1b97e49 --- /dev/null +++ b/Assets/GoogleMobileAds/GoogleMobileAds.iOS.dll.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: 735ca9cf259f453abac02f4573d8a420 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/GoogleMobileAds.iOS.dll +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 1 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/GoogleMobileAds_version-10.6.0_manifest.txt b/Assets/GoogleMobileAds/GoogleMobileAds_version-10.6.0_manifest.txt new file mode 100644 index 0000000..bcd4b7f --- /dev/null +++ b/Assets/GoogleMobileAds/GoogleMobileAds_version-10.6.0_manifest.txt @@ -0,0 +1,78 @@ +Assets/ExternalDependencyManager/Editor/1.2.186/Google.IOSResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.186/Google.IOSResolver.pdb +Assets/ExternalDependencyManager/Editor/1.2.186/Google.JarResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.186/Google.JarResolver.pdb +Assets/ExternalDependencyManager/Editor/1.2.186/Google.PackageManagerResolver.dll +Assets/ExternalDependencyManager/Editor/1.2.186/Google.PackageManagerResolver.pdb +Assets/ExternalDependencyManager/Editor/1.2.186/Google.VersionHandlerImpl.dll +Assets/ExternalDependencyManager/Editor/1.2.186/Google.VersionHandlerImpl.pdb +Assets/ExternalDependencyManager/Editor/CHANGELOG.md +Assets/ExternalDependencyManager/Editor/Google.VersionHandler.dll +Assets/ExternalDependencyManager/Editor/Google.VersionHandler.pdb +Assets/ExternalDependencyManager/Editor/LICENSE +Assets/ExternalDependencyManager/Editor/README.md +Assets/ExternalDependencyManager/Editor/external-dependency-manager_version-1.2.186_manifest.txt +Assets/GoogleMobileAds/CHANGELOG.md +Assets/GoogleMobileAds/Editor/AndroidBuildPreProcessor.cs +Assets/GoogleMobileAds/Editor/BuildPreProcessor.cs +Assets/GoogleMobileAds/Editor/EditorLocalization.cs +Assets/GoogleMobileAds/Editor/EditorLocalizationData.cs +Assets/GoogleMobileAds/Editor/EditorPathUtils.cs +Assets/GoogleMobileAds/Editor/GoogleMobileAds.Editor.asmdef +Assets/GoogleMobileAds/Editor/GoogleMobileAdsDependencies.xml +Assets/GoogleMobileAds/Editor/GoogleMobileAdsSKAdNetworkItems.xml +Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettings.cs +Assets/GoogleMobileAds/Editor/GoogleMobileAdsSettingsEditor.cs +Assets/GoogleMobileAds/Editor/GoogleUmpDependencies.xml +Assets/GoogleMobileAds/Editor/GradleProcessor.cs +Assets/GoogleMobileAds/Editor/ManifestProcessor.cs +Assets/GoogleMobileAds/Editor/PListProcessor.cs +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/1024x768.png +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/300x250.png +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x100.png +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x480.png +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/320x50.png +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/468x60.png +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/480x320.png +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/728x90.png +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/768x1024.png +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdImages/AdInspectorHome.png +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AdInspector/768x1024.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/1024x768.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/AppOpen/768x1024.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/ADAPTIVE.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/BANNER.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/CENTER.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/FULL_BANNER.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LARGE_BANNER.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/LEADERBOARD.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/MEDIUM_RECTANGLE.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Banners/SMART_BANNER.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/1024x768.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Interstitials/768x1024.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/1024x768.prefab +Assets/GoogleMobileAds/Editor/Resources/PlaceholderAds/Rewarded/768x1024.prefab +Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.png +Assets/GoogleMobileAds/Editor/Resources/Ump/ConsentForm.prefab +Assets/GoogleMobileAds/Editor/Utils.cs +Assets/GoogleMobileAds/Editor/gma_settings_editor_localization_data.json +Assets/GoogleMobileAds/GoogleMobileAds.Android.dll +Assets/GoogleMobileAds/GoogleMobileAds.Common.dll +Assets/GoogleMobileAds/GoogleMobileAds.Core.dll +Assets/GoogleMobileAds/GoogleMobileAds.Ump.Android.dll +Assets/GoogleMobileAds/GoogleMobileAds.Ump.Unity.dll +Assets/GoogleMobileAds/GoogleMobileAds.Ump.dll +Assets/GoogleMobileAds/GoogleMobileAds.Ump.iOS.dll +Assets/GoogleMobileAds/GoogleMobileAds.Unity.dll +Assets/GoogleMobileAds/GoogleMobileAds.dll +Assets/GoogleMobileAds/GoogleMobileAds.iOS.dll +Assets/GoogleMobileAds/LICENSE +Assets/GoogleMobileAds/link.xml +Assets/Plugins/Android/GoogleMobileAdsPlugin.androidlib/AndroidManifest.xml +Assets/Plugins/Android/GoogleMobileAdsPlugin.androidlib/packaging_options.gradle +Assets/Plugins/Android/GoogleMobileAdsPlugin.androidlib/project.properties +Assets/Plugins/Android/googlemobileads-unity.aar +Assets/Plugins/iOS/GADUAdNetworkExtras.h +Assets/Plugins/iOS/NativeTemplates/GADTMediumTemplateView.xib +Assets/Plugins/iOS/NativeTemplates/GADTSmallTemplateView.xib +Assets/Plugins/iOS/unity-plugin-library.a diff --git a/Assets/GoogleMobileAds/GoogleMobileAds_version-10.6.0_manifest.txt.meta b/Assets/GoogleMobileAds/GoogleMobileAds_version-10.6.0_manifest.txt.meta new file mode 100644 index 0000000..ce59d02 --- /dev/null +++ b/Assets/GoogleMobileAds/GoogleMobileAds_version-10.6.0_manifest.txt.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f3f62747da9144319f7849f3fc6997be +labels: +- gvh +- gvh_manifest +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/GoogleMobileAds_version-10.6.0_manifest.txt +- gvhp_manifestname-0Google Mobile Ads for Unity +- gvhp_manifestname-1GoogleMobileAds +timeCreated: 0 diff --git a/Assets/GoogleMobileAds/LICENSE b/Assets/GoogleMobileAds/LICENSE new file mode 100644 index 0000000..b7c9ed1 --- /dev/null +++ b/Assets/GoogleMobileAds/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2013 Google Inc. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/Assets/GoogleMobileAds/LICENSE.meta b/Assets/GoogleMobileAds/LICENSE.meta new file mode 100644 index 0000000..4e34d55 --- /dev/null +++ b/Assets/GoogleMobileAds/LICENSE.meta @@ -0,0 +1,81 @@ +fileFormatVersion: 2 +guid: DCED4676809D4FD080DC99CC6B32B2AB +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/LICENSE +timeCreated: 1480838400 +PluginImporter: + serializedVersion: 1 + iconMap: {} + executionOrder: {} + isPreloaded: 0 + platformData: + Android: + enabled: 0 + settings: + CPU: AnyCPU + Any: + enabled: 0 + settings: {} + Editor: + enabled: 0 + settings: + CPU: AnyCPU + DefaultValueInitialized: true + OS: AnyOS + Linux: + enabled: 0 + settings: + CPU: None + Linux64: + enabled: 0 + settings: + CPU: None + LinuxUniversal: + enabled: 0 + settings: + CPU: None + OSXIntel: + enabled: 0 + settings: + CPU: None + OSXIntel64: + enabled: 0 + settings: + CPU: None + OSXUniversal: + enabled: 0 + settings: + CPU: None + Web: + enabled: 0 + settings: {} + WebStreamed: + enabled: 0 + settings: {} + Win: + enabled: 0 + settings: + CPU: None + Win64: + enabled: 0 + settings: + CPU: None + WindowsStoreApps: + enabled: 0 + settings: + CPU: AnyCPU + iOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + tvOS: + enabled: 0 + settings: + CompileFlags: + FrameworkDependencies: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Resources.meta b/Assets/GoogleMobileAds/Resources.meta new file mode 100644 index 0000000..3f07e72 --- /dev/null +++ b/Assets/GoogleMobileAds/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f77409e5fc90b6b4493cf25873774524 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/Resources/GoogleMobileAdsSettings.asset b/Assets/GoogleMobileAds/Resources/GoogleMobileAdsSettings.asset new file mode 100644 index 0000000..9d33e3c --- /dev/null +++ b/Assets/GoogleMobileAds/Resources/GoogleMobileAdsSettings.asset @@ -0,0 +1,22 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a187246822bbb47529482707f3e0eff8, type: 3} + m_Name: GoogleMobileAdsSettings + m_EditorClassIdentifier: + adMobAndroidAppId: ca-app-pub-3940256099942544~3347511713 + adMobIOSAppId: ca-app-pub-3940256099942544~1458002511 + enableKotlinXCoroutinesPackagingOption: 1 + enableGradleBuildPreProcessor: 1 + disableOptimizeInitialization: 0 + disableOptimizeAdLoading: 0 + userTrackingUsageDescription: + userLanguage: en diff --git a/Assets/GoogleMobileAds/Resources/GoogleMobileAdsSettings.asset.meta b/Assets/GoogleMobileAds/Resources/GoogleMobileAdsSettings.asset.meta new file mode 100644 index 0000000..8ac51d5 --- /dev/null +++ b/Assets/GoogleMobileAds/Resources/GoogleMobileAdsSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c5cf16432cb301347875a0b6fd27ab93 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/GoogleMobileAds/link.xml b/Assets/GoogleMobileAds/link.xml new file mode 100644 index 0000000..1302803 --- /dev/null +++ b/Assets/GoogleMobileAds/link.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/Assets/GoogleMobileAds/link.xml.meta b/Assets/GoogleMobileAds/link.xml.meta new file mode 100644 index 0000000..fdeac0e --- /dev/null +++ b/Assets/GoogleMobileAds/link.xml.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d6461f9591d240498f49453b73a48552 +labels: +- gvh +- gvh_version-10.6.0 +- gvhp_exportpath-GoogleMobileAds/link.xml +timeCreated: 1480838400 +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Legend/Define/Message/GameMsg_Logic.cs b/Assets/Legend/Define/Message/GameMsg_Logic.cs index d7de566..5de0ca5 100644 --- a/Assets/Legend/Define/Message/GameMsg_Logic.cs +++ b/Assets/Legend/Define/Message/GameMsg_Logic.cs @@ -1,68 +1,68 @@ -namespace BallKingdomCrush -{ - public static partial class GameMsg - { - public static readonly uint OpenGame = ++Cursor_BASE; - public static readonly uint Update111Completed = ++Cursor_BASE; - public static readonly uint BackMainScene = ++Cursor_BASE; - public static readonly uint Update101Completed = ++Cursor_BASE; - public static readonly uint Update102 = ++Cursor_BASE; - - public static uint Slot_refresh = ++Cursor_BASE; - public static uint Remake_state = ++Cursor_BASE; - public static readonly uint MakeupSuccess = ++Cursor_BASE; - public static readonly uint Update102Completed = ++Cursor_BASE; - public static uint PaySuccess = ++Cursor_BASE; - - public static uint Ad_success = ++Cursor_BASE; - public static uint UpdateHotFixMax = ++Cursor_BASE; - public static uint UpdateHotFixProgress = ++Cursor_BASE; - public static readonly uint RefreshMakeupData = ++Cursor_BASE; - public static uint Gold_refresh = ++Cursor_BASE; - public static uint Sheep_item_refresh = ++Cursor_BASE; - public static uint card_click = ++Cursor_BASE; - public static uint UpdateCurrency102 = ++Cursor_BASE; - - public static uint RefreshADTask = ++Cursor_BASE; - public static readonly uint GetReward = ++Cursor_BASE; - public static readonly uint ProcessReward = ++Cursor_BASE; - - public static readonly uint Update101 = ++Cursor_BASE; - public static readonly uint MakeUpConfirmUIClosed = ++Cursor_BASE; - - public static readonly uint Update111 = ++Cursor_BASE; - public static uint reset_game = ++Cursor_BASE; - public static uint GetTaskReward = ++Cursor_BASE; - public static uint pack_close = ++Cursor_BASE; - public static uint RefreshRedDot = ++Cursor_BASE; - public static uint resetH5progress = ++Cursor_BASE; - public static uint RefreshGame = ++Cursor_BASE; - public static uint RewardUIClosed = ++Cursor_BASE; - public static uint H5ViewClickBtn = ++Cursor_BASE; - public static uint apple_pay_success = ++Cursor_BASE; - public static uint apple_s_success = ++Cursor_BASE; - public static uint ExitGame = ++Cursor_BASE; - - public static uint UpdateNoads = ++Cursor_BASE; - public static uint Network_reconnection = ++Cursor_BASE; - public static uint resurgence = ++Cursor_BASE; - public static uint resurgence_close = ++Cursor_BASE; - public static uint RefreshSaveingPot = ++Cursor_BASE; - public static uint hideBroadCast = ++Cursor_BASE; - public static uint showBroadCast = ++Cursor_BASE; - public static uint updateRecordList = ++Cursor_BASE; - public static uint ThreeDaysGiftUIClose = ++Cursor_BASE; - public static uint rewardMul_close = ++Cursor_BASE; - public static uint RefreshConfig = ++Cursor_BASE; - public static uint UnlockLevelsuccess = ++Cursor_BASE; - public static uint creatCARD = ++Cursor_BASE; - public static uint LiveChange = ++Cursor_BASE; - public static uint UnlockSecretSuccess = ++Cursor_BASE; - public static uint UnlockAlbums = ++Cursor_BASE; - public static uint BuyVip = ++Cursor_BASE; - public static uint CheckEnd = ++Cursor_BASE; - public static uint ChatRefresh = ++Cursor_BASE; - public static uint AddChatNum = ++Cursor_BASE; - public static uint liveVideoLoaded = ++Cursor_BASE; - } +namespace BallKingdomCrush +{ + public static partial class GameMsg + { + public static readonly uint OpenGame = ++Cursor_BASE; + public static readonly uint Update111Completed = ++Cursor_BASE; + public static readonly uint BackMainScene = ++Cursor_BASE; + public static readonly uint Update101Completed = ++Cursor_BASE; + public static readonly uint Update102 = ++Cursor_BASE; + + public static uint Slot_refresh = ++Cursor_BASE; + public static uint Remake_state = ++Cursor_BASE; + public static readonly uint MakeupSuccess = ++Cursor_BASE; + public static readonly uint Update102Completed = ++Cursor_BASE; + public static uint PaySuccess = ++Cursor_BASE; + + public static uint Ad_success = ++Cursor_BASE; + public static uint UpdateHotFixMax = ++Cursor_BASE; + public static uint UpdateHotFixProgress = ++Cursor_BASE; + public static readonly uint RefreshMakeupData = ++Cursor_BASE; + public static uint Gold_refresh = ++Cursor_BASE; + public static uint Sheep_item_refresh = ++Cursor_BASE; + public static uint card_click = ++Cursor_BASE; + public static uint UpdateCurrency102 = ++Cursor_BASE; + + public static uint RefreshADTask = ++Cursor_BASE; + public static readonly uint GetReward = ++Cursor_BASE; + public static readonly uint ProcessReward = ++Cursor_BASE; + + public static readonly uint Update101 = ++Cursor_BASE; + public static readonly uint MakeUpConfirmUIClosed = ++Cursor_BASE; + + public static readonly uint Update111 = ++Cursor_BASE; + public static uint reset_game = ++Cursor_BASE; + public static uint GetTaskReward = ++Cursor_BASE; + public static uint pack_close = ++Cursor_BASE; + public static uint RefreshRedDot = ++Cursor_BASE; + public static uint resetH5progress = ++Cursor_BASE; + public static uint RefreshGame = ++Cursor_BASE; + public static uint RewardUIClosed = ++Cursor_BASE; + public static uint H5ViewClickBtn = ++Cursor_BASE; + public static uint IAP_PAY_SUCCESS = ++Cursor_BASE; + public static uint apple_s_success = ++Cursor_BASE; + public static uint ExitGame = ++Cursor_BASE; + + public static uint UpdateNoads = ++Cursor_BASE; + public static uint Network_reconnection = ++Cursor_BASE; + public static uint resurgence = ++Cursor_BASE; + public static uint resurgence_close = ++Cursor_BASE; + public static uint RefreshSaveingPot = ++Cursor_BASE; + public static uint hideBroadCast = ++Cursor_BASE; + public static uint showBroadCast = ++Cursor_BASE; + public static uint updateRecordList = ++Cursor_BASE; + public static uint ThreeDaysGiftUIClose = ++Cursor_BASE; + public static uint rewardMul_close = ++Cursor_BASE; + public static uint RefreshConfig = ++Cursor_BASE; + public static uint UnlockLevelsuccess = ++Cursor_BASE; + public static uint creatCARD = ++Cursor_BASE; + public static uint LiveChange = ++Cursor_BASE; + public static uint UnlockSecretSuccess = ++Cursor_BASE; + public static uint UnlockAlbums = ++Cursor_BASE; + public static uint BuyVip = ++Cursor_BASE; + public static uint CheckEnd = ++Cursor_BASE; + public static uint ChatRefresh = ++Cursor_BASE; + public static uint AddChatNum = ++Cursor_BASE; + public static uint liveVideoLoaded = ++Cursor_BASE; + } } \ No newline at end of file diff --git a/Assets/Legend/Helper/GameHelper.cs b/Assets/Legend/Helper/GameHelper.cs index 2edee36..78855df 100644 --- a/Assets/Legend/Helper/GameHelper.cs +++ b/Assets/Legend/Helper/GameHelper.cs @@ -1,1791 +1,1792 @@ -using System; -using System.Collections; -using FairyGUI; -using UnityEngine; -using DG.Tweening; -using Spine.Unity; -using System.Text; -using System.Collections.Generic; -using Random = UnityEngine.Random; -using System.Text.RegularExpressions; -using System.Linq; -using IgnoreOPS; -using Newtonsoft.Json; -using SGModule.Net; -using SGModule.NetKit; -using SGModule.Common; -using System.IO; -using System.Globalization; - -namespace BallKingdomCrush -{ - public static class GameHelper - { - public static int gameType = 0; - public static bool isAutoPop = false; - private static LoginModel loginModel; - private static Dictionary numDic = new Dictionary(); - public static bool isVipUnlock = false; - - public static string GetRandomNum(int count) - { - var resultStr = new StringBuilder(); - for (int i = 0; i < count; i++) - { - resultStr.Append(Random.Range(0, 10)); - } - - return resultStr.ToString(); - } - - public static Vector3 FguiPotToUnityTrfLocalPot(Vector3 pot) - { - var v = Vector3.zero; - v.x = pot.x; - v.y = -pot.y; - v.z = pot.z; - return v; - } - - public static string GetNumStr(decimal num, int floatLength = -1) - { - var numString = num.ToString(floatLength < 0 ? "" : $"f{floatLength}"); - if (num > 1000) - { - return numString; - } - - if (!numDic.ContainsKey(num)) - numDic.Add(num, numString); - return numDic[num]; - } - - public static void ShowLoading(float min = 0.2f, float max = 1f, Action onCompleted = null) - { - ShowLoading(Random.Range(min, max), onCompleted); - } - - public static void ShowLoading(float time, Action onCompleted = null) - { - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.NetLoadingUI_Open); - TimerHelper.mEasy.AddTimer(time, () => - { - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.NetLoadingUI_Close); - onCompleted?.Invoke(); - }); - } - - public static void ShowTips(string val, bool isLangue = false) - { - var valStr = val; - if (isLangue) - { - valStr = Language.GetContent(val); - } - - var tipsData = JoastData.GetTips(valStr); - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.SCTipsUI_Open, tipsData); - } - - public static void ShowVideoAd(string adId, Action onCompleted) - { - MaxADKit.ShowVideo(adId, isSuccess => - { - if (isSuccess) - { - CtrlDispatcher.Instance.Dispatch(CtrlMsg.WatchVideoFinish); - look_interad_numbers = 0; - - AdOverEvent(1); - } - else - { - ShowTips("not_ads", true); - } - - onCompleted?.Invoke(isSuccess); - }); - } - - public static void ShowInterstitial(string key) - { - if (GetVipLevel() >= 1) return; - // if (!true) - // { - // return; - // } - - - // if (Time.time < CanShowInterstitialTime) - // { - // return; - // } - - //if(Random.Range(0, 100)>ConfigSystem.GetCommonConf().interstitialtype) return; - MaxADKit.ShowInterstitial(key, isSuccess => - { - if (isSuccess) - { - SaveData.GetSaveObject().InterstitialPLayNum++; - if (SaveData.GetSaveObject().InterstitialPLayNum >= GetCommonModel().RemoveADsPackPopup) - { - SaveData.GetSaveObject().InterstitialPLayNum = 0; - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.LuckyPackUI_Open, true); - } - SaveData.SaveDataFunc(); - CtrlDispatcher.Instance.Dispatch(CtrlMsg.WatchIntVideoFinish); - - if (key == "AfterReward") - { - TrackKit.SendEvent(ADEventTrack.AD_Event, ADEventTrack.Property.afterRewardAdEnd); - } - AdOverEvent(2); - } - }); - - // CanShowInterstitialTime = (int)(Time.time + 30); - } - - - public static Vector2 GetUICenterPosition(GObject gObject, bool isCenter = false) - { - Vector2 centerPot = Vector2.zero; - if (!isCenter) - { - centerPot = gObject.size / 2; - } - - return gObject.LocalToRoot(Vector2.zero, GRoot.inst) + centerPot; - } - - public static void PlayFGUIFx(Transition transition, bool isReset = true, - PlayCompleteCallback onCompleted = null) - { - if (isReset) - { - if (transition.playing) - { - transition.Stop(); - } - } - - if (!transition.playing) - { - transition.Play(); - } - - transition.SetCompleteEvent(onCompleted); - } - - #region 时间判断 - - public static int GetTomorrowCountTime() - { - var today = DateTime.Now; - return 86400 - today.Hour * 3600 - today.Minute * 60 - today.Second; - } - - - public static long GetNowTime(bool isFix = false) - { -#if GAME_RELEASE - return DateTimeManager.Instance.GetServerCurrTimestamp(isFix); -#else - return DateTimeManager.Instance.GetCurrTimestamp(); -#endif - } - - - public static bool InToday(long time, int offset = 0, bool isInclude = false) - { - DateTime oldDate = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)); - oldDate = oldDate.AddSeconds(time); - oldDate = new DateTime(oldDate.Year, oldDate.Month, oldDate.Day); - - - var yesterday = DateTimeManager.Instance.GetCurrDateTime().AddDays(offset); - - yesterday = new DateTime(yesterday.Year, yesterday.Month, yesterday.Day); - if (isInclude) - { - return oldDate >= yesterday; - } - - return oldDate > yesterday; - } - - #endregion - - - public static void SetSelfAvatar(GLoader gLoader, int avatarId = 0) - { - - // var avatarId = DataMgr.PlayerAvatarId.Value; - TextureHelper.SetAvatarToLoader(avatarId, gLoader); - } - - public static void SetSelfCountryFlag(GLoader gLoader) - { - SetCountryFlag(gLoader, GetLoginModel().Country.ToLower()); - } - - - public static void SetCountryFlag(GLoader countryFlagLoader, string country) - { - var sprite = LoadKit.Instance.LoadSprite("Atlas.Flag", country.ToLower()); - if (sprite == null) - { - sprite = LoadKit.Instance.LoadSprite("Atlas.Flag", "us"); - } - - var countryTexture = new NTexture(sprite); - countryFlagLoader.texture = countryTexture; - } - - - public static string LimitName(string name, int length, string suffix = "...") - { - if (!string.IsNullOrEmpty(name) && name.Length > length) - { - name = name.Substring(0, length) + suffix; - } - - return name; - } - - - public static void SetName(GTextField gTextField, string name = "", bool isLimit = false, int length = 6) - { - if (name == null || name.IsNullOrWhiteSpace()) - { - name = "LoveLegend"; - } - - if (isLimit) - { - name = LimitName(name, length); - } - - gTextField.text = name; - } - - public static string GetUserName() - { - string name = DataMgr.PlayerName.Value; - if (name == null || name.IsNullOrWhiteSpace()) - { - name = GetPlayerInviteCode(); - } - - name ??= "LoveLegend"; - - - return name; - } - - public static string GetPlayerInviteCode() - { - return GetLoginModel().InviteCode; - } - - public static long GetUID() - { - return GetLoginModel().Uid; - } - - public static void OnRiseUI(int itemId, UILayerType layerType = UILayerType.Highest) - { - var gObject = GetItemUI(itemId); - if (gObject != null) - { - SetUILayer(gObject, gObject.sortingOrder + 500, layerType); - } - } - - - public static void OnRiseUIRecover(int itemId, UILayerType layerType = UILayerType.Top) - { - var gObject = GetItemUI(itemId); - if (gObject == null) return; - SetUILayer(gObject, gObject.sortingOrder - 500, layerType); - UIManager.Instance.ResetGObjectUILayer(gObject); - } - - - public static GComponent GetItemUI(int itemId) - { - GComponent gObject = null; - switch (itemId) - { - case 101: - { - // if (UIManager.Instance.GetDynamicUI(UIConst.CurrencyUI) is CurrencyUI topUI) - // { - // gObject = topUI.ui.btn_currency; - // } - } - break; - } - - return gObject; - } - - public static void SetUILayer(GObject gObject, int sortingOrder, UILayerType layerType) - { - gObject.sortingOrder = sortingOrder; - UIManager.Instance.SetGObjectUILayer(layerType, gObject); - } - - public static LoginModel GetLoginModel() - { - if (loginModel != null) - { - return loginModel; - } - - return loginModel = LoginKit.Instance.LoginModel; - } - - public static bool CheckNameValidly(string name) - { - if (string.IsNullOrEmpty(name)) - { - return false; - } - - - const string expression = @"^[a-zA-Z]*$"; - return Regex.IsMatch(name, expression); - } - - - public static bool IsGiftSwitch() - { - //is debug test-------- - - - // return false; - return true; - bool b = GetLoginModel().IsMagic; - - return GetLoginModel().IsMagic; - } - - public static decimal Get101() - { - // DataMgr.Coin.Value = 999999;//zhushi - return DataMgr.Coin.Value; - } - public static decimal Get102() - { - return DataMgr.Ticket.Value; - } - - public static void InitGalleryView(GList glist, int numItems, float duration, - ListItemRenderer OnRendererPersonItem, - int itemWidth) - { - glist.itemRenderer = OnRendererPersonItem; - glist.numItems = numItems; - - var moveW = itemWidth * glist.numItems - glist.viewWidth; - DOVirtual.Float(0, moveW + 300, duration, prg => - { - if (prg > moveW) - { - return; - } - - glist.scrollPane.SetPosX(prg, false); - }).SetLoops(-1); - } - - public static SkeletonAnimation ShowFinger(GGraph target, GTweenCallback onComplete = null) - { - Action closeCallBack = null; - var handSpine = FXManager.Instance.SetFx(target, Fx_Type.fx_hand_pre, ref closeCallBack); - handSpine.state.SetAnimation(0, "idle", true); - var tweenBtn = CommonHelper.FadeIn(target); - tweenBtn.OnComplete(onComplete); - return handSpine; - } - - public static void ShowGuide(int _step, Vector2 _targeSize, Vector2 _targePos, Action _onEnd = null, - GObject _fingerGuideObj = null) - { - // var guideData = new GuideData() - // { - // targeSize = _targeSize, - // targePos = _targePos, - // step = _step, - // onEnd = _onEnd, - // fingerGuidePos = _targePos, - // }; - // - // if (_fingerGuideObj != null) - // { - // guideData.fingerGuidePos = GameHelper.GetUICenterPosition(_fingerGuideObj); - // } - // - // - // guideData.needMaskCloseEvent = _step == 10; - // - // UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.GuideUI_Open, guideData); - // - // if (_step == 3) - // { - // } - } - - public static CommonModel GetCommonModel() - { - return ConfigSystem.GetCommonConf(); - } - - /// - /// 价格字符串 - /// - /// 价格 - /// - public static string Get102Str(decimal currency) - { - var exchangeRateVO = GetExchangeRateVO(); - decimal price = currency * (decimal)exchangeRateVO.Multi; - return $"{exchangeRateVO.Payicon}{price:N}"; - } - - /// - /// 金币/AD 字符串 - /// - /// - /// - public static string Get101Str(decimal currency = -1) - { - if (currency == -1) - { - currency = DataMgr.Coin.Value; - } - - return $"{currency:N0}"; - } - - public static string getChNumber(decimal ch) - { - return $"{ch:N}"; - } - - public static string getPrice(decimal ch) - { - var exchangeRateVO = GetExchangeRateVO(); - decimal price = ch * (decimal)exchangeRateVO.Multi; - return $"{exchangeRateVO.Payicon}{price:N}"; - } - - public static string ChooseCurrency() - { - var exchangeRateVO = GetExchangeRateVO(); - return exchangeRateVO.Payicon; - } - - - public static string GetDeviceLanguage() - { - return "US"; - } - - public static string GetPaymentPayer() - { - // return GetPaymentTypeVO().payer; - return "PayPal"; - } - public static ExchangeRate GetExchangeRateVO() - { - var code = GetCurrCountry(); - var voList = ConfigSystem.GetConfig(); - foreach (var ExchangeRateVo in voList) - { - if (ExchangeRateVo.CountryKey.Contains(code)) - { - return ExchangeRateVo; - } - } - return voList[0]; - } - public static string GetCurrCountry() - { - string countryCode = "US"; - try - { - countryCode = RegionInfo.CurrentRegion.TwoLetterISORegionName; - Debug.Log("国家代码: " + countryCode); // 例如:US, CN, JP, DE 等 - } - catch (System.Exception e) - { - Debug.LogError("无法获取国家代码: " + e.Message); - } - return countryCode.ToUpper(); - } - - public static bool CheckAccountValidly(string account) - { - return CheckEMailValidly(account); - } - public static bool CheckEMailValidly(string eMail) - { - if (eMail.IsNullOrWhiteSpace()) - { - return false; - } - - - const string expression = - @"^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$"; - return Regex.IsMatch(eMail, expression); - } - - - public static bool IsContinuousSignIn() - { - if (DataMgr.SignState.Value.Count == 0) - { - return false; - } - - if (DataMgr.SignState.Value.Count >= 7) - { - return false; - } - - var tmp = DataMgr.SignState.Value[DataMgr.SignState.Value.Count - 1]; - return InToday(tmp, -1, true); - } - - - public static float[] GetRewardValue(int type) - { - var currentRmLevel = 1; - - for (var i = 0; i < DataMgr.MakeupTaskHistory.Value.Count; i++) - { - var task = DataMgr.MakeupTaskHistory.Value[i]; - - if (task.status == MakeupTaskStatus.Inline) - { - currentRmLevel++; - } - } - - if (currentRmLevel > 3) - { - currentRmLevel = 3; - } - - var currentIndex = GetValueIndex(currentRmLevel); - - if (currentIndex != -1) - { - if (type == 0) - { - var vos = ConfigSystem.GetConfig(); - SmallrewardNum rewardNumVo = vos[currentIndex]; - return GetValue(rewardNumVo, currentRmLevel); - - } - else if (type == 1) - { - var vos = ConfigSystem.GetConfig(); - LargerewardNum rewardNumVo = vos[currentIndex]; - return GetValue(rewardNumVo, currentRmLevel); - - } - else if (type == 2) - { - var vos = ConfigSystem.GetConfig(); - RewardNum rewardNumVo = vos[currentIndex]; - return GetValue(rewardNumVo, currentRmLevel); - - } - - } - return new float[] { 0, 0 }; - - - - } - - private static int GetValueIndex(int index) - { - var ch = Get101(); - var vos = ConfigSystem.GetConfig(); - - var currentIndex = -1; - if (ch < 0) - { - currentIndex = 0; - } - else - { - for (var i = 0; i < vos.Count; i++) - { - var rewardNumVo = vos[i]; - var chArray = index switch - { - 1 => rewardNumVo.ch_1, - 2 => rewardNumVo.ch_2, - 3 => rewardNumVo.ch_3, - _ => default - }; - - if (i < vos.Count - 1) - { - if (ch >= (decimal)chArray[0] && ch < (decimal)chArray[1]) - { - currentIndex = i; - break; - } - } - else - { - if (ch >= (decimal)chArray[0]) - { - currentIndex = i; - break; - } - } - } - } - - return currentIndex; - } - - - private static float[] GetValue(SmallrewardNum rewardNumVo, int level) - { - - float[] normalArray = null; - var videoRewardRate = 0f; - int[] weight_array = null; - int[] boost_array = null; - switch (level) - { - case 1: - - normalArray = rewardNumVo.nor_1; - videoRewardRate = rewardNumVo.rv_1; - weight_array = rewardNumVo.weight_1; - boost_array = rewardNumVo.Boost_1; - break; - case 2: - - normalArray = rewardNumVo.nor_2; - videoRewardRate = rewardNumVo.rv_2; - weight_array = rewardNumVo.weight_2; - boost_array = rewardNumVo.Boost_2; - break; - case 3: - - normalArray = rewardNumVo.nor_3; - videoRewardRate = rewardNumVo.rv_3; - weight_array = rewardNumVo.weight_3; - boost_array = rewardNumVo.Boost_3; - - break; - } - int rate_all = 0; - for (int i = 0; i < weight_array.Length; i++) - { - rate_all += weight_array[i]; - } - int random_ = Random.Range(0, rate_all); - int int_ = 0; - for (int i = 0; i < weight_array.Length; i++) - { - int_ += weight_array[i]; - if (random_ < int_) - { - videoRewardRate = boost_array[i]; - break; - } - } - - float normalValue = Random.Range(normalArray[0], normalArray[1]); - normalValue = (float)Math.Round(normalValue, 2); - return new float[] { normalValue, videoRewardRate }; - } - private static float[] GetValue(LargerewardNum rewardNumVo, int level) - { - - float[] normalArray = null; - var videoRewardRate = 0f; - int[] weight_array = null; - int[] boost_array = null; - switch (level) - { - case 1: - - normalArray = rewardNumVo.nor_1; - videoRewardRate = rewardNumVo.rv_1; - weight_array = rewardNumVo.weight_1; - boost_array = rewardNumVo.Boost_1; - break; - case 2: - normalArray = rewardNumVo.nor_2; - videoRewardRate = rewardNumVo.rv_2; - weight_array = rewardNumVo.weight_2; - boost_array = rewardNumVo.Boost_2; - break; - case 3: - - normalArray = rewardNumVo.nor_3; - videoRewardRate = rewardNumVo.rv_3; - weight_array = rewardNumVo.weight_3; - boost_array = rewardNumVo.Boost_3; - break; - } - - int rate_all = 0; - for (int i = 0; i < weight_array.Length; i++) - { - rate_all += weight_array[i]; - } - int random_ = Random.Range(0, rate_all); - int int_ = 0; - for (int i = 0; i < weight_array.Length; i++) - { - int_ += weight_array[i]; - if (random_ < int_) - { - videoRewardRate = boost_array[i]; - break; - } - } - - - float normalValue = Random.Range(normalArray[0], normalArray[1]); - normalValue = (float)Math.Round(normalValue, 2); - return new float[] { normalValue, videoRewardRate }; - } - private static float[] GetValue(RewardNum rewardNumVo, int level) - { - - float[] normalArray = null; - var videoRewardRate = 0f; - int[] weight_array = null; - int[] boost_array = null; - switch (level) - { - case 1: - - normalArray = rewardNumVo.nor_1; - videoRewardRate = rewardNumVo.rv_1; - weight_array = rewardNumVo.weight_1; - boost_array = rewardNumVo.Boost_1; - break; - case 2: - - normalArray = rewardNumVo.nor_2; - videoRewardRate = rewardNumVo.rv_2; - weight_array = rewardNumVo.weight_2; - boost_array = rewardNumVo.Boost_2; - break; - case 3: - - normalArray = rewardNumVo.nor_3; - videoRewardRate = rewardNumVo.rv_3; - weight_array = rewardNumVo.weight_3; - boost_array = rewardNumVo.Boost_3; - - break; - } - - int rate_all = 0; - for (int i = 0; i < weight_array.Length; i++) - { - rate_all += weight_array[i]; - } - int random_ = Random.Range(0, rate_all); - int int_ = 0; - for (int i = 0; i < weight_array.Length; i++) - { - int_ += weight_array[i]; - if (random_ < int_) - { - videoRewardRate = boost_array[i]; - break; - } - } - - float normalValue = Random.Range(normalArray[0], normalArray[1]); - normalValue = (float)Math.Round(normalValue, 2); - return new float[] { normalValue, videoRewardRate }; - } - - public static decimal GetQuizRate() - { - return 0m; - } - - - public static decimal GetNormalRewardValue() - { - return 0m; - } - - - - /// - /// 传的是初始位置的GObject对象 - /// - public static void GetRewardOnly(decimal value, RewardOrigin origin, GObject startGObject = null, - GObject endGObject = null, Action onCompleted = null, decimal rate = 1) - { - GetReward(value, origin, startGObject, endGObject, false, false, onCompleted, rate); - } - - public static void GetReward(decimal value, RewardOrigin origin, GObject startGObject = null, - GObject endGObject = null, - bool isDialog = true, bool isNeedAd = true, - Action onCompleted = null, decimal rate = 1, decimal ctRate = 50) - { - var rewardData = new RewardData(); - var rewardSingleData = new RewardSingleData(101, value, origin) - { - multiRate = rate - }; - - - if (startGObject != null) - { - rewardSingleData.startPosition = GetUICenterPosition(startGObject); - } - - - if (endGObject != null) - { - rewardSingleData.endPosition = GetUICenterPosition(endGObject); - } - - rewardData.AddReward(rewardSingleData); - - if (isDialog) - { - rewardData.displayType = RewardDisplayType.RewardFly | RewardDisplayType.Dialog | - RewardDisplayType.ValueChange; - - rewardData.condition = isNeedAd ? RewardCondition.AD : RewardCondition.None; - } - else - { - rewardData.displayType = RewardDisplayType.RewardFly | RewardDisplayType.ValueChange; - } - - - rewardData.AddCompleted(onCompleted); - rewardData.ctRate = ctRate; - GameDispatcher.Instance.Dispatch(GameMsg.GetReward, rewardData); - } - - - /// - /// 传的是位置 - /// - public static void GetRewardOnly1(int id, decimal value, RewardOrigin origin, Vector2 startPos, - Vector2 endPos, Action onCompleted = null, decimal rate = 1) - { - GetReward1(id, value, origin, startPos, endPos, false, false, onCompleted, rate); - } - - public static void GetReward1(int id, decimal value, RewardOrigin origin, Vector2 startPos, - Vector2 endPos, - bool isDialog = true, bool isNeedAd = true, - Action onCompleted = null, decimal rate = 1, decimal ctRate = 50) - { - var rewardData = new RewardData(); - var rewardSingleData = new RewardSingleData(id, value, origin) - { - multiRate = rate - }; - - - if (startPos != null) - { - rewardSingleData.startPosition = startPos; - } - - - if (endPos != null) - { - rewardSingleData.endPosition = endPos; - } - - rewardData.AddReward(rewardSingleData); - - if (isDialog) - { - rewardData.displayType = RewardDisplayType.RewardFly | RewardDisplayType.Dialog | - RewardDisplayType.ValueChange; - - rewardData.condition = isNeedAd ? RewardCondition.AD : RewardCondition.None; - } - else - { - rewardData.displayType = RewardDisplayType.RewardFly | RewardDisplayType.ValueChange; - } - - - rewardData.AddCompleted(onCompleted); - rewardData.ctRate = ctRate; - GameDispatcher.Instance.Dispatch(GameMsg.GetReward, rewardData); - } - - - - public static void addInterAdnumber() - { - if (GetVipLevel() >= 1) return; - look_interad_numbers++; - Debug.Log($"[back hall]1 SaveData.GetSaveObject().is_get_removead=========={SaveData.GetSaveObject().is_get_removead} "); - - if (!SaveData.GetSaveObject().is_get_removead && look_interad_numbers >= ConfigSystem.GetCommonConf().playtimes && GameHelper.IsGiftSwitch()) - { - look_interad_numbers = 0; - if (Random.Range(0, 100) < ConfigSystem.GetCommonConf().interstitialtype) - { - if (UIManager.Instance.IsExistUI(UIConst.H5UI)) - { - GameHelper.ShowInterstitial("interstitial_gameend"); - } - else - { - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.AdcomingUI_Open); - } - } - } - } - public static decimal GetVideoRate() - { - return 0m; - } - - public static int GetItemNumber(int type) - { - return type switch - { - 0 => DataMgr.PropRemoveNum.Value, - 1 => DataMgr.PropBackNum.Value, - 2 => DataMgr.PropRefreshNum.Value, - _ => 0 - }; - } - - public static void SetItemNumber(int type, int value) - { - switch (type) - { - case 0: - DataMgr.PropRemoveNum.Value = value; - break; - case 1: - DataMgr.PropBackNum.Value = value; - break; - case 2: - DataMgr.PropRefreshNum.Value = value; - break; - } - } - public static void AddItemNumber(int type, int change) - { - switch (type) - { - case 0: - DataMgr.PropRemoveNum.Value += change; - break; - case 1: - DataMgr.PropBackNum.Value += change; - break; - case 2: - DataMgr.PropRefreshNum.Value += change; - break; - } - } - - public static int GetLevel() - { - // return DataMgr.GameLevel.Value = 5;//zhushi - return DataMgr.GameLevel.Value; - - } - public static void SetLevel(int level) - { - DataMgr.GameLevel.Value = level; - } - public static int GetLevelstate() - { - return DataMgr.ResurrectionState.Value;//4种,数字3为可以用广告和金币复活,2为只能用广告,1为只能用金币。0为不能复活 - } - - public static void SetLevelstate(int state) - { - DataMgr.ResurrectionState.Value = state; - } - - public static int GetGoldNumber() - { - // return PlayerPrefs.GetInt("_gold", 50); - int goldNum = (int)Get101(); - - return goldNum; - } - public static void AddGoldNumber(int value) - { - AddGold(value); - } - public static bool CheckGoldNumber(int target) - { - return GetGoldNumber() >= target; - } - - private static int _times = 0; - public static void AddGameTime() - { - if (_times >= 10) - { - DataMgr.GameTime.Value += _times; - _times = 0; - } - _times++; - } - public static int GetGameTime() - { - return DataMgr.GameTime.Value; - } - - public static void SetGameday() - { - DataMgr.GameDay.Value = DateTime.Now.Day; - } - public static int GetGameday() - { - return DataMgr.GameDay.Value; - } - - - public static int GetGameExp() - { - return DataMgr.GameExperience.Value; - } - public static void AddGameExp(int change) - { - DataMgr.GameExperience.Value += change; - } - public static void ResetGameExp() - { - DataMgr.GameExperience.Value = 0; - } - public static int GetBattleLv() - { - int exp = GetGameExp(); - List list = ConfigSystem.GetConfig(); - for (int i = 0; i < list.Count; i++) - { - if (exp < list[i].Eliminating_quantity) - { - return i; - - } - } - return list.Count; - } - public static void AddGold(int a) - { - DataMgr.Coin.Value += a; - GameDispatcher.Instance.Dispatch(GameMsg.Gold_refresh); - } - public static void AddGold(float a) - { - DataMgr.Coin.Value += (int)a; - } - public static bool needShowLevelstate(int id = -1) - { - - // var makeupTaskData = DataMgr.MakeupTaskHistory.Value.Last(); - // var vo = ConfigSystem.GetConfig().GetData(makeupTaskData.tableId); - // int lv = vo.id; - // int a = DataMgr.ChLevel.Value; - // if (id != -1) lv = id + 1; - // if (a < lv) - // { - // return true; - // } - - return false; - } - - public static void addMoney(int a) - { - DataMgr.Ticket.Value += a; - - } - public static void addMoney(float a) - { - DataMgr.Ticket.Value = (decimal)((float)DataMgr.Ticket.Value + a); - - } - - - public static bool showGameUI = true; - - public static int look_interad_numbers = 0; - - public static bool is_first_login = true; - - public static Dictionary statusDic = new Dictionary(); - public static Dictionary> statusDic2 = new Dictionary>(); - - public static string trace_id; - - - public static void SendLogToServer(string message, string stacktrace, LogType type) - { - // 如果只需要日期部分,可以使用ToShortDateString()或ToString("yyyy-MM-dd")等进行格式化 - if (!GameHelper.GetLoginModel().DebugLog) return; - System.DateTime currentDate = System.DateTime.Now; - var formattedDate = currentDate.ToString("yyyy_MM_dd_HH_mm"); - var md5Str = MD5Kit.GetStringMD5(message + stacktrace); - if (!statusDic2.ContainsKey(formattedDate)) - { - statusDic2.Add(formattedDate, new Dictionary()); - } - if (!statusDic2[formattedDate].ContainsKey(md5Str)) - { - statusDic2[formattedDate].Add(md5Str, false); - } - //Debug.Log($"SendLogToServer requestData========={formattedDate} \nmd5Str=== {md5Str}"); - if (statusDic2[formattedDate][md5Str]) - { - return; - } - long user_id = 0; - if (loginModel != null && loginModel.Uid != 0) user_id = loginModel.Uid; - var requestData = new - { - uid = user_id, - device = SystemInfo.deviceModel, - os_ver = SystemInfo.operatingSystem, - network = GetNetworkType(), - device_id = SystemInfo.deviceUniqueIdentifier, - pack_name = ConfigManager.GameConfig.packageName, - version = Application.version, - channel = SuperApplication.Instance.attribution, - level = type == 0 ? "error" : "warn", - message = message, - stacktrace = stacktrace - }; - statusDic2[formattedDate][md5Str] = true; - // Debug.Log($"SendLogToServer requestData1========={JsonConvert.SerializeObject(requestData)}"); - // NetworkKit.Post("event/cliDebugLog", requestData, (isSuccess, data) => - // { - - // }); - } - private static string GetNetworkType() - { - string types = "Not Connected"; - switch (Application.internetReachability) - { - case NetworkReachability.ReachableViaCarrierDataNetwork: - types = "Mobile Data"; - break; - case NetworkReachability.ReachableViaLocalAreaNetwork: - types = "Wi-Fi"; - break; - } - return types; - } - - - private static GameObject RainPlayUI; - - public static void ShowSheepPlayUI(bool isShow) - { - if (RainPlayUI == null) - { - RainPlayUI = GameObject.Find("(RainPlayUI)com_game"); - } - - if (RainPlayUI != null) - { - RainPlayUI.transform.localPosition = isShow ? new Vector3(0, 0, 0) : new Vector3(-2000, 0, 0); - } - } - - public static bool IsTemporaryEnd; - - - public static void IsShowFirstReward() - { - var isGet = DataMgr.GetFirstReaward.Value; - if (!isGet && IsGiftSwitch()) - { - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.FirstRewardUI_Open); - } - } - - public static Dictionary adCallbackInfo = new Dictionary(); - - // public static void SendRevenueToAF(string purch_number) - // { - // if (!GameHelper.IsAdModelOfPay() && !string.IsNullOrEmpty(purch_number) && decimal.TryParse(purch_number, out decimal revenue)) - // { - // // Debug.Log("付费收益上报AF----------- " + revenue.ToString()); - // // adCallbackInfo.Clear(); - // // adCallbackInfo.Add("appsflyer_id", AppsFlyer.getAppsFlyerId()); - // // adCallbackInfo.Add("customer_user_id", GameHelper.GetLoginModel().uid.ToString()); - // // adCallbackInfo.Add("af_currency", "USD"); - // // adCallbackInfo.Add("af_revenue", revenue.ToString()); - // // AppsFlyer.sendEvent("af_purchase", adCallbackInfo); - // - // GameHelper.sendRevenueToServer("af_purchase", "af_revenue", (int)(revenue * 10000)); - // } - // } - // public static void sendRevenueToServer(string eventname, string eventproperty, int integer) - // { - // NetworkKit.BuriedPoint(eventname, eventproperty, integer); - // } - public static void sendHighRevenueToAF() - { - // float purch_number = GameHelper.GetCommonModel().afSendNum; - // string countryCode = "USD"; - // adCallbackInfo.Clear(); - // adCallbackInfo.Add("appsflyer_id", AppsFlyer.getAppsFlyerId()); - // adCallbackInfo.Add("customer_user_id", GameHelper.GetLoginModel().uid.ToString()); - // adCallbackInfo.Add("af_currency", countryCode); - // adCallbackInfo.Add("af_revenue", purch_number.ToString()); - - // AppsFlyer.sendEvent("af_new_purchase", adCallbackInfo); - - // Debug.Log($"AppsFlyer sendEvent af_new_purchase {purch_number}"); - } - - - //获取当前时间戳,精确到秒的时间戳 - public static long GetCurrentTimestamp() - { - // 获取当前UTC时间 - DateTime now = DateTime.UtcNow; - // 计算从1970年1月1日00:00:00到现在的总秒数 - long timestamp = (long)(now - new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)).TotalSeconds; - return timestamp; - } - - /// - /// 检查是否有网络 - /// - /// true:有网, false:没网 - public static bool IsConnect() - { - try - { - // 检查 NetChecker.Instance 是否为空 - if (NetChecker.Instance == null) - { - Debug.LogWarning("NetChecker.Instance is null, returning false for network connectivity"); - return false; - } - - return NetChecker.Instance.GetConnectionStatus() == ConnectionStatus.Connected; - } - catch (Exception ex) - { - // 记录异常日志 - Debug.LogError($"检查网络连接状态时发生异常: {ex.Message}\n{ex.StackTrace}"); - - // 在出现异常时,默认返回false(无网络连接) - // 这样可以避免因网络检查异常导致的程序中断 - return false; - } - } - - /// - /// 看完广告事件上报 - /// - /// 1:激励 2:插屏 - public static void AdOverEvent(int type) - { - - RespAdEventData respData = new RespAdEventData() - { - type = type - }; - - NetKit.Instance.Post("event/adWatchOver", respData); - } - - /// - /// 看完广告收益上报 - /// - /// 1:激励 2:插屏 - public static void AdOverRevenueEvent(int type, float revenue) - { - - RespAdRevenueEventData respData = new RespAdRevenueEventData() - { - type = type, - revenue = revenue - }; - // Debug.Log($"[Max] AdOverRevenueEvent --------{JsonConvert.SerializeObject(respData)} "); - NetKit.Instance.Post("event/adRevenue", respData, (response) => - { - Debug.Log($"[Max] adRevenue ------IsSuccess-- {response.IsSuccess} "); - - }); - } - /// - /// 玩法时长上报 - /// - /// 玩法类型:1:羊了个羊 2:单词接龙 3:关不住我 - public static void PlayGameTimeEvent(int gameType, Action action = null) - { - m_gameTimes = GetPlayGameTimes(); - - if (m_gameTimes == 0) - { - action?.Invoke(); - return; - } - RespGameTimeEventData respData = new RespGameTimeEventData() - { - type = gameType, - second = m_gameTimes - }; - - m_gameTimes = 0; - - PlayerPrefs.SetInt("game_times", m_gameTimes); - - NetKit.Instance.Post("event/gameTime", respData, _ => - { - // Debug.Log($"PlayGameTimeEvent==== {isSuccess}"); - action?.Invoke(); - }); - } - private static int m_gameTimes = 0; - - public static void SetGameTimes() - { - m_gameTimes++; - PlayerPrefs.SetInt("game_times", m_gameTimes); - } - - public static int GetPlayGameTimes() - { - return PlayerPrefs.GetInt("game_times", 0); - } - - - /// - /// 是否能关闭结算界面(必须等调控接口返回数据后才能关闭) - /// - private static bool isCanCloseResultView = false; - - public static bool GetCloseResult() - { - if (!IsConnect()) - { - ShowTips("no_network", true); - } - - return isCanCloseResultView; - } - public static void SetCloseResult(bool isCan) - { - isCanCloseResultView = isCan; - } - - /// - /// 第几个玩法调控表 - /// - public static int conf_num = 1; - /// - /// 玩法调控,请求配置 - /// - public static void RequestGameConfig() - { - NetKit.Instance.Post("game/regulate", null, response => - { - if (response.IsSuccess) - { - Debug.Log($"RequestGameConfig==== {response.Data.conf_num}"); - PlayerPrefs.SetInt("game_conf_num", response.Data.conf_num); - conf_num = response.Data.conf_num; - } - - isCanCloseResultView = true; - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.PayloadingUI_Close); - }); - } - - /// - /// 是否是广告兑换模式 - /// - /// true:广告兑换 -- false:三方支付 - public static bool IsAdModelOfPay() - { - - var isAd = GetLoginModel().Enwp != 1; - // return true; - return isAd; - } - - public static string GetEventName() - { - var name = ADEventTrack.AD_Event; - if (!IsAdModelOfPay()) - { - name = ADEventTrack.MaxPayEvent; - } - return name; - } - public static List makeupLevels = new(); - public static void SetLevelsList() - { - - List makeupList = ConfigSystem.GetConfig(); - for (int i = 0; i < makeupList.Count; i++) - { - makeupLevels.Add(makeupList[i].levels_need); - } - // Debug.Log($"barry makeupLevels-======== {SerializeUtil.ToJson(makeupLevels)}"); - } - - public static bool IsShowLevelTips() - { - GameHelper.SetLevelsList(); - bool isShow = false; - for (int i = 0; i < makeupLevels.Count; i++) - { - if (IsGiftSwitch() && GetLevel() == makeupLevels[i]) - { - isShow = true; - break; - } - - } - - return isShow; - } - public static long getNowTimeByMillisecond() - { -#if !GAME_RELEASE - return DateTimeManager.Instance.GetCurrTimesTampByMillisecond(); - // return DateTimeManager.Instance.GetServerCurrTimestamp(); -#else - return DateTimeManager.Instance.GetServerCurrTimestampByMillisecond(); -#endif - } - public static void OpenEmail() - { - string email = ""; - var common = ConfigSystem.GetCommonConf(); - if (common != null) - { - email = common.contactUs; - } - - string subject = Uri.EscapeDataString("Contact Us"); - string body = Uri.EscapeDataString($"My UID is [ {GetUID()} ]\n"); - - string url = $"mailto:{email}?subject={subject}&body={body}"; - - try - { - OpenBrowser.OpenURL(url); - GameHelper.ShowTips("try_send", true); - } - catch (Exception ex) - { - Debug.LogError("打开邮箱失败:" + ex.Message); - GameHelper.ShowTips("send_failed", true); - } - } - - public static int[] GetRewardBoost(int type) - { - var currentRedeemLevel = 1; - - for (var i = 0; i < DataMgr.MakeupTaskHistory.Value.Count; i++) - { - var task = DataMgr.MakeupTaskHistory.Value[i]; - - if (task.status == MakeupTaskStatus.Inline) - { - currentRedeemLevel++; - } - } - - // Debug.Log($"GetRewardValue=====================currentRedeemLevel {currentRedeemLevel} \n type: {type}"); - - if (currentRedeemLevel > 3) - { - currentRedeemLevel = 3; - } - - var currentIndex = GetValueIndex(currentRedeemLevel); - - if (currentIndex != -1) - { - - if (type == 0) - { - var vos = ConfigSystem.GetConfig(); - SmallrewardNum rewardNumVo = vos[currentIndex]; - return GetBoost(rewardNumVo, currentRedeemLevel); - } - else if (type == 1) - { - var vos = ConfigSystem.GetConfig(); - LargerewardNum rewardNumVo = vos[currentIndex]; - return GetBoost(rewardNumVo, currentRedeemLevel); - } - else if (type == 2) - { - var vos = ConfigSystem.GetConfig(); - RewardNum rewardNumVo = vos[currentIndex]; - return GetBoost(rewardNumVo, currentRedeemLevel); - - } - - } - return null; - } - - private static int[] GetBoost(SmallrewardNum rewardNumVo, int level) - { - - int[] boost_array = null; - switch (level) - { - case 1: - boost_array = rewardNumVo.Boost_1; - break; - case 2: - boost_array = rewardNumVo.Boost_2; - break; - case 3: - boost_array = rewardNumVo.Boost_3; - break; - } - return boost_array; - } - private static int[] GetBoost(LargerewardNum rewardNumVo, int level) - { - - int[] boost_array = null; - switch (level) - { - case 1: - boost_array = rewardNumVo.Boost_1; - break; - case 2: - boost_array = rewardNumVo.Boost_2; - break; - case 3: - boost_array = rewardNumVo.Boost_3; - break; - } - return boost_array; - } - private static int[] GetBoost(RewardNum rewardNumVo, int level) - { - - int[] boost_array = null; - switch (level) - { - case 1: - boost_array = rewardNumVo.Boost_1; - break; - case 2: - boost_array = rewardNumVo.Boost_2; - break; - case 3: - - boost_array = rewardNumVo.Boost_3; - break; - } - return boost_array; - } - - /// - /// - /// 1:首充礼包 2:免除广告礼包 3:通行证礼包 4:VIP订阅页面 - /// - public static string GetBackgroundName(string des_key) - { - - var vos = ConfigSystem.GetConfig(); - for (int i = 0; i < vos.Count; i++) - { - if (vos[i].des_key == des_key) - { - return vos[i].Name; - } - } - return vos[0].Name; - } - - #region VIP - public static int GetVipLevel() - { - CheckVipExpiration(); - - return DataMgr.VipLevel.Value; - } - - // 会员是否到期 - public static void CheckVipExpiration() - { - var vipExpiration = DataMgr.VipExpirationTime.Value; - Debug.Log($"GameHelp -过期时间--CheckVipExpiration- {vipExpiration} vipLevel-{DataMgr.VipLevel.Value}"); - - // 如果VIP等级大于0且有过期时间 - if (DataMgr.VipLevel.Value > 0 && vipExpiration > 0) - { - //这里使用服务器时间 - long currentTime = ServerClock.GetCurrentServerTime(); - // 如果当前时间超过了过期时间,则认为VIP已过期 - Debug.Log($"currentTime > vipExpiration ====={currentTime}==={currentTime > vipExpiration}"); - if (currentTime > vipExpiration) - { - Debug.Log($"GameHelp -请求订阅检查-过期时间---CheckVipExpiration- {vipExpiration}"); - PurchasingManager.CheckSubExpiration(); - } - } - } - - private static string jsonstr = null; - public static string jsonFilePath = Path.Combine(Application.persistentDataPath, "RainData1.json"); - - static void getJsonData() - { - // string levelData = PreferencesMgr.Instance.LevelData; - // if (!string.IsNullOrEmpty(levelData)) - // { - // jsonstr = levelData; - // } - if (File.Exists(jsonFilePath)) - { - jsonstr = File.ReadAllText(jsonFilePath); - - File.Delete(jsonFilePath); - //return JsonUtility.FromJson(json); - } - } - - public static void clearJsonData() - { - if (File.Exists(jsonFilePath)) - { - File.Delete(jsonFilePath); - } - } - - public static event Action ShowTurn; - public static void ShowPaidPack() - { - if (Random.Range(0, 100) < GetCommonModel().TurnOffPackRate) - { - if (!SaveData.GetSaveObject().is_get_packreward) - { - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.LuckyPackUI_Open, false); - } - else if (!SaveData.GetSaveObject().is_get_ThreeDaysGift) - { - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.ThreeDaysGiftUI_Open);//在每个打开的界面的onclose方法中调用CallShowTurn方法 - } - // else if (SaveData.GetSaveObject().failed_pack_time > GameHelper.GetNowTime()) - // { - // float progress = showResurgence(); - // // if (string.IsNullOrWhiteSpace(jsonstr)) - // // { - // // // CallShowTurn(); - // // // return; - // // } - // UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.ResurgenceUI_Open, progress); - // } - else if (!SaveData.GetSaveObject().is_get_battlepass) - { - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.PassViewUI_Open); - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.PassunlockUI_Open); - } - else if (!SaveData.GetSaveObject().have_slot) - { - // if (SaveData.GetSaveObject().addview_off_time > GameHelper.GetNowTime()) - // { - // UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.AddViewoffUI_Open); - // } - // else - // { - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.BuyslotUI_Open); - // } - } - else - { - CallShowTurn();//调用事件 - } - } - else - { - CallShowTurn();//调用事件 - } - - - - } - public static void CallShowTurn() - { - ShowTurn += ShowTurnOffReward; - ShowTurn?.Invoke(); - ShowTurn = null; - } - public static void ShowTurnOffReward() - { - Debug.Log("chansghidakai"); - if (!UIManager.Instance.IsExistUI(UIConst.GoldRewardUI)) - { - if (IsTemporaryEnd) return; - if (SaveData.GetSaveObject().TurnOffDay != DateTime.Now.Day) - { - SaveData.GetSaveObject().TurnOffDay = DateTime.Now.Day; - SaveData.GetSaveObject().TurnOffNumbers = 0; - } - if (Random.Range(0, 100) < ConfigSystem.GetCommonConf().TurnOffRewardsRate) - { - if ((SaveData.GetSaveObject().TurnOffNumbers < ConfigSystem.GetCommonConf().TurnOffRewardslimit) && (GameHelper.GetNowTime() > SaveData.GetSaveObject().TurnOffTime)) - { - SaveData.GetSaveObject().TurnOffTime = GameHelper.GetNowTime() + ConfigSystem.GetCommonConf().TurnOffRewardsCD; - SaveData.GetSaveObject().TurnOffNumbers++; - UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.GoldRewardUI_Open); - } - } - SaveData.SaveDataFunc(); - } - } - - public static string getTrackEvenName() - { - string event_ = ADEventTrack.AD_Event; - if (GetLoginModel().Enwp == 1) - { - int rate = GetCommonModel().PayRate; - if (!IsGiftSwitch() || GetCommonModel().PayRate == 100) - { - MaxPayManager.isOfficialPay = true; - } - event_ = MaxPayManager.isOfficialPay ? ADEventTrack.Google_Pay_Event : ADEventTrack.MaxPayEvent; - } - return event_; - } - - #endregion - } +using System; +using System.Collections; +using FairyGUI; +using UnityEngine; +using DG.Tweening; +using Spine.Unity; +using System.Text; +using System.Collections.Generic; +using Random = UnityEngine.Random; +using System.Text.RegularExpressions; +using System.Linq; +using IgnoreOPS; +using Newtonsoft.Json; +using SGModule.Net; +using SGModule.NetKit; +using SGModule.Common; +using System.IO; +using System.Globalization; + +namespace BallKingdomCrush +{ + public static class GameHelper + { + public static int gameType = 0; + public static bool isAutoPop = false; + private static LoginModel loginModel; + private static Dictionary numDic = new Dictionary(); + public static bool isVipUnlock = false; + + public static string GetRandomNum(int count) + { + var resultStr = new StringBuilder(); + for (int i = 0; i < count; i++) + { + resultStr.Append(Random.Range(0, 10)); + } + + return resultStr.ToString(); + } + + public static Vector3 FguiPotToUnityTrfLocalPot(Vector3 pot) + { + var v = Vector3.zero; + v.x = pot.x; + v.y = -pot.y; + v.z = pot.z; + return v; + } + + public static string GetNumStr(decimal num, int floatLength = -1) + { + var numString = num.ToString(floatLength < 0 ? "" : $"f{floatLength}"); + if (num > 1000) + { + return numString; + } + + if (!numDic.ContainsKey(num)) + numDic.Add(num, numString); + return numDic[num]; + } + + public static void ShowLoading(float min = 0.2f, float max = 1f, Action onCompleted = null) + { + ShowLoading(Random.Range(min, max), onCompleted); + } + + public static void ShowLoading(float time, Action onCompleted = null) + { + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.NetLoadingUI_Open); + TimerHelper.mEasy.AddTimer(time, () => + { + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.NetLoadingUI_Close); + onCompleted?.Invoke(); + }); + } + + public static void ShowTips(string val, bool isLangue = false) + { + var valStr = val; + if (isLangue) + { + valStr = Language.GetContent(val); + } + + var tipsData = JoastData.GetTips(valStr); + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.SCTipsUI_Open, tipsData); + } + + public static void ShowVideoAd(string adId, Action onCompleted) + { + MaxADKit.ShowVideo(adId, isSuccess => + { + if (isSuccess) + { + CtrlDispatcher.Instance.Dispatch(CtrlMsg.WatchVideoFinish); + look_interad_numbers = 0; + + AdOverEvent(1); + } + else + { + ShowTips("not_ads", true); + } + + onCompleted?.Invoke(isSuccess); + }); + } + + public static void ShowInterstitial(string key) + { + if (GetVipLevel() >= 1) return; + // if (!true) + // { + // return; + // } + + + // if (Time.time < CanShowInterstitialTime) + // { + // return; + // } + + //if(Random.Range(0, 100)>ConfigSystem.GetCommonConf().interstitialtype) return; + MaxADKit.ShowInterstitial(key, isSuccess => + { + if (isSuccess) + { + SaveData.GetSaveObject().InterstitialPLayNum++; + if (SaveData.GetSaveObject().InterstitialPLayNum >= GetCommonModel().RemoveADsPackPopup) + { + SaveData.GetSaveObject().InterstitialPLayNum = 0; + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.LuckyPackUI_Open, true); + } + SaveData.SaveDataFunc(); + CtrlDispatcher.Instance.Dispatch(CtrlMsg.WatchIntVideoFinish); + + if (key == "AfterReward") + { + TrackKit.SendEvent(ADEventTrack.AD_Event, ADEventTrack.Property.afterRewardAdEnd); + } + AdOverEvent(2); + } + }); + + // CanShowInterstitialTime = (int)(Time.time + 30); + } + + + public static Vector2 GetUICenterPosition(GObject gObject, bool isCenter = false) + { + Vector2 centerPot = Vector2.zero; + if (!isCenter) + { + centerPot = gObject.size / 2; + } + + return gObject.LocalToRoot(Vector2.zero, GRoot.inst) + centerPot; + } + + public static void PlayFGUIFx(Transition transition, bool isReset = true, + PlayCompleteCallback onCompleted = null) + { + if (isReset) + { + if (transition.playing) + { + transition.Stop(); + } + } + + if (!transition.playing) + { + transition.Play(); + } + + transition.SetCompleteEvent(onCompleted); + } + + #region 时间判断 + + public static int GetTomorrowCountTime() + { + var today = DateTime.Now; + return 86400 - today.Hour * 3600 - today.Minute * 60 - today.Second; + } + + + public static long GetNowTime(bool isFix = false) + { +#if GAME_RELEASE + return DateTimeManager.Instance.GetServerCurrTimestamp(isFix); +#else + return DateTimeManager.Instance.GetCurrTimestamp(); +#endif + } + + + public static bool InToday(long time, int offset = 0, bool isInclude = false) + { + DateTime oldDate = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)); + oldDate = oldDate.AddSeconds(time); + oldDate = new DateTime(oldDate.Year, oldDate.Month, oldDate.Day); + + + var yesterday = DateTimeManager.Instance.GetCurrDateTime().AddDays(offset); + + yesterday = new DateTime(yesterday.Year, yesterday.Month, yesterday.Day); + if (isInclude) + { + return oldDate >= yesterday; + } + + return oldDate > yesterday; + } + + #endregion + + + public static void SetSelfAvatar(GLoader gLoader, int avatarId = 0) + { + + // var avatarId = DataMgr.PlayerAvatarId.Value; + TextureHelper.SetAvatarToLoader(avatarId, gLoader); + } + + public static void SetSelfCountryFlag(GLoader gLoader) + { + SetCountryFlag(gLoader, GetLoginModel().Country.ToLower()); + } + + + public static void SetCountryFlag(GLoader countryFlagLoader, string country) + { + var sprite = LoadKit.Instance.LoadSprite("Atlas.Flag", country.ToLower()); + if (sprite == null) + { + sprite = LoadKit.Instance.LoadSprite("Atlas.Flag", "us"); + } + + var countryTexture = new NTexture(sprite); + countryFlagLoader.texture = countryTexture; + } + + + public static string LimitName(string name, int length, string suffix = "...") + { + if (!string.IsNullOrEmpty(name) && name.Length > length) + { + name = name.Substring(0, length) + suffix; + } + + return name; + } + + + public static void SetName(GTextField gTextField, string name = "", bool isLimit = false, int length = 6) + { + if (name == null || name.IsNullOrWhiteSpace()) + { + name = "LoveLegend"; + } + + if (isLimit) + { + name = LimitName(name, length); + } + + gTextField.text = name; + } + + public static string GetUserName() + { + string name = DataMgr.PlayerName.Value; + if (name == null || name.IsNullOrWhiteSpace()) + { + name = GetPlayerInviteCode(); + } + + name ??= "LoveLegend"; + + + return name; + } + + public static string GetPlayerInviteCode() + { + return GetLoginModel().InviteCode; + } + + public static long GetUID() + { + return GetLoginModel().Uid; + } + + public static void OnRiseUI(int itemId, UILayerType layerType = UILayerType.Highest) + { + var gObject = GetItemUI(itemId); + if (gObject != null) + { + SetUILayer(gObject, gObject.sortingOrder + 500, layerType); + } + } + + + public static void OnRiseUIRecover(int itemId, UILayerType layerType = UILayerType.Top) + { + var gObject = GetItemUI(itemId); + if (gObject == null) return; + SetUILayer(gObject, gObject.sortingOrder - 500, layerType); + UIManager.Instance.ResetGObjectUILayer(gObject); + } + + + public static GComponent GetItemUI(int itemId) + { + GComponent gObject = null; + switch (itemId) + { + case 101: + { + // if (UIManager.Instance.GetDynamicUI(UIConst.CurrencyUI) is CurrencyUI topUI) + // { + // gObject = topUI.ui.btn_currency; + // } + } + break; + } + + return gObject; + } + + public static void SetUILayer(GObject gObject, int sortingOrder, UILayerType layerType) + { + gObject.sortingOrder = sortingOrder; + UIManager.Instance.SetGObjectUILayer(layerType, gObject); + } + + public static LoginModel GetLoginModel() + { + if (loginModel != null) + { + return loginModel; + } + + return loginModel = LoginKit.Instance.LoginModel; + } + + public static bool CheckNameValidly(string name) + { + if (string.IsNullOrEmpty(name)) + { + return false; + } + + + const string expression = @"^[a-zA-Z]*$"; + return Regex.IsMatch(name, expression); + } + + + public static bool IsGiftSwitch() + { + //is debug test-------- + + + // return false; + return true; + bool b = GetLoginModel().IsMagic; + + return GetLoginModel().IsMagic; + } + + public static decimal Get101() + { + // DataMgr.Coin.Value = 999999;//zhushi + return DataMgr.Coin.Value; + } + public static decimal Get102() + { + return DataMgr.Ticket.Value; + } + + public static void InitGalleryView(GList glist, int numItems, float duration, + ListItemRenderer OnRendererPersonItem, + int itemWidth) + { + glist.itemRenderer = OnRendererPersonItem; + glist.numItems = numItems; + + var moveW = itemWidth * glist.numItems - glist.viewWidth; + DOVirtual.Float(0, moveW + 300, duration, prg => + { + if (prg > moveW) + { + return; + } + + glist.scrollPane.SetPosX(prg, false); + }).SetLoops(-1); + } + + public static SkeletonAnimation ShowFinger(GGraph target, GTweenCallback onComplete = null) + { + Action closeCallBack = null; + var handSpine = FXManager.Instance.SetFx(target, Fx_Type.fx_hand_pre, ref closeCallBack); + handSpine.state.SetAnimation(0, "idle", true); + var tweenBtn = CommonHelper.FadeIn(target); + tweenBtn.OnComplete(onComplete); + return handSpine; + } + + public static void ShowGuide(int _step, Vector2 _targeSize, Vector2 _targePos, Action _onEnd = null, + GObject _fingerGuideObj = null) + { + // var guideData = new GuideData() + // { + // targeSize = _targeSize, + // targePos = _targePos, + // step = _step, + // onEnd = _onEnd, + // fingerGuidePos = _targePos, + // }; + // + // if (_fingerGuideObj != null) + // { + // guideData.fingerGuidePos = GameHelper.GetUICenterPosition(_fingerGuideObj); + // } + // + // + // guideData.needMaskCloseEvent = _step == 10; + // + // UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.GuideUI_Open, guideData); + // + // if (_step == 3) + // { + // } + } + + public static CommonModel GetCommonModel() + { + return ConfigSystem.GetCommonConf(); + } + + /// + /// 价格字符串 + /// + /// 价格 + /// + public static string Get102Str(decimal currency) + { + var exchangeRateVO = GetExchangeRateVO(); + decimal price = currency * (decimal)exchangeRateVO.Multi; + return $"{exchangeRateVO.Payicon}{price:N}"; + } + + /// + /// 金币/AD 字符串 + /// + /// + /// + public static string Get101Str(decimal currency = -1) + { + if (currency == -1) + { + currency = DataMgr.Coin.Value; + } + + return $"{currency:N0}"; + } + + public static string getChNumber(decimal ch) + { + return $"{ch:N}"; + } + + public static string getPrice(decimal ch) + { + var exchangeRateVO = GetExchangeRateVO(); + decimal price = ch * (decimal)exchangeRateVO.Multi; + return $"{exchangeRateVO.Payicon}{price:N}"; + } + + public static string ChooseCurrency() + { + var exchangeRateVO = GetExchangeRateVO(); + return exchangeRateVO.Payicon; + } + + + public static string GetDeviceLanguage() + { + return "US"; + } + + public static string GetPaymentPayer() + { + // return GetPaymentTypeVO().payer; + return "PayPal"; + } + public static ExchangeRate GetExchangeRateVO() + { + var code = GetCurrCountry(); + var voList = ConfigSystem.GetConfig(); + foreach (var ExchangeRateVo in voList) + { + if (ExchangeRateVo.CountryKey.Contains(code)) + { + return ExchangeRateVo; + } + } + return voList[0]; + } + public static string GetCurrCountry() + { + string countryCode = "US"; + try + { + countryCode = RegionInfo.CurrentRegion.TwoLetterISORegionName; + Debug.Log("国家代码: " + countryCode); // 例如:US, CN, JP, DE 等 + } + catch (System.Exception e) + { + Debug.LogError("无法获取国家代码: " + e.Message); + } + return countryCode.ToUpper(); + } + + public static bool CheckAccountValidly(string account) + { + return CheckEMailValidly(account); + } + public static bool CheckEMailValidly(string eMail) + { + if (eMail.IsNullOrWhiteSpace()) + { + return false; + } + + + const string expression = + @"^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$"; + return Regex.IsMatch(eMail, expression); + } + + + public static bool IsContinuousSignIn() + { + if (DataMgr.SignState.Value.Count == 0) + { + return false; + } + + if (DataMgr.SignState.Value.Count >= 7) + { + return false; + } + + var tmp = DataMgr.SignState.Value[DataMgr.SignState.Value.Count - 1]; + return InToday(tmp, -1, true); + } + + + public static float[] GetRewardValue(int type) + { + var currentRmLevel = 1; + + for (var i = 0; i < DataMgr.MakeupTaskHistory.Value.Count; i++) + { + var task = DataMgr.MakeupTaskHistory.Value[i]; + + if (task.status == MakeupTaskStatus.Inline) + { + currentRmLevel++; + } + } + + if (currentRmLevel > 3) + { + currentRmLevel = 3; + } + + var currentIndex = GetValueIndex(currentRmLevel); + + if (currentIndex != -1) + { + if (type == 0) + { + var vos = ConfigSystem.GetConfig(); + SmallrewardNum rewardNumVo = vos[currentIndex]; + return GetValue(rewardNumVo, currentRmLevel); + + } + else if (type == 1) + { + var vos = ConfigSystem.GetConfig(); + LargerewardNum rewardNumVo = vos[currentIndex]; + return GetValue(rewardNumVo, currentRmLevel); + + } + else if (type == 2) + { + var vos = ConfigSystem.GetConfig(); + RewardNum rewardNumVo = vos[currentIndex]; + return GetValue(rewardNumVo, currentRmLevel); + + } + + } + return new float[] { 0, 0 }; + + + + } + + private static int GetValueIndex(int index) + { + var ch = Get101(); + var vos = ConfigSystem.GetConfig(); + + var currentIndex = -1; + if (ch < 0) + { + currentIndex = 0; + } + else + { + for (var i = 0; i < vos.Count; i++) + { + var rewardNumVo = vos[i]; + var chArray = index switch + { + 1 => rewardNumVo.ch_1, + 2 => rewardNumVo.ch_2, + 3 => rewardNumVo.ch_3, + _ => default + }; + + if (i < vos.Count - 1) + { + if (ch >= (decimal)chArray[0] && ch < (decimal)chArray[1]) + { + currentIndex = i; + break; + } + } + else + { + if (ch >= (decimal)chArray[0]) + { + currentIndex = i; + break; + } + } + } + } + + return currentIndex; + } + + + private static float[] GetValue(SmallrewardNum rewardNumVo, int level) + { + + float[] normalArray = null; + var videoRewardRate = 0f; + int[] weight_array = null; + int[] boost_array = null; + switch (level) + { + case 1: + + normalArray = rewardNumVo.nor_1; + videoRewardRate = rewardNumVo.rv_1; + weight_array = rewardNumVo.weight_1; + boost_array = rewardNumVo.Boost_1; + break; + case 2: + + normalArray = rewardNumVo.nor_2; + videoRewardRate = rewardNumVo.rv_2; + weight_array = rewardNumVo.weight_2; + boost_array = rewardNumVo.Boost_2; + break; + case 3: + + normalArray = rewardNumVo.nor_3; + videoRewardRate = rewardNumVo.rv_3; + weight_array = rewardNumVo.weight_3; + boost_array = rewardNumVo.Boost_3; + + break; + } + int rate_all = 0; + for (int i = 0; i < weight_array.Length; i++) + { + rate_all += weight_array[i]; + } + int random_ = Random.Range(0, rate_all); + int int_ = 0; + for (int i = 0; i < weight_array.Length; i++) + { + int_ += weight_array[i]; + if (random_ < int_) + { + videoRewardRate = boost_array[i]; + break; + } + } + + float normalValue = Random.Range(normalArray[0], normalArray[1]); + normalValue = (float)Math.Round(normalValue, 2); + return new float[] { normalValue, videoRewardRate }; + } + private static float[] GetValue(LargerewardNum rewardNumVo, int level) + { + + float[] normalArray = null; + var videoRewardRate = 0f; + int[] weight_array = null; + int[] boost_array = null; + switch (level) + { + case 1: + + normalArray = rewardNumVo.nor_1; + videoRewardRate = rewardNumVo.rv_1; + weight_array = rewardNumVo.weight_1; + boost_array = rewardNumVo.Boost_1; + break; + case 2: + normalArray = rewardNumVo.nor_2; + videoRewardRate = rewardNumVo.rv_2; + weight_array = rewardNumVo.weight_2; + boost_array = rewardNumVo.Boost_2; + break; + case 3: + + normalArray = rewardNumVo.nor_3; + videoRewardRate = rewardNumVo.rv_3; + weight_array = rewardNumVo.weight_3; + boost_array = rewardNumVo.Boost_3; + break; + } + + int rate_all = 0; + for (int i = 0; i < weight_array.Length; i++) + { + rate_all += weight_array[i]; + } + int random_ = Random.Range(0, rate_all); + int int_ = 0; + for (int i = 0; i < weight_array.Length; i++) + { + int_ += weight_array[i]; + if (random_ < int_) + { + videoRewardRate = boost_array[i]; + break; + } + } + + + float normalValue = Random.Range(normalArray[0], normalArray[1]); + normalValue = (float)Math.Round(normalValue, 2); + return new float[] { normalValue, videoRewardRate }; + } + private static float[] GetValue(RewardNum rewardNumVo, int level) + { + + float[] normalArray = null; + var videoRewardRate = 0f; + int[] weight_array = null; + int[] boost_array = null; + switch (level) + { + case 1: + + normalArray = rewardNumVo.nor_1; + videoRewardRate = rewardNumVo.rv_1; + weight_array = rewardNumVo.weight_1; + boost_array = rewardNumVo.Boost_1; + break; + case 2: + + normalArray = rewardNumVo.nor_2; + videoRewardRate = rewardNumVo.rv_2; + weight_array = rewardNumVo.weight_2; + boost_array = rewardNumVo.Boost_2; + break; + case 3: + + normalArray = rewardNumVo.nor_3; + videoRewardRate = rewardNumVo.rv_3; + weight_array = rewardNumVo.weight_3; + boost_array = rewardNumVo.Boost_3; + + break; + } + + int rate_all = 0; + for (int i = 0; i < weight_array.Length; i++) + { + rate_all += weight_array[i]; + } + int random_ = Random.Range(0, rate_all); + int int_ = 0; + for (int i = 0; i < weight_array.Length; i++) + { + int_ += weight_array[i]; + if (random_ < int_) + { + videoRewardRate = boost_array[i]; + break; + } + } + + float normalValue = Random.Range(normalArray[0], normalArray[1]); + normalValue = (float)Math.Round(normalValue, 2); + return new float[] { normalValue, videoRewardRate }; + } + + public static decimal GetQuizRate() + { + return 0m; + } + + + public static decimal GetNormalRewardValue() + { + return 0m; + } + + + + /// + /// 传的是初始位置的GObject对象 + /// + public static void GetRewardOnly(decimal value, RewardOrigin origin, GObject startGObject = null, + GObject endGObject = null, Action onCompleted = null, decimal rate = 1) + { + GetReward(value, origin, startGObject, endGObject, false, false, onCompleted, rate); + } + + public static void GetReward(decimal value, RewardOrigin origin, GObject startGObject = null, + GObject endGObject = null, + bool isDialog = true, bool isNeedAd = true, + Action onCompleted = null, decimal rate = 1, decimal ctRate = 50) + { + var rewardData = new RewardData(); + var rewardSingleData = new RewardSingleData(101, value, origin) + { + multiRate = rate + }; + + + if (startGObject != null) + { + rewardSingleData.startPosition = GetUICenterPosition(startGObject); + } + + + if (endGObject != null) + { + rewardSingleData.endPosition = GetUICenterPosition(endGObject); + } + + rewardData.AddReward(rewardSingleData); + + if (isDialog) + { + rewardData.displayType = RewardDisplayType.RewardFly | RewardDisplayType.Dialog | + RewardDisplayType.ValueChange; + + rewardData.condition = isNeedAd ? RewardCondition.AD : RewardCondition.None; + } + else + { + rewardData.displayType = RewardDisplayType.RewardFly | RewardDisplayType.ValueChange; + } + + + rewardData.AddCompleted(onCompleted); + rewardData.ctRate = ctRate; + GameDispatcher.Instance.Dispatch(GameMsg.GetReward, rewardData); + } + + + /// + /// 传的是位置 + /// + public static void GetRewardOnly1(int id, decimal value, RewardOrigin origin, Vector2 startPos, + Vector2 endPos, Action onCompleted = null, decimal rate = 1) + { + GetReward1(id, value, origin, startPos, endPos, false, false, onCompleted, rate); + } + + public static void GetReward1(int id, decimal value, RewardOrigin origin, Vector2 startPos, + Vector2 endPos, + bool isDialog = true, bool isNeedAd = true, + Action onCompleted = null, decimal rate = 1, decimal ctRate = 50) + { + var rewardData = new RewardData(); + var rewardSingleData = new RewardSingleData(id, value, origin) + { + multiRate = rate + }; + + + if (startPos != null) + { + rewardSingleData.startPosition = startPos; + } + + + if (endPos != null) + { + rewardSingleData.endPosition = endPos; + } + + rewardData.AddReward(rewardSingleData); + + if (isDialog) + { + rewardData.displayType = RewardDisplayType.RewardFly | RewardDisplayType.Dialog | + RewardDisplayType.ValueChange; + + rewardData.condition = isNeedAd ? RewardCondition.AD : RewardCondition.None; + } + else + { + rewardData.displayType = RewardDisplayType.RewardFly | RewardDisplayType.ValueChange; + } + + + rewardData.AddCompleted(onCompleted); + rewardData.ctRate = ctRate; + GameDispatcher.Instance.Dispatch(GameMsg.GetReward, rewardData); + } + + + + public static void addInterAdnumber() + { + if (GetVipLevel() >= 1) return; + look_interad_numbers++; + Debug.Log($"[back hall]1 SaveData.GetSaveObject().is_get_removead=========={SaveData.GetSaveObject().is_get_removead} "); + + if (!SaveData.GetSaveObject().is_get_removead && look_interad_numbers >= ConfigSystem.GetCommonConf().playtimes && GameHelper.IsGiftSwitch()) + { + look_interad_numbers = 0; + if (Random.Range(0, 100) < ConfigSystem.GetCommonConf().interstitialtype) + { + if (UIManager.Instance.IsExistUI(UIConst.H5UI)) + { + GameHelper.ShowInterstitial("interstitial_gameend"); + } + else + { + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.AdcomingUI_Open); + } + } + } + } + public static decimal GetVideoRate() + { + return 0m; + } + + public static int GetItemNumber(int type) + { + return type switch + { + 0 => DataMgr.PropRemoveNum.Value, + 1 => DataMgr.PropBackNum.Value, + 2 => DataMgr.PropRefreshNum.Value, + _ => 0 + }; + } + + public static void SetItemNumber(int type, int value) + { + switch (type) + { + case 0: + DataMgr.PropRemoveNum.Value = value; + break; + case 1: + DataMgr.PropBackNum.Value = value; + break; + case 2: + DataMgr.PropRefreshNum.Value = value; + break; + } + } + public static void AddItemNumber(int type, int change) + { + switch (type) + { + case 0: + DataMgr.PropRemoveNum.Value += change; + break; + case 1: + DataMgr.PropBackNum.Value += change; + break; + case 2: + DataMgr.PropRefreshNum.Value += change; + break; + } + } + + public static int GetLevel() + { + // return DataMgr.GameLevel.Value = 5;//zhushi + return DataMgr.GameLevel.Value; + + } + public static void SetLevel(int level) + { + DataMgr.GameLevel.Value = level; + } + public static int GetLevelstate() + { + return DataMgr.ResurrectionState.Value;//4种,数字3为可以用广告和金币复活,2为只能用广告,1为只能用金币。0为不能复活 + } + + public static void SetLevelstate(int state) + { + DataMgr.ResurrectionState.Value = state; + } + + public static int GetGoldNumber() + { + // return PlayerPrefs.GetInt("_gold", 50); + int goldNum = (int)Get101(); + + return goldNum; + } + public static void AddGoldNumber(int value) + { + AddGold(value); + } + public static bool CheckGoldNumber(int target) + { + return GetGoldNumber() >= target; + } + + private static int _times = 0; + public static void AddGameTime() + { + if (_times >= 10) + { + DataMgr.GameTime.Value += _times; + _times = 0; + } + _times++; + } + public static int GetGameTime() + { + return DataMgr.GameTime.Value; + } + + public static void SetGameday() + { + DataMgr.GameDay.Value = DateTime.Now.Day; + } + public static int GetGameday() + { + return DataMgr.GameDay.Value; + } + + + public static int GetGameExp() + { + return DataMgr.GameExperience.Value; + } + public static void AddGameExp(int change) + { + DataMgr.GameExperience.Value += change; + } + public static void ResetGameExp() + { + DataMgr.GameExperience.Value = 0; + } + public static int GetBattleLv() + { + int exp = GetGameExp(); + List list = ConfigSystem.GetConfig(); + for (int i = 0; i < list.Count; i++) + { + if (exp < list[i].Eliminating_quantity) + { + return i; + + } + } + return list.Count; + } + public static void AddGold(int a) + { + DataMgr.Coin.Value += a; + GameDispatcher.Instance.Dispatch(GameMsg.Gold_refresh); + } + public static void AddGold(float a) + { + DataMgr.Coin.Value += (int)a; + } + public static bool needShowLevelstate(int id = -1) + { + + // var makeupTaskData = DataMgr.MakeupTaskHistory.Value.Last(); + // var vo = ConfigSystem.GetConfig().GetData(makeupTaskData.tableId); + // int lv = vo.id; + // int a = DataMgr.ChLevel.Value; + // if (id != -1) lv = id + 1; + // if (a < lv) + // { + // return true; + // } + + return false; + } + + public static void addMoney(int a) + { + DataMgr.Ticket.Value += a; + + } + public static void addMoney(float a) + { + DataMgr.Ticket.Value = (decimal)((float)DataMgr.Ticket.Value + a); + + } + + + public static bool showGameUI = true; + + public static int look_interad_numbers = 0; + + public static bool is_first_login = true; + + public static Dictionary statusDic = new Dictionary(); + public static Dictionary> statusDic2 = new Dictionary>(); + + public static string trace_id; + + + public static void SendLogToServer(string message, string stacktrace, LogType type) + { + // 如果只需要日期部分,可以使用ToShortDateString()或ToString("yyyy-MM-dd")等进行格式化 + if (!GameHelper.GetLoginModel().DebugLog) return; + System.DateTime currentDate = System.DateTime.Now; + var formattedDate = currentDate.ToString("yyyy_MM_dd_HH_mm"); + var md5Str = MD5Kit.GetStringMD5(message + stacktrace); + if (!statusDic2.ContainsKey(formattedDate)) + { + statusDic2.Add(formattedDate, new Dictionary()); + } + if (!statusDic2[formattedDate].ContainsKey(md5Str)) + { + statusDic2[formattedDate].Add(md5Str, false); + } + //Debug.Log($"SendLogToServer requestData========={formattedDate} \nmd5Str=== {md5Str}"); + if (statusDic2[formattedDate][md5Str]) + { + return; + } + long user_id = 0; + if (loginModel != null && loginModel.Uid != 0) user_id = loginModel.Uid; + var requestData = new + { + uid = user_id, + device = SystemInfo.deviceModel, + os_ver = SystemInfo.operatingSystem, + network = GetNetworkType(), + device_id = SystemInfo.deviceUniqueIdentifier, + pack_name = ConfigManager.GameConfig.packageName, + version = Application.version, + channel = SuperApplication.Instance.attribution, + level = type == 0 ? "error" : "warn", + message = message, + stacktrace = stacktrace + }; + statusDic2[formattedDate][md5Str] = true; + // Debug.Log($"SendLogToServer requestData1========={JsonConvert.SerializeObject(requestData)}"); + // NetworkKit.Post("event/cliDebugLog", requestData, (isSuccess, data) => + // { + + // }); + } + private static string GetNetworkType() + { + string types = "Not Connected"; + switch (Application.internetReachability) + { + case NetworkReachability.ReachableViaCarrierDataNetwork: + types = "Mobile Data"; + break; + case NetworkReachability.ReachableViaLocalAreaNetwork: + types = "Wi-Fi"; + break; + } + return types; + } + + + private static GameObject RainPlayUI; + + public static void ShowSheepPlayUI(bool isShow) + { + if (RainPlayUI == null) + { + RainPlayUI = GameObject.Find("(RainPlayUI)com_game"); + } + + if (RainPlayUI != null) + { + RainPlayUI.transform.localPosition = isShow ? new Vector3(0, 0, 0) : new Vector3(-2000, 0, 0); + } + } + + public static bool IsTemporaryEnd; + + + public static void IsShowFirstReward() + { + var isGet = DataMgr.GetFirstReaward.Value; + if (!isGet && IsGiftSwitch()) + { + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.FirstRewardUI_Open); + } + } + + public static Dictionary adCallbackInfo = new Dictionary(); + + // public static void SendRevenueToAF(string purch_number) + // { + // if (!GameHelper.IsAdModelOfPay() && !string.IsNullOrEmpty(purch_number) && decimal.TryParse(purch_number, out decimal revenue)) + // { + // // Debug.Log("付费收益上报AF----------- " + revenue.ToString()); + // // adCallbackInfo.Clear(); + // // adCallbackInfo.Add("appsflyer_id", AppsFlyer.getAppsFlyerId()); + // // adCallbackInfo.Add("customer_user_id", GameHelper.GetLoginModel().uid.ToString()); + // // adCallbackInfo.Add("af_currency", "USD"); + // // adCallbackInfo.Add("af_revenue", revenue.ToString()); + // // AppsFlyer.sendEvent("af_purchase", adCallbackInfo); + // + // GameHelper.sendRevenueToServer("af_purchase", "af_revenue", (int)(revenue * 10000)); + // } + // } + // public static void sendRevenueToServer(string eventname, string eventproperty, int integer) + // { + // NetworkKit.BuriedPoint(eventname, eventproperty, integer); + // } + public static void sendHighRevenueToAF() + { + // float purch_number = GameHelper.GetCommonModel().afSendNum; + // string countryCode = "USD"; + // adCallbackInfo.Clear(); + // adCallbackInfo.Add("appsflyer_id", AppsFlyer.getAppsFlyerId()); + // adCallbackInfo.Add("customer_user_id", GameHelper.GetLoginModel().uid.ToString()); + // adCallbackInfo.Add("af_currency", countryCode); + // adCallbackInfo.Add("af_revenue", purch_number.ToString()); + + // AppsFlyer.sendEvent("af_new_purchase", adCallbackInfo); + + // Debug.Log($"AppsFlyer sendEvent af_new_purchase {purch_number}"); + } + + + //获取当前时间戳,精确到秒的时间戳 + public static long GetCurrentTimestamp() + { + // 获取当前UTC时间 + DateTime now = DateTime.UtcNow; + // 计算从1970年1月1日00:00:00到现在的总秒数 + long timestamp = (long)(now - new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)).TotalSeconds; + return timestamp; + } + + /// + /// 检查是否有网络 + /// + /// true:有网, false:没网 + public static bool IsConnect() + { + try + { + // 检查 NetChecker.Instance 是否为空 + if (NetChecker.Instance == null) + { + Debug.LogWarning("NetChecker.Instance is null, returning false for network connectivity"); + return false; + } + + return NetChecker.Instance.GetConnectionStatus() == ConnectionStatus.Connected; + } + catch (Exception ex) + { + // 记录异常日志 + Debug.LogError($"检查网络连接状态时发生异常: {ex.Message}\n{ex.StackTrace}"); + + // 在出现异常时,默认返回false(无网络连接) + // 这样可以避免因网络检查异常导致的程序中断 + return false; + } + } + + /// + /// 看完广告事件上报 + /// + /// 1:激励 2:插屏 + public static void AdOverEvent(int type) + { + + RespAdEventData respData = new RespAdEventData() + { + type = type + }; + + NetKit.Instance.Post("event/adWatchOver", respData); + } + + /// + /// 看完广告收益上报 + /// + /// 1:激励 2:插屏 + public static void AdOverRevenueEvent(int type, float revenue) + { + + RespAdRevenueEventData respData = new RespAdRevenueEventData() + { + type = type, + revenue = revenue + }; + // Debug.Log($"[Max] AdOverRevenueEvent --------{JsonConvert.SerializeObject(respData)} "); + NetKit.Instance.Post("event/adRevenue", respData, (response) => + { + Debug.Log($"[Max] adRevenue ------IsSuccess-- {response.IsSuccess} "); + + }); + } + /// + /// 玩法时长上报 + /// + /// 玩法类型:1:羊了个羊 2:单词接龙 3:关不住我 + public static void PlayGameTimeEvent(int gameType, Action action = null) + { + m_gameTimes = GetPlayGameTimes(); + + if (m_gameTimes == 0) + { + action?.Invoke(); + return; + } + RespGameTimeEventData respData = new RespGameTimeEventData() + { + type = gameType, + second = m_gameTimes + }; + + m_gameTimes = 0; + + PlayerPrefs.SetInt("game_times", m_gameTimes); + + NetKit.Instance.Post("event/gameTime", respData, _ => + { + // Debug.Log($"PlayGameTimeEvent==== {isSuccess}"); + action?.Invoke(); + }); + } + private static int m_gameTimes = 0; + + public static void SetGameTimes() + { + m_gameTimes++; + PlayerPrefs.SetInt("game_times", m_gameTimes); + } + + public static int GetPlayGameTimes() + { + return PlayerPrefs.GetInt("game_times", 0); + } + + + /// + /// 是否能关闭结算界面(必须等调控接口返回数据后才能关闭) + /// + private static bool isCanCloseResultView = false; + + public static bool GetCloseResult() + { + if (!IsConnect()) + { + ShowTips("no_network", true); + } + + return isCanCloseResultView; + } + public static void SetCloseResult(bool isCan) + { + isCanCloseResultView = isCan; + } + + /// + /// 第几个玩法调控表 + /// + public static int conf_num = 1; + /// + /// 玩法调控,请求配置 + /// + public static void RequestGameConfig() + { + NetKit.Instance.Post("game/regulate", null, response => + { + if (response.IsSuccess) + { + Debug.Log($"RequestGameConfig==== {response.Data.conf_num}"); + PlayerPrefs.SetInt("game_conf_num", response.Data.conf_num); + conf_num = response.Data.conf_num; + } + + isCanCloseResultView = true; + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.PayloadingUI_Close); + }); + } + + /// + /// 是否是广告兑换模式 + /// + /// true:广告兑换 -- false:三方支付 + public static bool IsAdModelOfPay() + { + // //测试 + // return false; + var isAd = GetLoginModel().Enwp != 1; + // return true; + return isAd; + } + + public static string GetEventName() + { + var name = ADEventTrack.AD_Event; + if (!IsAdModelOfPay()) + { + name = ADEventTrack.MaxPayEvent; + } + return name; + } + public static List makeupLevels = new(); + public static void SetLevelsList() + { + + List makeupList = ConfigSystem.GetConfig(); + for (int i = 0; i < makeupList.Count; i++) + { + makeupLevels.Add(makeupList[i].levels_need); + } + // Debug.Log($"barry makeupLevels-======== {SerializeUtil.ToJson(makeupLevels)}"); + } + + public static bool IsShowLevelTips() + { + GameHelper.SetLevelsList(); + bool isShow = false; + for (int i = 0; i < makeupLevels.Count; i++) + { + if (IsGiftSwitch() && GetLevel() == makeupLevels[i]) + { + isShow = true; + break; + } + + } + + return isShow; + } + public static long getNowTimeByMillisecond() + { +#if !GAME_RELEASE + return DateTimeManager.Instance.GetCurrTimesTampByMillisecond(); + // return DateTimeManager.Instance.GetServerCurrTimestamp(); +#else + return DateTimeManager.Instance.GetServerCurrTimestampByMillisecond(); +#endif + } + public static void OpenEmail() + { + string email = ""; + var common = ConfigSystem.GetCommonConf(); + if (common != null) + { + email = common.contactUs; + } + + string subject = Uri.EscapeDataString("Contact Us"); + string body = Uri.EscapeDataString($"My UID is [ {GetUID()} ]\n"); + + string url = $"mailto:{email}?subject={subject}&body={body}"; + + try + { + OpenBrowser.OpenURL(url); + GameHelper.ShowTips("try_send", true); + } + catch (Exception ex) + { + Debug.LogError("打开邮箱失败:" + ex.Message); + GameHelper.ShowTips("send_failed", true); + } + } + + public static int[] GetRewardBoost(int type) + { + var currentRedeemLevel = 1; + + for (var i = 0; i < DataMgr.MakeupTaskHistory.Value.Count; i++) + { + var task = DataMgr.MakeupTaskHistory.Value[i]; + + if (task.status == MakeupTaskStatus.Inline) + { + currentRedeemLevel++; + } + } + + // Debug.Log($"GetRewardValue=====================currentRedeemLevel {currentRedeemLevel} \n type: {type}"); + + if (currentRedeemLevel > 3) + { + currentRedeemLevel = 3; + } + + var currentIndex = GetValueIndex(currentRedeemLevel); + + if (currentIndex != -1) + { + + if (type == 0) + { + var vos = ConfigSystem.GetConfig(); + SmallrewardNum rewardNumVo = vos[currentIndex]; + return GetBoost(rewardNumVo, currentRedeemLevel); + } + else if (type == 1) + { + var vos = ConfigSystem.GetConfig(); + LargerewardNum rewardNumVo = vos[currentIndex]; + return GetBoost(rewardNumVo, currentRedeemLevel); + } + else if (type == 2) + { + var vos = ConfigSystem.GetConfig(); + RewardNum rewardNumVo = vos[currentIndex]; + return GetBoost(rewardNumVo, currentRedeemLevel); + + } + + } + return null; + } + + private static int[] GetBoost(SmallrewardNum rewardNumVo, int level) + { + + int[] boost_array = null; + switch (level) + { + case 1: + boost_array = rewardNumVo.Boost_1; + break; + case 2: + boost_array = rewardNumVo.Boost_2; + break; + case 3: + boost_array = rewardNumVo.Boost_3; + break; + } + return boost_array; + } + private static int[] GetBoost(LargerewardNum rewardNumVo, int level) + { + + int[] boost_array = null; + switch (level) + { + case 1: + boost_array = rewardNumVo.Boost_1; + break; + case 2: + boost_array = rewardNumVo.Boost_2; + break; + case 3: + boost_array = rewardNumVo.Boost_3; + break; + } + return boost_array; + } + private static int[] GetBoost(RewardNum rewardNumVo, int level) + { + + int[] boost_array = null; + switch (level) + { + case 1: + boost_array = rewardNumVo.Boost_1; + break; + case 2: + boost_array = rewardNumVo.Boost_2; + break; + case 3: + + boost_array = rewardNumVo.Boost_3; + break; + } + return boost_array; + } + + /// + /// + /// 1:首充礼包 2:免除广告礼包 3:通行证礼包 4:VIP订阅页面 + /// + public static string GetBackgroundName(string des_key) + { + + var vos = ConfigSystem.GetConfig(); + for (int i = 0; i < vos.Count; i++) + { + if (vos[i].des_key == des_key) + { + return vos[i].Name; + } + } + return vos[0].Name; + } + + #region VIP + public static int GetVipLevel() + { + CheckVipExpiration(); + + return DataMgr.VipLevel.Value; + } + + // 会员是否到期 + public static void CheckVipExpiration() + { + var vipExpiration = DataMgr.VipExpirationTime.Value; + Debug.Log($"GameHelp -过期时间--CheckVipExpiration- {vipExpiration} vipLevel-{DataMgr.VipLevel.Value}"); + + // 如果VIP等级大于0且有过期时间 + if (DataMgr.VipLevel.Value > 0 && vipExpiration > 0) + { + //这里使用服务器时间 + long currentTime = ServerClock.GetCurrentServerTime(); + // 如果当前时间超过了过期时间,则认为VIP已过期 + Debug.Log($"currentTime > vipExpiration ====={currentTime}==={currentTime > vipExpiration}"); + if (currentTime > vipExpiration) + { + Debug.Log($"GameHelp -请求订阅检查-过期时间---CheckVipExpiration- {vipExpiration}"); + PurchasingManager.CheckSubExpiration(); + } + } + } + + private static string jsonstr = null; + public static string jsonFilePath = Path.Combine(Application.persistentDataPath, "RainData1.json"); + + static void getJsonData() + { + // string levelData = PreferencesMgr.Instance.LevelData; + // if (!string.IsNullOrEmpty(levelData)) + // { + // jsonstr = levelData; + // } + if (File.Exists(jsonFilePath)) + { + jsonstr = File.ReadAllText(jsonFilePath); + + File.Delete(jsonFilePath); + //return JsonUtility.FromJson(json); + } + } + + public static void clearJsonData() + { + if (File.Exists(jsonFilePath)) + { + File.Delete(jsonFilePath); + } + } + + public static event Action ShowTurn; + public static void ShowPaidPack() + { + if (Random.Range(0, 100) < GetCommonModel().TurnOffPackRate) + { + if (!SaveData.GetSaveObject().is_get_packreward) + { + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.LuckyPackUI_Open, false); + } + else if (!SaveData.GetSaveObject().is_get_ThreeDaysGift) + { + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.ThreeDaysGiftUI_Open);//在每个打开的界面的onclose方法中调用CallShowTurn方法 + } + // else if (SaveData.GetSaveObject().failed_pack_time > GameHelper.GetNowTime()) + // { + // float progress = showResurgence(); + // // if (string.IsNullOrWhiteSpace(jsonstr)) + // // { + // // // CallShowTurn(); + // // // return; + // // } + // UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.ResurgenceUI_Open, progress); + // } + else if (!SaveData.GetSaveObject().is_get_battlepass) + { + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.PassViewUI_Open); + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.PassunlockUI_Open); + } + else if (!SaveData.GetSaveObject().have_slot) + { + // if (SaveData.GetSaveObject().addview_off_time > GameHelper.GetNowTime()) + // { + // UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.AddViewoffUI_Open); + // } + // else + // { + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.BuyslotUI_Open); + // } + } + else + { + CallShowTurn();//调用事件 + } + } + else + { + CallShowTurn();//调用事件 + } + + + + } + public static void CallShowTurn() + { + ShowTurn += ShowTurnOffReward; + ShowTurn?.Invoke(); + ShowTurn = null; + } + public static void ShowTurnOffReward() + { + Debug.Log("chansghidakai"); + if (!UIManager.Instance.IsExistUI(UIConst.GoldRewardUI)) + { + if (IsTemporaryEnd) return; + if (SaveData.GetSaveObject().TurnOffDay != DateTime.Now.Day) + { + SaveData.GetSaveObject().TurnOffDay = DateTime.Now.Day; + SaveData.GetSaveObject().TurnOffNumbers = 0; + } + if (Random.Range(0, 100) < ConfigSystem.GetCommonConf().TurnOffRewardsRate) + { + if ((SaveData.GetSaveObject().TurnOffNumbers < ConfigSystem.GetCommonConf().TurnOffRewardslimit) && (GameHelper.GetNowTime() > SaveData.GetSaveObject().TurnOffTime)) + { + SaveData.GetSaveObject().TurnOffTime = GameHelper.GetNowTime() + ConfigSystem.GetCommonConf().TurnOffRewardsCD; + SaveData.GetSaveObject().TurnOffNumbers++; + UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.GoldRewardUI_Open); + } + } + SaveData.SaveDataFunc(); + } + } + + public static string getTrackEvenName() + { + string event_ = ADEventTrack.AD_Event; + if (GetLoginModel().Enwp == 1) + { + int rate = GetCommonModel().PayRate; + if (!IsGiftSwitch() || GetCommonModel().PayRate == 100) + { + MaxPayManager.isOfficialPay = true; + } + event_ = MaxPayManager.isOfficialPay ? ADEventTrack.Google_Pay_Event : ADEventTrack.MaxPayEvent; + } + return event_; + } + + #endregion + } } \ No newline at end of file diff --git a/Assets/Legend/Manager/HallManager.cs b/Assets/Legend/Manager/HallManager.cs index 47cc861..dbd2a04 100644 --- a/Assets/Legend/Manager/HallManager.cs +++ b/Assets/Legend/Manager/HallManager.cs @@ -80,7 +80,7 @@ namespace BallKingdomCrush DataMgr.GameLevel.Value = 20; //初始化商品(谷歌支付和ios支付) - PurchasingManager.InitProduct(); + // PurchasingManager.InitProduct(); isGameStart = true; diff --git a/Assets/MaxSdk/Mediation/BidMachine.meta b/Assets/MaxSdk/Mediation/BidMachine.meta new file mode 100644 index 0000000..03fa674 --- /dev/null +++ b/Assets/MaxSdk/Mediation/BidMachine.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f9593958d76e04a9fa0ca3653e293eea +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/BidMachine/Editor.meta b/Assets/MaxSdk/Mediation/BidMachine/Editor.meta new file mode 100644 index 0000000..0f3541e --- /dev/null +++ b/Assets/MaxSdk/Mediation/BidMachine/Editor.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 527c65004f8c84edbb4c14b8a2a04c5d +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/BidMachine/Editor +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/BidMachine/Editor/Dependencies.xml b/Assets/MaxSdk/Mediation/BidMachine/Editor/Dependencies.xml new file mode 100644 index 0000000..312247e --- /dev/null +++ b/Assets/MaxSdk/Mediation/BidMachine/Editor/Dependencies.xml @@ -0,0 +1,13 @@ + + + + + + https://artifactory.bidmachine.io/bidmachine + + + + + + + diff --git a/Assets/MaxSdk/Mediation/BidMachine/Editor/Dependencies.xml.meta b/Assets/MaxSdk/Mediation/BidMachine/Editor/Dependencies.xml.meta new file mode 100644 index 0000000..81f22af --- /dev/null +++ b/Assets/MaxSdk/Mediation/BidMachine/Editor/Dependencies.xml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 98a383532dccb495aa31190874842cbe +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/BidMachine/Editor/Dependencies.xml +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/BigoAds.meta b/Assets/MaxSdk/Mediation/BigoAds.meta new file mode 100644 index 0000000..45d4b6d --- /dev/null +++ b/Assets/MaxSdk/Mediation/BigoAds.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 057f3a425e2354240921c2e1b1da8f25 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/BigoAds/Editor.meta b/Assets/MaxSdk/Mediation/BigoAds/Editor.meta new file mode 100644 index 0000000..39a3140 --- /dev/null +++ b/Assets/MaxSdk/Mediation/BigoAds/Editor.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1235281c630214a8999b2185ceba6388 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/BigoAds/Editor +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/BigoAds/Editor/Dependencies.xml b/Assets/MaxSdk/Mediation/BigoAds/Editor/Dependencies.xml new file mode 100644 index 0000000..90c1f1f --- /dev/null +++ b/Assets/MaxSdk/Mediation/BigoAds/Editor/Dependencies.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/Assets/MaxSdk/Mediation/BigoAds/Editor/Dependencies.xml.meta b/Assets/MaxSdk/Mediation/BigoAds/Editor/Dependencies.xml.meta new file mode 100644 index 0000000..521ce00 --- /dev/null +++ b/Assets/MaxSdk/Mediation/BigoAds/Editor/Dependencies.xml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: fba397d5cac8648fea9b0fe82e201e63 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/BigoAds/Editor/Dependencies.xml +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/ByteDance.meta b/Assets/MaxSdk/Mediation/ByteDance.meta new file mode 100644 index 0000000..8bcbd93 --- /dev/null +++ b/Assets/MaxSdk/Mediation/ByteDance.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 939bfc929854b45f78fb8e3caec1f2f8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/ByteDance/Editor.meta b/Assets/MaxSdk/Mediation/ByteDance/Editor.meta new file mode 100644 index 0000000..e54a766 --- /dev/null +++ b/Assets/MaxSdk/Mediation/ByteDance/Editor.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ef8467ffb0e4447b79a8804884a7520a +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/ByteDance/Editor +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/ByteDance/Editor/Dependencies.xml b/Assets/MaxSdk/Mediation/ByteDance/Editor/Dependencies.xml new file mode 100644 index 0000000..5efb952 --- /dev/null +++ b/Assets/MaxSdk/Mediation/ByteDance/Editor/Dependencies.xml @@ -0,0 +1,13 @@ + + + + + + https://artifact.bytedance.com/repository/pangle + + + + + + + diff --git a/Assets/MaxSdk/Mediation/ByteDance/Editor/Dependencies.xml.meta b/Assets/MaxSdk/Mediation/ByteDance/Editor/Dependencies.xml.meta new file mode 100644 index 0000000..5205233 --- /dev/null +++ b/Assets/MaxSdk/Mediation/ByteDance/Editor/Dependencies.xml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0828555cb1ce94702a4af6f3dce3d735 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/ByteDance/Editor/Dependencies.xml +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Chartboost.meta b/Assets/MaxSdk/Mediation/Chartboost.meta new file mode 100644 index 0000000..31cafe3 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Chartboost.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7f473c184d2564d5da3060bde69424aa +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Chartboost/Editor.meta b/Assets/MaxSdk/Mediation/Chartboost/Editor.meta new file mode 100644 index 0000000..38bff8d --- /dev/null +++ b/Assets/MaxSdk/Mediation/Chartboost/Editor.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a90f13141c35746f5a2996c8ad068fe9 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Chartboost/Editor +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Chartboost/Editor/Dependencies.xml b/Assets/MaxSdk/Mediation/Chartboost/Editor/Dependencies.xml new file mode 100644 index 0000000..d3c7e14 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Chartboost/Editor/Dependencies.xml @@ -0,0 +1,14 @@ + + + + + + https://cboost.jfrog.io/artifactory/chartboost-ads/ + + + + + + + + diff --git a/Assets/MaxSdk/Mediation/Chartboost/Editor/Dependencies.xml.meta b/Assets/MaxSdk/Mediation/Chartboost/Editor/Dependencies.xml.meta new file mode 100644 index 0000000..02628eb --- /dev/null +++ b/Assets/MaxSdk/Mediation/Chartboost/Editor/Dependencies.xml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 93b0a4618bd884871af0981a7867bb2f +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Chartboost/Editor/Dependencies.xml +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Facebook.meta b/Assets/MaxSdk/Mediation/Facebook.meta new file mode 100644 index 0000000..a2008af --- /dev/null +++ b/Assets/MaxSdk/Mediation/Facebook.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b30ea37ccd95b42d8a51d03ab3c644fb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Facebook/Editor.meta b/Assets/MaxSdk/Mediation/Facebook/Editor.meta new file mode 100644 index 0000000..4beff5e --- /dev/null +++ b/Assets/MaxSdk/Mediation/Facebook/Editor.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 28880992a399a48b7abe95b66649d711 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Facebook/Editor +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Facebook/Editor/Dependencies.xml b/Assets/MaxSdk/Mediation/Facebook/Editor/Dependencies.xml new file mode 100644 index 0000000..c874ffb --- /dev/null +++ b/Assets/MaxSdk/Mediation/Facebook/Editor/Dependencies.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/Assets/MaxSdk/Mediation/Facebook/Editor/Dependencies.xml.meta b/Assets/MaxSdk/Mediation/Facebook/Editor/Dependencies.xml.meta new file mode 100644 index 0000000..69b5d2c --- /dev/null +++ b/Assets/MaxSdk/Mediation/Facebook/Editor/Dependencies.xml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: aea9bdf974328420db5ae118ef0d2b87 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Facebook/Editor/Dependencies.xml +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Fyber.meta b/Assets/MaxSdk/Mediation/Fyber.meta new file mode 100644 index 0000000..7924127 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Fyber.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b202e2f4f19d249c79cdd63e5abe4a87 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Fyber/Editor.meta b/Assets/MaxSdk/Mediation/Fyber/Editor.meta new file mode 100644 index 0000000..315e8c8 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Fyber/Editor.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e076e4ef7e2874ba69b108cc7a346c2a +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Fyber/Editor +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Fyber/Editor/Dependencies.xml b/Assets/MaxSdk/Mediation/Fyber/Editor/Dependencies.xml new file mode 100644 index 0000000..bba2782 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Fyber/Editor/Dependencies.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/Assets/MaxSdk/Mediation/Fyber/Editor/Dependencies.xml.meta b/Assets/MaxSdk/Mediation/Fyber/Editor/Dependencies.xml.meta new file mode 100644 index 0000000..fd0bbbf --- /dev/null +++ b/Assets/MaxSdk/Mediation/Fyber/Editor/Dependencies.xml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5e123cdc08e804dffb2c40c4fbc83caf +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Fyber/Editor/Dependencies.xml +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Google.meta b/Assets/MaxSdk/Mediation/Google.meta new file mode 100644 index 0000000..469c65c --- /dev/null +++ b/Assets/MaxSdk/Mediation/Google.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 64176641aa4214f18881c7888b2f4187 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Google/Editor.meta b/Assets/MaxSdk/Mediation/Google/Editor.meta new file mode 100644 index 0000000..ea8dd55 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Google/Editor.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e8015bd045cea462c8f39c8a05867d08 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Google/Editor +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Google/Editor/Dependencies.xml b/Assets/MaxSdk/Mediation/Google/Editor/Dependencies.xml new file mode 100644 index 0000000..a921ad0 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Google/Editor/Dependencies.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/Assets/MaxSdk/Mediation/Google/Editor/Dependencies.xml.meta b/Assets/MaxSdk/Mediation/Google/Editor/Dependencies.xml.meta new file mode 100644 index 0000000..36bef72 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Google/Editor/Dependencies.xml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 053b810d3594744e38b6fd0fa378fb57 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Google/Editor/Dependencies.xml +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/InMobi.meta b/Assets/MaxSdk/Mediation/InMobi.meta new file mode 100644 index 0000000..7e215af --- /dev/null +++ b/Assets/MaxSdk/Mediation/InMobi.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cc847e95315674385ba9f42c13733872 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/InMobi/Editor.meta b/Assets/MaxSdk/Mediation/InMobi/Editor.meta new file mode 100644 index 0000000..a998cfd --- /dev/null +++ b/Assets/MaxSdk/Mediation/InMobi/Editor.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a141703acd55a48c2a3e6e6599f90c64 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/InMobi/Editor +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/InMobi/Editor/Dependencies.xml b/Assets/MaxSdk/Mediation/InMobi/Editor/Dependencies.xml new file mode 100644 index 0000000..38e22d7 --- /dev/null +++ b/Assets/MaxSdk/Mediation/InMobi/Editor/Dependencies.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/Assets/MaxSdk/Mediation/InMobi/Editor/Dependencies.xml.meta b/Assets/MaxSdk/Mediation/InMobi/Editor/Dependencies.xml.meta new file mode 100644 index 0000000..1b62e82 --- /dev/null +++ b/Assets/MaxSdk/Mediation/InMobi/Editor/Dependencies.xml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: bc66a0ef4503843ee9b1bf1b1e867367 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/InMobi/Editor/Dependencies.xml +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/IronSource.meta b/Assets/MaxSdk/Mediation/IronSource.meta new file mode 100644 index 0000000..b11e159 --- /dev/null +++ b/Assets/MaxSdk/Mediation/IronSource.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 846f4d3ebb42d4857b6be1db0d010c0d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/IronSource/Editor.meta b/Assets/MaxSdk/Mediation/IronSource/Editor.meta new file mode 100644 index 0000000..327f5d6 --- /dev/null +++ b/Assets/MaxSdk/Mediation/IronSource/Editor.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 531d860cac61f47d19e32f526470ae43 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/IronSource/Editor +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/IronSource/Editor/Dependencies.xml b/Assets/MaxSdk/Mediation/IronSource/Editor/Dependencies.xml new file mode 100644 index 0000000..6aa657b --- /dev/null +++ b/Assets/MaxSdk/Mediation/IronSource/Editor/Dependencies.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/Assets/MaxSdk/Mediation/IronSource/Editor/Dependencies.xml.meta b/Assets/MaxSdk/Mediation/IronSource/Editor/Dependencies.xml.meta new file mode 100644 index 0000000..f77e6f0 --- /dev/null +++ b/Assets/MaxSdk/Mediation/IronSource/Editor/Dependencies.xml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 19262406303f04f05b14b31b3c734d35 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/IronSource/Editor/Dependencies.xml +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Mintegral.meta b/Assets/MaxSdk/Mediation/Mintegral.meta new file mode 100644 index 0000000..9e8f58a --- /dev/null +++ b/Assets/MaxSdk/Mediation/Mintegral.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: daa6d88ad14e64ab69057674530502e0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Mintegral/Editor.meta b/Assets/MaxSdk/Mediation/Mintegral/Editor.meta new file mode 100644 index 0000000..d189ce0 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Mintegral/Editor.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: db1de4066dc4e4290b3879b34fa87de2 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Mintegral/Editor +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Mintegral/Editor/Dependencies.xml b/Assets/MaxSdk/Mediation/Mintegral/Editor/Dependencies.xml new file mode 100644 index 0000000..7cb4e96 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Mintegral/Editor/Dependencies.xml @@ -0,0 +1,14 @@ + + + + + + https://dl-maven-android.mintegral.com/repository/mbridge_android_sdk_oversea + + + + + + + + diff --git a/Assets/MaxSdk/Mediation/Mintegral/Editor/Dependencies.xml.meta b/Assets/MaxSdk/Mediation/Mintegral/Editor/Dependencies.xml.meta new file mode 100644 index 0000000..415c4ab --- /dev/null +++ b/Assets/MaxSdk/Mediation/Mintegral/Editor/Dependencies.xml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 221b2a20a58a04f2cb4afb0779587206 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Mintegral/Editor/Dependencies.xml +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Moloco.meta b/Assets/MaxSdk/Mediation/Moloco.meta new file mode 100644 index 0000000..9e0dd0f --- /dev/null +++ b/Assets/MaxSdk/Mediation/Moloco.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a938c3e9196244689e2919e3bcd0c10 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Moloco/Editor.meta b/Assets/MaxSdk/Mediation/Moloco/Editor.meta new file mode 100644 index 0000000..952b969 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Moloco/Editor.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9ecadc3649c184389b90252aa2a2b448 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Moloco/Editor +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Moloco/Editor/Dependencies.xml b/Assets/MaxSdk/Mediation/Moloco/Editor/Dependencies.xml new file mode 100644 index 0000000..94d78d0 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Moloco/Editor/Dependencies.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/Assets/MaxSdk/Mediation/Moloco/Editor/Dependencies.xml.meta b/Assets/MaxSdk/Mediation/Moloco/Editor/Dependencies.xml.meta new file mode 100644 index 0000000..e066a5f --- /dev/null +++ b/Assets/MaxSdk/Mediation/Moloco/Editor/Dependencies.xml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0f5b2cb1209274ba18b234b42d2efe96 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Moloco/Editor/Dependencies.xml +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/UnityAds/Editor/Dependencies.xml b/Assets/MaxSdk/Mediation/UnityAds/Editor/Dependencies.xml index fa6fec1..560779d 100644 --- a/Assets/MaxSdk/Mediation/UnityAds/Editor/Dependencies.xml +++ b/Assets/MaxSdk/Mediation/UnityAds/Editor/Dependencies.xml @@ -1,7 +1,7 @@ - + diff --git a/Assets/MaxSdk/Mediation/Vungle.meta b/Assets/MaxSdk/Mediation/Vungle.meta new file mode 100644 index 0000000..60f9da5 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Vungle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a0abaf97c8c4846fb86e98da7dc31004 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Vungle/Editor.meta b/Assets/MaxSdk/Mediation/Vungle/Editor.meta new file mode 100644 index 0000000..1ea75cc --- /dev/null +++ b/Assets/MaxSdk/Mediation/Vungle/Editor.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 77b6ea05736a9458f8ef8762ee9b64bb +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Vungle/Editor +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Mediation/Vungle/Editor/Dependencies.xml b/Assets/MaxSdk/Mediation/Vungle/Editor/Dependencies.xml new file mode 100644 index 0000000..8262be7 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Vungle/Editor/Dependencies.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/Assets/MaxSdk/Mediation/Vungle/Editor/Dependencies.xml.meta b/Assets/MaxSdk/Mediation/Vungle/Editor/Dependencies.xml.meta new file mode 100644 index 0000000..7038186 --- /dev/null +++ b/Assets/MaxSdk/Mediation/Vungle/Editor/Dependencies.xml.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0d8ad3a6ddc4f44fab2efe607fe14f26 +labels: +- al_max +- al_max_export_path-MaxSdk/Mediation/Vungle/Editor/Dependencies.xml +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/MaxSdk/Resources/AppLovinSettings.asset b/Assets/MaxSdk/Resources/AppLovinSettings.asset index 2ccf406..7726177 100644 --- a/Assets/MaxSdk/Resources/AppLovinSettings.asset +++ b/Assets/MaxSdk/Resources/AppLovinSettings.asset @@ -13,8 +13,8 @@ MonoBehaviour: m_Name: AppLovinSettings m_EditorClassIdentifier: qualityServiceEnabled: 1 - sdkKey: oXM0CzVDi7P1HstOpKvFMInPMOzpQ9uA6t3x75q5f5wQvsEy9vuiiiM94ZJCJSV7PcZGroSSInQCTGsu04QEiE + sdkKey: LHx_tPFslZpTTiIPABmS24T7Ev1QEVOUVOzirpkxLUuTwJTVZGCKAk9L3Tm3FwuM5LxHK3q1EIbAemJB5sNpX2 customGradleVersionUrl: customGradleToolsVersion: - adMobAndroidAppId: ca-app-pub-9770853913354070~9526412598 - adMobIosAppId: + adMobAndroidAppId: ca-app-pub-3940256099942544~3347511713 + adMobIosAppId: ca-app-pub-3940256099942544~1458002511 diff --git a/Assets/MaxSdk/Resources/AppLovinSettings.asset.meta b/Assets/MaxSdk/Resources/AppLovinSettings.asset.meta index e7bf2f4..0b1b24a 100644 --- a/Assets/MaxSdk/Resources/AppLovinSettings.asset.meta +++ b/Assets/MaxSdk/Resources/AppLovinSettings.asset.meta @@ -1,8 +1,8 @@ fileFormatVersion: 2 -guid: de88106520eade04093d2dbe212bb37d +guid: 95645d8e09bd1744589b1ef54dc41982 NativeFormatImporter: externalObjects: {} - mainObjectFileID: 11400000 + mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/OPS/Obfuscator/Log/Android.txt b/Assets/OPS/Obfuscator/Log/Android.txt index 59af046..602d303 100644 --- a/Assets/OPS/Obfuscator/Log/Android.txt +++ b/Assets/OPS/Obfuscator/Log/Android.txt @@ -28,8 +28,8 @@ [Info][OPS.OBF][OnAnalyse_Assets] Skip component Analyse Unity Animation Methods [Info][OPS.OBF][OnProcess_Assets] Skip component Analyse Unity Animation Methods [Debug][OPS.OBF][OnAnalyse_Component_Scenes] Iterate components in loaded build scene Assets/Scenes/MainScene.unity. -[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found 16 Root GameObjects in Scene Assets/Scenes/MainScene.unity -[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found 213 Components in Scene Assets/Scenes/MainScene.unity +[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found 17 Root GameObjects in Scene Assets/Scenes/MainScene.unity +[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found 214 Components in Scene Assets/Scenes/MainScene.unity [Info][OPS.OBF][OnAnalyse_Component_Scenes] Skip component Analyse Unity Event Component [Info][OPS.OBF][OnAnalyse_Component_Scenes] Process component Analyse MonoScript [Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found mono script reference ErrorLogger for ErrorObj @@ -40,10 +40,6 @@ [Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found mono script reference in serialized properties for ZooMatch (1): - LoveLegendRoot -[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found mono script reference DontConfuse.AppsFlyerObjectScript1 for ZooMatch -[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found mono script reference in serialized properties for ZooMatch (1): - - DontConfuse.AppsFlyerObjectScript1 - [Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found mono script reference IgnoreOPS.UnityManager for UnityManager [Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found mono script reference in serialized properties for UnityManager (1): - IgnoreOPS.UnityManager @@ -364,10 +360,62 @@ [Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found mono script reference in serialized properties for NewErrorCount (1): - TMPro.TextMeshProUGUI -[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found 56 Prefabs. -[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found 510 Components in the prefabs. +[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found mono script reference BallKingdomCrush.IAPPayManager for IAPPayManager +[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found mono script reference in serialized properties for IAPPayManager (1): + - BallKingdomCrush.IAPPayManager + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found 76 Prefabs. +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found 846 Components in the prefabs. [Info][OPS.OBF][OnAnalyse_Component_Prefabs] Skip component Analyse Unity Event Component [Info][OPS.OBF][OnAnalyse_Component_Prefabs] Process component Analyse MonoScript +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 1024x768 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 1024x768 (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 1024x768 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 1024x768 (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for LEADERBOARD +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for LEADERBOARD (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for LEADERBOARD +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for LEADERBOARD (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Button + [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_lose [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_lose (1): - Spine.Unity.SkeletonAnimation @@ -376,14 +424,198 @@ [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_disaappear_1 (1): - Spine.Unity.SkeletonAnimation +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for FULL_BANNER +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for FULL_BANNER (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for FULL_BANNER +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for FULL_BANNER (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 768x1024 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 768x1024 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1): + - UnityEngine.UI.Text + [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_hand_pre [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_hand_pre (1): - Spine.Unity.SkeletonAnimation +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for Canvas +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Canvas (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for Canvas +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Canvas (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.HorizontalLayoutGroup for Btns_1 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Btns_1 (1): + - UnityEngine.UI.HorizontalLayoutGroup + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_video +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_video +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy) +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_inter +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_inter +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy) +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_splash +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_splash +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy) +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.HorizontalLayoutGroup for Btns_2 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Btns_2 (1): + - UnityEngine.UI.HorizontalLayoutGroup + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_video +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_video +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy) +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_inter +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_inter +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy) +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_splash +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_splash +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy) +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.EventSystems.EventSystem for EventSystem +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for EventSystem (1): + - UnityEngine.EventSystems.EventSystem + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.EventSystems.StandaloneInputModule for EventSystem +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for EventSystem (1): + - UnityEngine.EventSystems.StandaloneInputModule + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] System.ArgumentException: Object at index 0 is null + at (wrapper managed-to-native) UnityEditor.SerializedObject.InternalCreate(UnityEngine.Object[],UnityEngine.Object) + at UnityEditor.SerializedObject..ctor (UnityEngine.Object obj) [0x00008] in <4b8f645257c94d1296f440a10c6f388e>:0 + at OPS.Obfuscator.Editor.Serialization.Unity.Helper.SerializedPropertyHelper.SearchVariablesWithSerializedObject (UnityEngine.Object _Object) [0x00006] in :0 [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_first_reward [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_first_reward (1): - Spine.Unity.SkeletonAnimation +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for ConsentForm +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for ConsentForm (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for ConsentForm +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for ConsentForm (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.LayoutElement for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.LayoutElement + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1): + - UnityEngine.UI.Text + [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_signin [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_signin (1): - Spine.Unity.SkeletonAnimation @@ -452,6 +684,42 @@ [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for EventSystem (1): - AppLovinMax.Scripts.MaxEventSystemChecker +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for ADAPTIVE +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for ADAPTIVE (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for ADAPTIVE +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for ADAPTIVE (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for BANNER +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for BANNER (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for BANNER +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for BANNER (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Button + [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_btn_secret [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_btn_secret (1): - Spine.Unity.SkeletonAnimation @@ -464,6 +732,38 @@ [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_chatphone (1): - Spine.Unity.SkeletonAnimation +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 1024x768 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 1024x768 (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 1024x768 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 1024x768 (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1): + - UnityEngine.UI.Text + [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_pass_premium [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_pass_premium (1): - Spine.Unity.SkeletonAnimation @@ -512,6 +812,46 @@ [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_btn_shop (1): - Spine.Unity.SkeletonAnimation +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for SMART_BANNER +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for SMART_BANNER (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for SMART_BANNER +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for SMART_BANNER (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for CENTER +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for CENTER (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for CENTER +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for CENTER (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1): + - UnityEngine.UI.Text + [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for BannerTop [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for BannerTop (1): - UnityEngine.UI.CanvasScaler @@ -548,6 +888,22 @@ [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_broad (1): - Spine.Unity.SkeletonAnimation +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for LARGE_BANNER +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for LARGE_BANNER (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for LARGE_BANNER +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for LARGE_BANNER (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Button + [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_tips [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_tips (1): - Spine.Unity.SkeletonAnimation @@ -912,6 +1268,122 @@ at (wrapper managed-to-native) UnityEditor.SerializedObject.InternalCreate(UnityEngine.Object[],UnityEngine.Object) at UnityEditor.SerializedObject..ctor (UnityEngine.Object obj) [0x00008] in <4b8f645257c94d1296f440a10c6f388e>:0 at OPS.Obfuscator.Editor.Serialization.Unity.Helper.SerializedPropertyHelper.SearchVariablesWithSerializedObject (UnityEngine.Object _Object) [0x00006] in :0 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for Canvas +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Canvas (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for Canvas +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Canvas (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.HorizontalLayoutGroup for Btns_1 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Btns_1 (1): + - UnityEngine.UI.HorizontalLayoutGroup + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_video +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_video +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy) +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_inter +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_inter +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy) +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_splash +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_splash +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy) +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.HorizontalLayoutGroup for Btns_2 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Btns_2 (1): + - UnityEngine.UI.HorizontalLayoutGroup + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_video +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_video +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy) +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_inter +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_inter +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy) +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_splash +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_splash +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy) +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.EventSystems.EventSystem for EventSystem +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for EventSystem (1): + - UnityEngine.EventSystems.EventSystem + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.EventSystems.StandaloneInputModule for EventSystem +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for EventSystem (1): + - UnityEngine.EventSystems.StandaloneInputModule + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference ZrZYFo6bYXYM71YyLSDKDemo for Demo +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Demo (1): + - ZrZYFo6bYXYM71YyLSDKDemo + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for MEDIUM_RECTANGLE +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for MEDIUM_RECTANGLE (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for MEDIUM_RECTANGLE +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for MEDIUM_RECTANGLE (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1): + - UnityEngine.UI.Button + [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference AppsFlyerObjectScript for AppsFlyerObject [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for AppsFlyerObject (1): - AppsFlyerObjectScript @@ -924,6 +1396,42 @@ [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_disaappear_2 (1): - Spine.Unity.SkeletonAnimation +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 1024x768 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 1024x768 (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 1024x768 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 1024x768 (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1): + - UnityEngine.UI.Text + [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_win_title [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_win_title (1): - Spine.Unity.SkeletonAnimation @@ -932,10 +1440,78 @@ [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_login_light (1): - Spine.Unity.SkeletonAnimation +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 768x1024 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 768x1024 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1): + - UnityEngine.UI.Text + [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_disaappear_2 [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_disaappear_2 (1): - Spine.Unity.SkeletonAnimation +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 768x1024 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 768x1024 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1): + - UnityEngine.UI.Text + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1): + - UnityEngine.UI.Text + [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference TMPro.TextMeshProUGUI for CommandSuggestion [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for CommandSuggestion (1): - TMPro.TextMeshProUGUI @@ -944,6 +1520,38 @@ [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_btn_start (1): - Spine.Unity.SkeletonAnimation +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 768x1024 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1): + - UnityEngine.UI.CanvasScaler + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 768x1024 +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1): + - UnityEngine.UI.GraphicRaycaster + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Image + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1): + - UnityEngine.UI.Button + +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text +[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1): + - UnityEngine.UI.Text + [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_powerup [Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_powerup (1): - Spine.Unity.SkeletonAnimation @@ -1057,21 +1665,29 @@ [Debug][OPS.OBF][Setup] Load Pipeline [Warning][OPS.OBF][Setup] There is no assembly: Assembly-CSharp-firstpass.dll -[Debug][OPS.OBF][Setup] Found to obfuscate assemblies (9): +[Debug][OPS.OBF][Setup] Found to obfuscate assemblies (17): - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\Assembly-CSharp.dll + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\SDKConfig.dll - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\spine-unity.dll + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\BigoAds.dll - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\MaxSdk.Scripts.dll - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\IngameDebugConsole.Runtime.dll - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\AppsFlyer.dll + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\KwaiAds.dll - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\DOTween.Modules.dll + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\VosacoSDK.dll - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\NativeGallery.Runtime.dll - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\DOTweenPro.Scripts.dll - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\endel.nativewebsocket.dll + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\WebView.dll + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\BouncyCastle.Cryptography.dll + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\ZrZYFo6bYXYM71YyLSDK.dll + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\SDK_IAP.dll [Debug][OPS.OBF][Setup] Found helper assemblies (1): - C:\WorkSpace\tron_gp\BallCrushBest_GP\Temp\StagingArea\Data\Managed\OPS.Obfuscator.dll -[Debug][OPS.OBF][Setup] Found dependency directories (44): +[Debug][OPS.OBF][Setup] Found dependency directories (56): - C:\Program Files\Unity\Hub\Editor\2022.3.62f2\Editor\Data\MonoBleedingEdge\lib\mono\unityjit-win32 - C:\Program Files\Unity\Hub\Editor\2022.3.62f2\Editor\Data\Managed\UnityEngine - C:\Program Files\Unity\Hub\Editor\2022.3.62f2\Editor\Data\MonoBleedingEdge\lib\mono\unityjit-win32\Facades @@ -1081,8 +1697,11 @@ - C:\Program Files\Unity\Hub\Editor\2022.3.62f2\Editor\Data\PlaybackEngines\iOSSupport - C:\Program Files\Unity\Hub\Editor\2022.3.62f2\Editor\Data\PlaybackEngines\WindowsStandaloneSupport - C:\WorkSpace\tron_gp\BallCrushBest_GP\Library\ScriptAssemblies + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\Firebase\Plugins - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\Legend\Plugins\Demigiant\DemiLib\Core\Editor - C:\WorkSpace\tron_gp\BallCrushBest_GP\Library\PackageCache\com.unity.visualscripting@1.9.4\Editor\VisualScripting.Core\Dependencies\YamlDotNet + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\ExternalDependencyManager\Editor\1.2.177 + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\GoogleMobileAds - C:\WorkSpace\tron_gp\BallCrushBest_GP\Library\PackageCache\com.unity.ext.nunit@1.0.6\net35\unity-custom - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\Legend\Plugins\SharpZipLib - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\OPS\Editor\Plugins\Mono.Cecil @@ -1091,7 +1710,9 @@ - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\ExternalDependencyManager\Editor\1.2.186 - C:\WorkSpace\tron_gp\BallCrushBest_GP\Library\PackageCache\com.unity.collab-proxy@2.7.1\Lib\Editor - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\Legend\Plugins\Demigiant\DemiLib\Core + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\AppsFlyer\Tests - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\Legend\Plugins\Demigiant\DOTween\Editor + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\Firebase\Editor - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\OPS\Obfuscator\Editor\Plugins - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\Legend\Plugins\Demigiant\DOTweenPro\Editor - C:\WorkSpace\tron_gp\BallCrushBest_GP\Library\PackageCache\com.unity.visualscripting@1.9.4\Editor\VisualScripting.Core\Dependencies\DotNetZip @@ -1100,19 +1721,26 @@ - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\Legend\Plugins\Demigiant\DOTween - C:\WorkSpace\tron_gp\BallCrushBest_GP\Library\PackageCache\com.unity.visualscripting@1.9.4\Runtime\VisualScripting.Flow\Dependencies\NCalc - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\Legend\Plugins\Demigiant\DOTweenPro - - C:\WorkSpace\tron_gp\BallCrushBest_GP\Library\PackageCache\com.unity.ide.rider@3.0.36\Rider\Editor + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Library\PackageCache\com.unity.ide.rider@3.0.40\Rider\Editor + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\ZrZYFo6bYXYM71YyLSDK\Plugins\JsonNet - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\OPS\Plugins\Json - - C:\WorkSpace\tron_gp\BallCrushBest_GP\Library\PackageCache\com.unity.nuget.newtonsoft-json@3.2.1\Runtime - C:\WorkSpace\tron_gp\BallCrushBest_GP\Library\PackageCache\com.unity.visualscripting@1.9.4\Editor\VisualScripting.Core\EditorAssetResources + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\ZrZYFo6bYXYM71YyLSDK\ThirdParty\IAP\Plugins - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\Uni2SDK + - C:\WorkSpace\tron_gp\BallCrushBest_GP\Assets\ZrZYFo6bYXYM71YyLSDK\Plugins - C:\Program Files\Unity\Hub\Editor\2022.3.62f2\Editor\Data\PlaybackEngines\AndroidPlayer\Variations\il2cpp\Managed + - Assets\Firebase\Plugins + - Assets\GoogleMobileAds - Assets\Legend\Plugins\SharpZipLib - Assets\Legend\Plugins\Demigiant\DemiLib\Core + - Assets\AppsFlyer\Tests - Assets\Legend\Plugins\Demigiant\DOTween - Assets\Legend\Plugins\Demigiant\DOTweenPro + - Assets\ZrZYFo6bYXYM71YyLSDK\Plugins\JsonNet - Assets\OPS\Plugins\Json - - C:\WorkSpace\tron_gp\BallCrushBest_GP\Library\PackageCache\com.unity.nuget.newtonsoft-json@3.2.1\Runtime\AOT + - Assets\ZrZYFo6bYXYM71YyLSDK\ThirdParty\IAP\Plugins - Assets\Uni2SDK + - Assets\ZrZYFo6bYXYM71YyLSDK\Plugins - C:\Program Files\Unity\Hub\Editor\2022.3.62f2\Editor\Data\UnityReferenceAssemblies\unity-4.8-api - C:\Program Files\Unity\Hub\Editor\2022.3.62f2\Editor\Data\UnityReferenceAssemblies\unity-4.8-api\Facades - C:\Program Files\Unity\Hub\Editor\2022.3.62f2\Editor\Managed @@ -1252,9 +1880,7 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] GiftType] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] VipDay] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] OpenBrowser] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PayType] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass9_0] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SaveingPotClass] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SaveingPotTaskStatus] Analyse Type References in Custom Attribute References... @@ -1388,8 +2014,12 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] Body] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] WebSocketData] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] WebSocketTools] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ZrZYFo6bYXYM71YyLSDKDemo/<>c] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ZrZYFo6bYXYM71YyLSDKDemo] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SDK_IAP.IAPDemoUsage/<>c] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SDK_IAP.IAPDemoUsage] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] UNSDK.Uni2SdkDemo] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] UNSDK.SdkConfigMgr/<>c] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] UNSDK.SdkConfigMgr] Analyse Type References in Custom Attribute References... @@ -1784,7 +2414,6 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGModule.Common.Extensions.ObjectExtensionsTest] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGModule.Common.Extensions.StringExtensions] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGModule.Common.Base.SingletonMonoBehaviour`1] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] DontConfuse.AppsFlyerObjectScript1] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FutureCore.Base64EncodeUtil] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MiniJSON.Json/Parser/TOKEN] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MiniJSON.Json/Parser] Analyse Type References in Custom Attribute References... @@ -2546,6 +3175,11 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.StringExtend] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.GameObjectExtend] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.FireBaseManger] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c__DisplayClass23_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c__DisplayClass24_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c__DisplayClass26_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.IAPPayManager] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.LoveLegendCore] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MainScene/<>c] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MainScene/<>c__DisplayClass6_0] Analyse Type References in Custom Attribute References... @@ -2600,12 +3234,11 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddviewnewModel] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c__DisplayClass10_0] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c__DisplayClass10_1] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddviewnewUICtrl] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddViewoffCtrl] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddViewoffModel] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI/<>c__DisplayClass10_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI/<>c] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddViewoffUICtrl] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AlbumDetailCtrl] Analyse Type References in Custom Attribute References... @@ -3023,9 +3656,10 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.PlayerPrefsKit] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.Rescrypt] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass25_0] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass26_0] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/d__21] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass27_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass28_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass8_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/d__23] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] DataEyeAnalytics.IDynamicSuperProperties] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsEvent/Type] Analyse Type References in Custom Attribute References... @@ -3093,7 +3727,6 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] MaxPayManager/<>c__DisplayClass5_0] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] MaxPayManager/d__11] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] PurchasingManager/<>c] Is a nested class and has no namespace. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass9_0] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] RewardSystem/<>c__DisplayClass10_0] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] RewardSystem/<>c__DisplayClass10_1] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] SerializeUtil/<>c] Is a nested class and has no namespace. @@ -3176,7 +3809,9 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] IAPManagerV5/d__96] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] IAPManagerV5/d__72] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] IAPManagerV5] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ZrZYFo6bYXYM71YyLSDKDemo/<>c] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] SDK_IAP.IAPDemoUsage/<>c] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] UNSDK.SdkConfigMgr/<>c] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ES3Types.ES3NativeArrayType/<>c] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ES3Types.ES3StackType/<>c] Is a nested class and has no namespace. @@ -3416,6 +4051,10 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.BIManager/d__13] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.CloudDataSaver/<>c__DisplayClass0_0] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.BaseMainThreadDispatcher`3/MainThreadMsgClass] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c__DisplayClass23_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c__DisplayClass24_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c__DisplayClass26_0] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.MainScene/<>c] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.MainScene/<>c__DisplayClass6_0] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.AudioManager/<>c] Is a nested class and has no namespace. @@ -3435,8 +4074,7 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.AddViewUI/<>c__DisplayClass12_0] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c__DisplayClass10_0] Is a nested class and has no namespace. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c__DisplayClass10_1] Is a nested class and has no namespace. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI/<>c__DisplayClass10_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI/<>c] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.AlbumDetailUI/<>c__DisplayClass19_0] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.AlbumDetailUI/<>c__DisplayClass19_1] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.AlubumUI/<>c] Is a nested class and has no namespace. @@ -3556,9 +4194,10 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.Timer/<>c] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.Timer] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c] Is a nested class and has no namespace. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass25_0] Is a nested class and has no namespace. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass26_0] Is a nested class and has no namespace. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.MaxADKit/d__21] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass27_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass28_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass8_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] BallKingdomCrush.MaxADKit/d__23] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsEvent/Type] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsAPI/Token] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsAPI/TATimeZone] Is a nested class and has no namespace. @@ -3567,6 +4206,18 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON/Parser/TOKEN] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON/Parser] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON/Serializer] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] ZrZYFo6bYXYM71YyLSDK.SDKConfig] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] ZrZYFo6bYXYM71YyLSDK.AssetUtils] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[SDKConfig] ZrZYFo6bYXYM71YyLSDK.SDKConfig] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[SDKConfig] ZrZYFo6bYXYM71YyLSDK.AssetUtils] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Analyse Type References in Module... @@ -3856,6 +4507,148 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[spine-unity] Spine.Collections.OrderedDictionary`2/KeyCollection] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[spine-unity] Spine.Collections.OrderedDictionary`2/ValueCollection] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[spine-unity] Spine.Collections.OrderedDictionary`2/d__34] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] AdHelper/Task] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] AdHelper/DestryAdTask] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] AdHelper] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AdInteractionCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AdLoadCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidBannerAd/<>c__DisplayClass34_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidBannerAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidClientFactory] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidInterstitialAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidNativeAd/<>c__DisplayClass33_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidNativeAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidPlatformTool/<>c__DisplayClass6_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidPlatformTool] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidPopupAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidRewardedAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidSplashAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.BigoSdkClient/InitCallBack] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.BigoSdkClient] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.RewardedAdInteractionCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.SplashAdInteractionCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass35_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass39_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoDispatcher] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IBannerAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IBigoAd`1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IClientBidding] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IClientFactory] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IInterstitialAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.INativeAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IPopupAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IRewardedAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.ISDK] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.ISplashAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/<>c] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoBannerAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoBannerRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoNativeAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoNativeRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoPopupAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoPopupRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoRewardedAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoRewardedRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoSplashAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoSplashRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdGender] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.AdInteractionCallback] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.AdLoadCallback] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidBannerAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidBannerAd/<>c__DisplayClass34_0] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidClientFactory] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidInterstitialAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidNativeAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidNativeAd/<>c__DisplayClass33_0] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidPlatformTool] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidPlatformTool/<>c__DisplayClass6_0] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidPopupAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidRewardedAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidSplashAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.BigoSdkClient] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.BigoSdkClient/InitCallBack] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.RewardedAdInteractionCallback] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.Android.SplashAdInteractionCallback] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass35_0] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass39_0] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.BigoDispatcher] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IBannerAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IBigoAd`1] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IClientBidding] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IClientFactory] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IInterstitialAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.INativeAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IPopupAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IRewardedAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.ISDK] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.ISplashAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/<>c] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoBannerAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoBannerRequest] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialRequest] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoNativeAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoNativeRequest] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoPopupAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoPopupRequest] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoRequest] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoRewardedAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoRewardedRequest] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoSplashAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoSplashRequest] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdGender] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] AdHelper/Task] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] AdHelper/DestryAdTask] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidBannerAd/<>c__DisplayClass34_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidNativeAd/<>c__DisplayClass33_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidPlatformTool/<>c__DisplayClass6_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Platforms.Android.BigoSdkClient/InitCallBack] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass35_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass39_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Common.BigoDispatcher] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.BigoBannerRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.BigoNativeRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.BigoPopupRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.BigoRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.BigoRewardedRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.BigoSplashRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Analyse Type References in Module... @@ -4060,6 +4853,7 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFAdRevenueData] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFPurchaseType] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFPurchaseDetailsAndroid] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseType] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseDetailsIOS] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogStatus] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogResult] Analyse Type References in Custom Attribute References... @@ -4089,11 +4883,145 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateAndLog] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateReceipt] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.MediationNetwork] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AdRevenueScheme] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFAdRevenueData] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFPurchaseType] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFPurchaseDetailsAndroid] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseType] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseDetailsIOS] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogStatus] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogResult] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyer] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyer/unityCallBack] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.EmailCryptType] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyerAndroid] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyerConsent] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyerRequestEventArgs] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.DeepLinkEventsArgs] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.DeepLinkStatus] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.DeepLinkError] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSource] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSourceStoreKit2] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.UnityPurchaseRevenueBridgeProxy] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyerPurchaseConnector] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.Store] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyerAutoLogPurchaseRevenueOptions] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.StoreKitVersion] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerAndroidBridge] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerConversionData] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerIOSBridge] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerNativeBridge] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseValidation] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerUserInvite] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateAndLog] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateReceipt] Because of the type skipping settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[AppsFlyer] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[AppsFlyer] AFMiniJSON.Json/Parser/TOKEN] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[AppsFlyer] AFMiniJSON.Json/Parser] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[AppsFlyer] AFMiniJSON.Json/Serializer] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[AppsFlyer] AppsFlyerSDK.AppsFlyer/unityCallBack] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] IKwaiAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAdsMgr/InitResultCallbackImpl] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAdsMgr] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiLog] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiInterAd/InterstitialAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiInterAd/InterstitialAdLoadListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiInterAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiVideoAd/RewardAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiVideoAd/RewardAdLoadListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiVideoAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] BigoAds.Scripts.Platforms.Android.AndroidPlatformTool] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.AndroidClientFactory] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiAdSDKInit/KwaiNetworkSingleton] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiAdSDKInit/KwaiUnityCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiAdSDKInit] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiInterstitialAdController/AdLoadListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiInterstitialAdController/InterstitialAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiInterstitialAdController] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiRewardAdController/AdLoadListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiRewardAdController/RewardAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiRewardAdController] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiSdkClient] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IRwardAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IClientBidding] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IClientFactory] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IKwaiAdController`3] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.ISDK] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Constants/Request] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Constants/Currency] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Constants] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.InitResultCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig/Builder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdsSdk] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdController] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdLoadListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.KwaiRewardAdRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdController] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdLoadListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.KwaiInterstitialAdRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] BigoAds.Scripts.Platforms.Android.AndroidPlatformTool] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Platforms.Android.AndroidClientFactory] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiAdSDKInit] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiAdSDKInit/KwaiNetworkSingleton] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiAdSDKInit/KwaiUnityCallback] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiInterstitialAdController] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiInterstitialAdController/AdLoadListener] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiInterstitialAdController/InterstitialAdListener] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiRewardAdController] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiRewardAdController/AdLoadListener] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiRewardAdController/RewardAdListener] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiSdkClient] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Common.IAdListener] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Common.IRwardAdListener] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Common.IClientBidding] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Common.IClientFactory] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Common.IKwaiAdController`3] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Common.ISDK] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Constants] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Constants/Request] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Constants/Currency] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.InitResultCallback] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig/Builder] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdsSdk] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.KwaiRequest] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdController] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdListener] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdLoadListener] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Reward.KwaiRewardAdRequest] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdController] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdListener] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdLoadListener] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.KwaiInterstitialAdRequest] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAdsMgr/InitResultCallbackImpl] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiInterAd/InterstitialAdListener] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiInterAd/InterstitialAdLoadListener] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiVideoAd/RewardAdListener] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiVideoAd/RewardAdLoadListener] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiAdSDKInit/KwaiNetworkSingleton] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiAdSDKInit/KwaiUnityCallback] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiInterstitialAdController/AdLoadListener] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiInterstitialAdController/InterstitialAdListener] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiRewardAdController/AdLoadListener] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiRewardAdController/RewardAdListener] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAds.Scripts.Api.Constants/Request] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAds.Scripts.Api.Constants/Currency] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig/Builder] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Type References in Module... @@ -4270,6 +5198,26 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForPosition] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForStart] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils/Physics] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.ISDKInitCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoAdSDK] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoInterAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoInterAdListenerProxy] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoRewardAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoRewardAdListenerProxy] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.ISDKInitCallback] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.VosacoAdSDK] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.VosacoInterAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.VosacoInterAdListenerProxy] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.VosacoRewardAd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.VosacoRewardAdListenerProxy] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Analyse Type References in Module... @@ -4442,6 +5390,3727 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[endel.nativewebsocket] NativeWebSocket.WebSocket/d__33] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[endel.nativewebsocket] NativeWebSocket.WebSocket/d__36] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[endel.nativewebsocket] NativeWebSocket.WebSocket/d__32] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] WebViewObject/<>c__DisplayClass29_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] WebViewObject/d__30] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] WebViewObject] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[WebView] WebViewObject/<>c__DisplayClass29_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[WebView] WebViewObject/d__30] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] ThisAssembly] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.AttributeCertificateHolder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.AttributeCertificateIssuer] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.DeltaCertificateTool] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.IX509Extension] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.PemParser] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.PrincipalUtilities] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.SubjectPublicKeyInfoFactory] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509AttrCertParser] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Attribute] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate/CachedEncoding] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertificatePair] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertificateParser/d__11] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertificateParser] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertPairParser] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Crl/CachedEncoding] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Crl] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CrlEntry] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CrlParser/d__13] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CrlParser] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509ExtensionBase] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509KeyUsage] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509SignatureUtilities] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Utilities] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V1CertificateGenerator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificate/<>c] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificate] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2CrlGenerator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V3CertificateGenerator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509AttrCertStoreSelector] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509CertPairStoreSelector] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509CertStoreSelector] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509CrlStoreSelector] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.ICheckingCertificate] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Extension.AuthorityKeyIdentifierStructure] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Extension.SubjectKeyIdentifierStructure] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Extension.X509ExtensionUtilities] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Arrays] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.BigIntegers] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Bytes] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Enums] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IEncodable] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Integers] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Longs] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.MemoableResetException] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Objects] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Platform] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Shorts] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Strings] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Adler32] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Deflate/Config] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Deflate] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.InfBlocks] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.InfCodes] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Inflate] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.InfTree] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.JZlib] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.StaticTree] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Tree] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZInputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZInputStreamLeaveOpen] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZOutputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZOutputStreamLeaveOpen] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Net.IPAddress] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BaseInputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BaseOutputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BinaryReaders] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BinaryWriters] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BufferedFilterStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.FilterStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.LimitedBuffer] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.LimitedInputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.PushbackStream/d__2] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.PushbackStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.StreamOverflowException] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Streams/d__8] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Streams/d__20] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Streams] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.TeeInputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.TeeOutputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemGenerationException] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemHeader] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObject] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObjectGenerator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObjectParser] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemReader] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemWriter] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Compression.Bzip2] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Compression.Zip] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Compression.ZLib] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.Base64] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.Base64Encoder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.BufferedDecoder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.BufferedEncoder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.Hex] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.HexEncoder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.HexTranslator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.IEncoder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.ITranslator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.UrlBase64] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.UrlBase64Encoder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Date.DateTimeUtilities] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.CollectionUtilities/d__15`2] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.StoreImpl`1/-EnumerateMatches>d__2] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream/StackElem] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampResponseGenerator/FailInfo] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampTokenGenerator/TableGen] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampTokenGenerator/TableGen2] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate/ParseOptions] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateUrl/ListBuffer16] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsReassembler/Range] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsReliableHandshake/Message] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsReliableHandshake/RecordLayerBuffer] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsReliableHandshake/Retransmit] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.OfferedPsks/BindersConfig] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.OfferedPsks/SelectedConfig] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.RecordStream/Record] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.RecordStream/SequenceNumber] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters/Builder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.LegacyTls13Verifier/TlsStreamVerifierImpl] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement/DHCredentialedAgreement] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement/ECCredentialedAgreement] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Runtime.Intrinsics.X86.Bmi1/X64] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Runtime.Intrinsics.X86.Bmi2/X64] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator/PartyU] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator/PartyV] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory/Converter] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Shake256Engine] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric/ShakeSymmetric] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric/AesSymmetric] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters/L1Constants] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters/L3Constants] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters/L5Constants] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.Signature/Proof] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.Signature2/Proof2] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemGenerator/SecretWithEncapsulationImpl] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemGenerator/SecretWithEncapsulationImpl] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities/WrapperDigest] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemGenerator/SecretWithEncapsulationImpl] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller/Codeword] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator/Shake128MatrixGenerator] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator/Aes128MatrixGenerator] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/AesSymmetric] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/ShakeSymmetric] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemGenerator/SecretWithEncapsulationImpl] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing/d__27] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPath/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12Store/CertID] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12Store/<>c__DisplayClass56_0`1] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12Store/<>c__DisplayClass57_0`1] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemMode] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.JksStore/JksTrustedCertEntry] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.JksStore/JksKeyEntry] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.JksStore/ErasableByteStream] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/BufferedCipherWrapper] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.BasicOcspResp/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.BasicOcspRespGenerator/ResponseObject] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspReq/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspReqGenerator/RequestObject] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspReqGenerator/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.RespData/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Primes/MROutput] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Primes/STOutput] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve/Config] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve/DefaultLookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractFpCurve/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.F2mCurve/DefaultF2mLookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint/ValidityCallback] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointExtended] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointPrecomp] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointPrecompZ] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointTemp] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointTemp] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities/FixedPointCallback] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/ConfigureBasepointCallback] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/MapPointCallback] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/PrecomputeCallback] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/PrecomputeWithPointMapCallback] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WTauNafMultiplier/WTauNafCallback] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.EndoUtilities/MapPointCallback] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve/SecP128R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve/SecP160K1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve/SecP160R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve/SecP160R2LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve/SecP192K1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve/SecP192R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve/SecP224K1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve/SecP224R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve/SecP256K1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve/SecP256R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve/SecP384R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve/SecP521R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve/SecT113R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve/SecT113R2LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve/SecT131R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve/SecT131R2LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve/SecT163K1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve/SecT163R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve/SecT163R2LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve/SecT193R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve/SecT193R2LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve/SecT233K1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve/SecT233R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve/SecT239K1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve/SecT283K1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve/SecT283R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve/SecT409K1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve/SecT409R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve/SecT571K1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve/SecT571R1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve/SM2P256V1LookupTable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.Tnaf/PartModPreCompCallback] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.Tnaf/PartModPreCompInfo] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.PasswordConverter/ConverterFunction] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.DerOtherInfo/Builder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner/Buffer] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.Ed25519Signer/Buffer] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.Ed448Signer/Buffer] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner/Buffer] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.SlhDsaSigner/Buffer] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.SM2Signer/State] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider/BasicEntropySource] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.CryptoApiEntropySourceProvider/CryptoApiEntropySource] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder/HashDrbgProvider] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder/HMacDrbgProvider] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder/CtrDrbgProvider] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECDomainParameters/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher/GcmSivCache] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher/GcmSivHasher] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric/ShakeSymmetric] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/FillBlock] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Position] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/<>c__DisplayClass24_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.ThreefishEngine/ThreefishCipher] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish256Cipher] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish512Cipher] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish1024Cipher] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP128R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160K1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160R2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP192K1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP192R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP224K1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP224R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP256K1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP256R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP384R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP521R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT113R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT113R2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT131R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT131R2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163K1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163R2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT193R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT193R2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT233K1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT233R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT239K1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT283K1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT283R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT409K1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT409R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT571K1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT571R1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SM2P256V1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SkeinEngine/Configuration] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SkeinEngine/Parameter] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SkeinEngine/UBI] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRepMessage/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRepMessageBuilder/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateReqMessages/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator/<>c__DisplayClass2_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator/CmsAuthenticatedDataOutputStream] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAuthEnvelopedData/AuthEnvelopedSecureReadable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsCompressedData/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsCompressedData/<>c__DisplayClass6_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator/CmsCompressedOutputStream] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator/<>c__DisplayClass2_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator/<>c__DisplayClass4_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator/CmsEnvelopedDataOutputStream] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedHelper/CmsAuthenticatedSecureReadable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedHelper/CmsEnvelopedSecureReadable] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedData/PreserveAbsentParameters] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedDataGenerator/SignerInf] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/SignerInfoGeneratorImpl] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/CmsSignedDataOutputStream] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.DigestAlgorithmsBuilder/UniqueAlgID] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformation/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessage/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.BcpgInputStream/PartialInputStream] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData/TruncatedStream] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/EncMethod] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PbeMethod] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PubMethod] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator/<>c__DisplayClass34_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator/<>c__DisplayClass35_0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.SXprUtilities/MyS2k] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Attr.ImageAttrib/Format] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1EncodableVector/d__36] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Null/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1ObjectDescriptor/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1RelativeOid/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence/Asn1SequenceParserImpl] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set/Asn1SetParserImpl] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1UtcTime/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerOctetStringGenerator/BufferedBerOctetStream] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBmpString/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEnumerated/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerExternal/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGeneralString/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGraphicString/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerNumericString/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerPrintableString/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerT61String/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUniversalString/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUtf8String/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVideotexString/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVisibleString/Meta] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v3Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v3Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime256v1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v3Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb176w1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v3Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb208w1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v3Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb272w1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb304w1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb359v1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb368w1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb431r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECPoint/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPoint/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Target/Choice] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration/RevokedCertificatesEnumerator] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.PartialHashtree/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP160r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP160t1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP192r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP192t1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP224r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP224t1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP256r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP256t1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP320r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP320t1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP384r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP384t1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP512r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP512t1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp112r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp112r2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp128r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp128r2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160k1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160r2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp192k1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp192r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp224k1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp224r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp256k1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp256r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp384r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp521r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect113r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect113r2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect131r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect131r2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163k1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163r2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect193r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect193r2Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect233k1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect233r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect239k1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect283k1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect283r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect409k1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect409r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect571k1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect571r1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.RevokedInfo/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.GM.GMNamedCurves/SM2P256V1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.GM.GMNamedCurves/WapiP192V1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_A] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_B] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_C] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_256_paramSetA] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetA] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetB] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetC] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable/d__25] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.Challenge/Rand] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFreeText/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves/Frp256v1Holder] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] m5tn1KmT] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] Loom/iHkVIcpt] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] Loom/16u4fQjx] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] Loom/ebQxZhqF] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] Loom] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] pXJcQ90q/OQvGXH2e] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] pXJcQ90q] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer/TimerManager/<>c] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer/TimerManager] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.TimerExtensions] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.E6E02u_K/njyPR3dq] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.E6E02u_K] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.8SZrsi8s/6Q18rR3q] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.8SZrsi8s] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.upOI0mf9/qz2l1RNN] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.upOI0mf9] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HvtfMocC] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.DRzio_A9] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.cI7eLIlN] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CCGameObject] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CCTxData/xPUhs29b] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CCTxData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AupDl5z7] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.TiUoaJfx] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/fI6piYVV] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/VV6wDWpl] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/GUGsZ77k] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/O7UoSjG0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/Qm8aQ9BR] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/RlUnbSg2] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/vL_jNMIC] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/J5H75OrP] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/gNy04JGT] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/034fwuHi] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/dtDvXnWO] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/ad7V7I3p] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/37gMQk2Z] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/sSoj3FIT] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/KGU21Dg_] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/b7Bk9fif] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/4DFBKF7j] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/DSr_oTPd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/poBRGwZN] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/POgSuorQ] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/otRvbtNw] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/k7KxNmKK] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/fwPNh8_d] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CrashlyticsTester] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CRmjcMm3] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.OzYecLrw] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.URUY6MTz] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.zW7O_E7s] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.M2ECeiUz] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.MobileData/oGGBljpQ] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.MobileData/L5isF1Mw] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.MobileData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.RfaKAieg/HWyBjdki] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.RfaKAieg] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.4HWlxixF/6W0t37yC] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.4HWlxixF/hQXj_CLW] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.4HWlxixF/mjdxxCmc] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.4HWlxixF] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/5TFmcxUH] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wvCZSuDC] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.jmti0Apa] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.T8c598KK] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.lACBvq4L] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.seFRNdhu] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.fq9OEDKz] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.bgZvZjhr/QaHsxOCI] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.bgZvZjhr] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BPiI3e24/gk1F5Fs3] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BPiI3e24] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/dCijzOFB] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UAGCgsoz] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.YERrislM/LjKBOCC2] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.YERrislM] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.DZpyWCgz] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.N_x5UwgU] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Q413u951/9w5PFAbC] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Q413u951] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BAr6LyvR/pUC92FDo] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BAr6LyvR] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ABConfigData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.VariableData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ksUzu2g6] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.R_XLvsZ6] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.l1CcKDXz] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.WN_PNrjI] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.lQThqqVB] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BJKUwn1w] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/HlAc_tJc] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Jok2RmfI] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.WithDrawConfig] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.WithDrawOrder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.e_TmMJCH] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AdSourceData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AdTypeData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.LEmSzWte] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CW6CQ9FV] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZFYpRU1D] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.VUiiRBBT] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.4nXCdYAT] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Krvjevic] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7v5hlFcS/BOTbggEV] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7v5hlFcS] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/m9qJUCM9] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/JKPN6hMh] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/XowJdPCC] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/KgZyWip3] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/AG7jbNLd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.XFnGoY6x/5fncJy2p] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.XFnGoY6x] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JeQ601zk/Limsf2gb] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JeQ601zk] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv/V_tl2yTp] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.xiBxAcFj] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ADtRAw8M] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.OxsZC3BO] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.0bh2cKMy/O85tBYld] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.0bh2cKMy] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i25nl_jC] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.p4hn_DV5/PHyaB2uQ] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.p4hn_DV5] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.WzVrEiL2/Y0xnl6iw] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.WzVrEiL2] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.EkCGohlU/YICzfXaE] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.EkCGohlU] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mE0OMZL8] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/1rUQTUFh] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/v4JwNnPG] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/yofVfANG] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/prD9UPYN] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/O0GEEMjM] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/kuMmHRz1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/DBMjWWze] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/XBClyRiE] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kCYnW4bQ] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/ol8niX6J] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.sWeB3fop] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.D98yuKi1/pKJA94rm] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.D98yuKi1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.weZ__c_Q] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK._fD4903q] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.raX9X_5G] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Kolv1f70] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.SLKcg9wb] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6ytri0_8] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kO7MVji2] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/FlWv9Gto] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/wtrTgY6G] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/hfqxmwwi] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Co7a_d6_] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.yXtpQfvi] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3/gw9oVc6X] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3/K6HD9KRl] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3/GQZ2TGE5] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.9X_wOmur] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.rKZJP9iO/xz__giD6] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.rKZJP9iO] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tRSlO60l] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JaSUJQK0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HycQLCQa] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.EventSystemHelper] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/XiVanbLr] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/dr3z0c4M] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.rHG8uP6X] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/4ii4W047] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/sbaBXlQT] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JJpJd_AL] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.I5kVKta4] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KppWFT_B] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/Akl7fC46] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/5WtIh70C] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/RPQ7pYcH] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wRO3ToY7] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.hopUZXhB] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kzgkCyk9] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.zZwcIEHV] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.buN33ZG4] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab/WXmQTG8M] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HiqjHarS] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/hcOfyqGD] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/Cvn1XrhC] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.E6E02u_K] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.E6E02u_K/njyPR3dq] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.8SZrsi8s] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.8SZrsi8s/6Q18rR3q] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.upOI0mf9] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.upOI0mf9/qz2l1RNN] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HvtfMocC] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.DRzio_A9] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.cI7eLIlN] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CCGameObject] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CCTxData] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CCTxData/xPUhs29b] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AupDl5z7] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.TiUoaJfx] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/fI6piYVV] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/VV6wDWpl] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/GUGsZ77k] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/O7UoSjG0] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/Qm8aQ9BR] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/RlUnbSg2] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/vL_jNMIC] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/J5H75OrP] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/gNy04JGT] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/034fwuHi] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/dtDvXnWO] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/ad7V7I3p] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/37gMQk2Z] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/sSoj3FIT] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/KGU21Dg_] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/b7Bk9fif] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/4DFBKF7j] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/DSr_oTPd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/poBRGwZN] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/POgSuorQ] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/otRvbtNw] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/k7KxNmKK] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/fwPNh8_d] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CrashlyticsTester] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CRmjcMm3] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.OzYecLrw] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.URUY6MTz] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.zW7O_E7s] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.M2ECeiUz] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.MobileData] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.MobileData/oGGBljpQ] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.MobileData/L5isF1Mw] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.RfaKAieg] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.RfaKAieg/HWyBjdki] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.4HWlxixF] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.4HWlxixF/6W0t37yC] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.4HWlxixF/hQXj_CLW] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.4HWlxixF/mjdxxCmc] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wvCZSuDC] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/5TFmcxUH] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.jmti0Apa] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.T8c598KK] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.lACBvq4L] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.seFRNdhu] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.fq9OEDKz] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.bgZvZjhr] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.bgZvZjhr/QaHsxOCI] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BPiI3e24] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BPiI3e24/gk1F5Fs3] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/dCijzOFB] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UAGCgsoz] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.YERrislM] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.YERrislM/LjKBOCC2] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.DZpyWCgz] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.N_x5UwgU] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Q413u951] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Q413u951/9w5PFAbC] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BAr6LyvR] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BAr6LyvR/pUC92FDo] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ABConfigData] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.VariableData] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ksUzu2g6] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.R_XLvsZ6] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.l1CcKDXz] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.WN_PNrjI] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.lQThqqVB] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BJKUwn1w] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/HlAc_tJc] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Jok2RmfI] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.WithDrawConfig] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.WithDrawOrder] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.e_TmMJCH] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AdSourceData] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AdTypeData] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.LEmSzWte] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CW6CQ9FV] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZFYpRU1D] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.VUiiRBBT] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.4nXCdYAT] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Krvjevic] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7v5hlFcS] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7v5hlFcS/BOTbggEV] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/m9qJUCM9] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/JKPN6hMh] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/XowJdPCC] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/KgZyWip3] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/AG7jbNLd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.XFnGoY6x] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.XFnGoY6x/5fncJy2p] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JeQ601zk] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JeQ601zk/Limsf2gb] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv/V_tl2yTp] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.xiBxAcFj] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ADtRAw8M] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.OxsZC3BO] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.0bh2cKMy] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.0bh2cKMy/O85tBYld] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i25nl_jC] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.p4hn_DV5] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.p4hn_DV5/PHyaB2uQ] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.WzVrEiL2] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.WzVrEiL2/Y0xnl6iw] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.EkCGohlU] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.EkCGohlU/YICzfXaE] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mE0OMZL8] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/1rUQTUFh] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/v4JwNnPG] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/yofVfANG] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/prD9UPYN] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/O0GEEMjM] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/kuMmHRz1] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/DBMjWWze] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/XBClyRiE] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kCYnW4bQ] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/ol8niX6J] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.sWeB3fop] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.D98yuKi1] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.D98yuKi1/pKJA94rm] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.weZ__c_Q] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK._fD4903q] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.raX9X_5G] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Kolv1f70] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.SLKcg9wb] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6ytri0_8] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kO7MVji2] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/FlWv9Gto] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/wtrTgY6G] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/hfqxmwwi] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Co7a_d6_] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.yXtpQfvi] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3/gw9oVc6X] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3/K6HD9KRl] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3/GQZ2TGE5] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.9X_wOmur] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.rKZJP9iO] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.rKZJP9iO/xz__giD6] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tRSlO60l] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JaSUJQK0] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HycQLCQa] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.EventSystemHelper] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/XiVanbLr] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/dr3z0c4M] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.rHG8uP6X] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/4ii4W047] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/sbaBXlQT] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JJpJd_AL] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.I5kVKta4] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KppWFT_B] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/Akl7fC46] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/5WtIh70C] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/RPQ7pYcH] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wRO3ToY7] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.hopUZXhB] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kzgkCyk9] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.zZwcIEHV] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.buN33ZG4] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab/WXmQTG8M] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HiqjHarS] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/hcOfyqGD] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/Cvn1XrhC] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy] Because of the type skipping settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] Loom/iHkVIcpt] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] Loom/16u4fQjx] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] Loom/ebQxZhqF] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] pXJcQ90q/OQvGXH2e] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer/TimerManager/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer/TimerManager] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.E6E02u_K/njyPR3dq] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.8SZrsi8s/6Q18rR3q] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.upOI0mf9/qz2l1RNN] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CCTxData/xPUhs29b] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CCTxData] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/fI6piYVV] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/VV6wDWpl] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/GUGsZ77k] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/O7UoSjG0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/Qm8aQ9BR] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/RlUnbSg2] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/vL_jNMIC] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/J5H75OrP] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/gNy04JGT] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/034fwuHi] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/dtDvXnWO] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/ad7V7I3p] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/37gMQk2Z] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/sSoj3FIT] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/KGU21Dg_] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/b7Bk9fif] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/4DFBKF7j] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/DSr_oTPd] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/poBRGwZN] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/POgSuorQ] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/otRvbtNw] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/k7KxNmKK] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B/fwPNh8_d] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.MobileData/oGGBljpQ] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.MobileData/L5isF1Mw] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.MobileData] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.RfaKAieg/HWyBjdki] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.4HWlxixF/6W0t37yC] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.4HWlxixF/hQXj_CLW] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.4HWlxixF/mjdxxCmc] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/5TFmcxUH] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.bgZvZjhr/QaHsxOCI] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BPiI3e24/gk1F5Fs3] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/dCijzOFB] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UAGCgsoz] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.YERrislM/LjKBOCC2] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Q413u951/9w5PFAbC] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BAr6LyvR/pUC92FDo] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/HlAc_tJc] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode] Because of compatibility component: Obfuscator - Compatibility : Has DoNotRenameAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7v5hlFcS/BOTbggEV] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/m9qJUCM9] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/JKPN6hMh] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/XowJdPCC] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/KgZyWip3] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/AG7jbNLd] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.XFnGoY6x/5fncJy2p] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JeQ601zk/Limsf2gb] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv/V_tl2yTp] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.0bh2cKMy/O85tBYld] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.p4hn_DV5/PHyaB2uQ] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.WzVrEiL2/Y0xnl6iw] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.EkCGohlU/YICzfXaE] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/1rUQTUFh] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/v4JwNnPG] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/yofVfANG] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/prD9UPYN] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/O0GEEMjM] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/kuMmHRz1] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/DBMjWWze] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/XBClyRiE] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kCYnW4bQ] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/ol8niX6J] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.D98yuKi1/pKJA94rm] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/FlWv9Gto] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/wtrTgY6G] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/hfqxmwwi] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3/gw9oVc6X] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3/K6HD9KRl] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3/GQZ2TGE5] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.rKZJP9iO/xz__giD6] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/XiVanbLr] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/dr3z0c4M] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/4ii4W047] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/sbaBXlQT] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/Akl7fC46] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/5WtIh70C] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/RPQ7pYcH] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab/WXmQTG8M] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/hcOfyqGD] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/Cvn1XrhC] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] jyj0EesQ/rUBTREjH] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] jyj0EesQ] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.Analytics] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.iiYPpatD] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.Hnpdo984] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.IAPManager] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.P4S4xyJ1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.ProductDefine] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.PurchaseResult] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.5JLe07NR] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.RestoreResult] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.SubscriptionInfoLite] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.b4eGWFfo/ReceiptWrapper] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.b4eGWFfo/GooglePayloadWrapper] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.b4eGWFfo] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.bxoh8bRe/vWFTXjiG] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.bxoh8bRe/s4DKl0py] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.bxoh8bRe/puudMThz] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDK_IAP] SDK_IAP.bxoh8bRe] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[SDK_IAP] jyj0EesQ/rUBTREjH] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[SDK_IAP] SDK_IAP.b4eGWFfo/ReceiptWrapper] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[SDK_IAP] SDK_IAP.b4eGWFfo/GooglePayloadWrapper] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[SDK_IAP] SDK_IAP.bxoh8bRe/vWFTXjiG] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[SDK_IAP] SDK_IAP.bxoh8bRe/s4DKl0py] Is a nested class and has no namespace. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[SDK_IAP] SDK_IAP.bxoh8bRe/puudMThz] Is a nested class and has no namespace. [Info][OPS.OBF][OnAnalyse_Assemblies] Process component Class - Obfuscation [Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Find MemberReferences... @@ -4540,9 +9209,7 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] GiftType] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] VipDay] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] OpenBrowser] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PayType] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass9_0] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SaveingPotClass] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SaveingPotTaskStatus] Analyse Type References in Custom Attribute References... @@ -4676,8 +9343,12 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] Body] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] WebSocketData] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] WebSocketTools] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ZrZYFo6bYXYM71YyLSDKDemo/<>c] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ZrZYFo6bYXYM71YyLSDKDemo] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SDK_IAP.IAPDemoUsage/<>c] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SDK_IAP.IAPDemoUsage] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] UNSDK.Uni2SdkDemo] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] UNSDK.SdkConfigMgr/<>c] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] UNSDK.SdkConfigMgr] Analyse Type References in Custom Attribute References... @@ -5072,7 +9743,6 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGModule.Common.Extensions.ObjectExtensionsTest] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGModule.Common.Extensions.StringExtensions] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGModule.Common.Base.SingletonMonoBehaviour`1] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] DontConfuse.AppsFlyerObjectScript1] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FutureCore.Base64EncodeUtil] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MiniJSON.Json/Parser/TOKEN] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MiniJSON.Json/Parser] Analyse Type References in Custom Attribute References... @@ -5834,6 +10504,11 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.StringExtend] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.GameObjectExtend] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.FireBaseManger] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c__DisplayClass23_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c__DisplayClass24_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c__DisplayClass26_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.IAPPayManager] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.LoveLegendCore] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MainScene/<>c] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MainScene/<>c__DisplayClass6_0] Analyse Type References in Custom Attribute References... @@ -5888,12 +10563,11 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddviewnewModel] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c__DisplayClass10_0] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c__DisplayClass10_1] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddviewnewUICtrl] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddViewoffCtrl] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddViewoffModel] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI/<>c__DisplayClass10_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI/<>c] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AddViewoffUICtrl] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.AlbumDetailCtrl] Analyse Type References in Custom Attribute References... @@ -6311,9 +10985,10 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.PlayerPrefsKit] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.Rescrypt] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass25_0] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass26_0] Analyse Type References in Custom Attribute References... -[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/d__21] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass27_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass28_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass8_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit/d__23] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BallKingdomCrush.MaxADKit] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] DataEyeAnalytics.IDynamicSuperProperties] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsEvent/Type] Analyse Type References in Custom Attribute References... @@ -6352,6 +11027,15 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] BallKingdomCrush.EasyTimer] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] BallKingdomCrush.NormalTimer] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] BallKingdomCrush.Timer] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] ZrZYFo6bYXYM71YyLSDK.SDKConfig] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] ZrZYFo6bYXYM71YyLSDK.AssetUtils] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find Member to skip... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Analyse Type References in Module... @@ -6588,6 +11272,80 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[spine-unity] Spine.Unity.SkeletonRendererCustomMaterials] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[spine-unity] Spine.Unity.SkeletonRenderSeparator] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[spine-unity] Spine.Unity.AttachmentTools.AtlasUtilities] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] AdHelper/Task] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] AdHelper/DestryAdTask] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] AdHelper] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AdInteractionCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AdLoadCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidBannerAd/<>c__DisplayClass34_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidBannerAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidClientFactory] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidInterstitialAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidNativeAd/<>c__DisplayClass33_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidNativeAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidPlatformTool/<>c__DisplayClass6_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidPlatformTool] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidPopupAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidRewardedAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidSplashAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.BigoSdkClient/InitCallBack] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.BigoSdkClient] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.RewardedAdInteractionCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.Android.SplashAdInteractionCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass35_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass39_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoDispatcher] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IBannerAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IBigoAd`1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IClientBidding] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IClientFactory] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IInterstitialAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.INativeAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IPopupAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IRewardedAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.ISDK] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.ISplashAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/<>c] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoBannerAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoBannerRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoNativeAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoNativeRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoPopupAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoPopupRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoRewardedAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoRewardedRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoSplashAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoSplashRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdGender] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[BigoAds] BigoAds.Scripts.Common.BigoDispatcher] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[BigoAds] BigoAds.Scripts.Api.BigoBannerRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[BigoAds] BigoAds.Scripts.Api.BigoNativeRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[BigoAds] BigoAds.Scripts.Api.BigoPopupRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[BigoAds] BigoAds.Scripts.Api.BigoRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[BigoAds] BigoAds.Scripts.Api.BigoRewardedRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[BigoAds] BigoAds.Scripts.Api.BigoSplashRequest] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated. [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Analyse Type References in Module... @@ -6742,6 +11500,7 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFAdRevenueData] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFPurchaseType] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFPurchaseDetailsAndroid] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseType] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseDetailsIOS] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogStatus] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogResult] Analyse Type References in Custom Attribute References... @@ -6771,6 +11530,57 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateAndLog] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateReceipt] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] IKwaiAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAdsMgr/InitResultCallbackImpl] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAdsMgr] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiLog] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiInterAd/InterstitialAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiInterAd/InterstitialAdLoadListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiInterAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiVideoAd/RewardAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiVideoAd/RewardAdLoadListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiVideoAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] BigoAds.Scripts.Platforms.Android.AndroidPlatformTool] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.AndroidClientFactory] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiAdSDKInit/KwaiNetworkSingleton] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiAdSDKInit/KwaiUnityCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiAdSDKInit] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiInterstitialAdController/AdLoadListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiInterstitialAdController/InterstitialAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiInterstitialAdController] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiRewardAdController/AdLoadListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiRewardAdController/RewardAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiRewardAdController] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Platforms.Android.KwaiSdkClient] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IRwardAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IClientBidding] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IClientFactory] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IKwaiAdController`3] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.ISDK] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Constants/Request] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Constants/Currency] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Constants] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.InitResultCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig/Builder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdsSdk] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdController] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdLoadListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.KwaiRewardAdRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdController] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdLoadListener] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.KwaiInterstitialAdRequest] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find Member to skip... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Type References in Module... @@ -6866,6 +11676,19 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils/Physics] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.ISDKInitCallback] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoAdSDK] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoInterAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoInterAdListenerProxy] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoRewardAd] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoRewardAdListenerProxy] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Member to skip... [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Analyse Type References in Module... @@ -6975,6 +11798,2944 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [[endel.nativewebsocket] NativeWebSocket.WebSocketFactory] Analyse Type References in Custom Attribute References... [Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find Member to skip... [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[endel.nativewebsocket] MainThreadUtil] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] WebViewObject/<>c__DisplayClass29_0] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] WebViewObject/d__30] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] WebViewObject] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Analyse Type References in Module... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] ThisAssembly] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.AttributeCertificateHolder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.AttributeCertificateIssuer] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.DeltaCertificateTool] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.IX509Extension] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.PemParser] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.PrincipalUtilities] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.SubjectPublicKeyInfoFactory] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509AttrCertParser] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Attribute] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate/CachedEncoding] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertificatePair] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertificateParser/d__11] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertificateParser] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertPairParser] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Crl/CachedEncoding] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Crl] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CrlEntry] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CrlParser/d__13] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CrlParser] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509ExtensionBase] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509KeyUsage] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509SignatureUtilities] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Utilities] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V1CertificateGenerator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificate/<>c] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificate] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2CrlGenerator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V3CertificateGenerator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509AttrCertStoreSelector] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509CertPairStoreSelector] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509CertStoreSelector] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509CrlStoreSelector] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.ICheckingCertificate] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Extension.AuthorityKeyIdentifierStructure] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Extension.SubjectKeyIdentifierStructure] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Extension.X509ExtensionUtilities] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Arrays] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.BigIntegers] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Bytes] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Enums] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IEncodable] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Integers] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Longs] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.MemoableResetException] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Objects] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Platform] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Shorts] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Strings] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Adler32] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Deflate/Config] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Deflate] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.InfBlocks] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.InfCodes] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Inflate] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.InfTree] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.JZlib] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.StaticTree] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Tree] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZInputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZInputStreamLeaveOpen] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZOutputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZOutputStreamLeaveOpen] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Net.IPAddress] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BaseInputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BaseOutputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BinaryReaders] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BinaryWriters] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BufferedFilterStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.FilterStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.LimitedBuffer] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.LimitedInputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.PushbackStream/d__2] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.PushbackStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.StreamOverflowException] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Streams/d__8] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Streams/d__20] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Streams] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.TeeInputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.TeeOutputStream] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemGenerationException] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemHeader] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObject] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObjectGenerator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObjectParser] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemReader] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemWriter] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Compression.Bzip2] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Compression.Zip] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Compression.ZLib] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.Base64] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.Base64Encoder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.BufferedDecoder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.BufferedEncoder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.Hex] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.HexEncoder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.HexTranslator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.IEncoder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.ITranslator] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.UrlBase64] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.UrlBase64Encoder] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Date.DateTimeUtilities] Analyse Type References in Custom Attribute References... +[Info][OPS.OBF][OnAnalyse_Assemblies] [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.CollectionUtilities/d__15`2::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.CollectionUtilities/d__15`2::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.CollectionUtilities::CollectMatches(System.Collections.Generic.ICollection`1,Org.BouncyCastle.Utilities.Collections.ISelector`1,System.Collections.Generic.IEnumerable`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Utilities.Collections.CollectionUtilities::CreateStore(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] T Org.BouncyCastle.Utilities.Collections.CollectionUtilities::GetFirstOrNull(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] T Org.BouncyCastle.Utilities.Collections.CollectionUtilities::GetValueOrKey(System.Collections.Generic.IDictionary`2,T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] V Org.BouncyCastle.Utilities.Collections.CollectionUtilities::GetValueOrNull(System.Collections.Generic.IDictionary`2,K)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.CollectionUtilities::IsNullOrEmpty(System.Collections.Generic.ICollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] TResult[] Org.BouncyCastle.Utilities.Collections.CollectionUtilities::Map(T[],System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] TResult[] Org.BouncyCastle.Utilities.Collections.CollectionUtilities::Map(System.Collections.Generic.IReadOnlyCollection`1,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Utilities.Collections.CollectionUtilities::Proxy(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Utilities.Collections.CollectionUtilities::ReadOnly(System.Collections.Generic.ICollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Utilities.Collections.CollectionUtilities::ReadOnly(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Utilities.Collections.CollectionUtilities::ReadOnly(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Utilities.Collections.CollectionUtilities::ReadOnly(System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.CollectionUtilities::Remove(System.Collections.Generic.IDictionary`2,K,V&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] T Org.BouncyCastle.Utilities.Collections.CollectionUtilities::RequireNext(System.Collections.Generic.IEnumerator`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Utilities.Collections.CollectionUtilities::Select(System.Collections.Generic.IEnumerable`1,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] T[] Org.BouncyCastle.Utilities.Collections.CollectionUtilities::ToArray(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Utilities.Collections.CollectionUtilities::ToString(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.CollectionUtilities::TryAdd(System.Collections.Generic.IDictionary`2,K,V)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.CollectionUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.EnumerableProxy`1::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.EnumerableProxy`1::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.EnumerableProxy`1::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.EnumerableProxy`1::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ISelector`1::Match(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Utilities.Collections.IStore`1::EnumerateMatches(Org.BouncyCastle.Utilities.Collections.ISelector`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::get_IsReadOnly()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::Add(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::Clear()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::Remove(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::Contains(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::CopyTo(T[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyCollectionProxy`1::.ctor(System.Collections.Generic.ICollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyCollectionProxy`1::.ctor(System.Collections.Generic.ICollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyCollectionProxy`1::Contains(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyCollectionProxy`1::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyCollectionProxy`1::CopyTo(T[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyCollectionProxy`1::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyCollectionProxy`1::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] V Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::get_Item(K)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::set_Item(K,V)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::get_IsReadOnly()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Add(K,V)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Add(System.Collections.Generic.KeyValuePair`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Clear()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Remove(K)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Remove(System.Collections.Generic.KeyValuePair`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Contains(System.Collections.Generic.KeyValuePair`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::ContainsKey(K)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::CopyTo(System.Collections.Generic.KeyValuePair`2[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1> Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1> Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::get_Keys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::TryGetValue(K,V&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::get_Values()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::.ctor(System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::.ctor(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::Contains(System.Collections.Generic.KeyValuePair`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::ContainsKey(K)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::CopyTo(System.Collections.Generic.KeyValuePair`2[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1> Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1> Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::get_Keys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::TryGetValue(K,V&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::get_Values()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] T Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::get_Item(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::set_Item(System.Int32,T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::get_IsReadOnly()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::Add(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::Clear()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::Insert(System.Int32,T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::Remove(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::RemoveAt(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::Contains(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::CopyTo(T[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::IndexOf(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyListProxy`1::.ctor(System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyListProxy`1::.ctor(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyListProxy`1::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyListProxy`1::Contains(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlyListProxy`1::CopyTo(T[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyListProxy`1::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyListProxy`1::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyListProxy`1::IndexOf(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::get_IsReadOnly()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::Add(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::Clear()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::ExceptWith(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::IntersectWith(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::Remove(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::SetEquals(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::SymmetricExceptWith(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::UnionWith(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::Contains(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::CopyTo(T[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::IsProperSubsetOf(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::IsProperSupersetOf(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::IsSubsetOf(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::IsSupersetOf(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::Overlaps(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::.ctor(System.Collections.Generic.ISet`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::.ctor(System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::Contains(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::CopyTo(T[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::IsProperSubsetOf(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::IsProperSupersetOf(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::IsSubsetOf(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::IsSupersetOf(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::Overlaps(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.StoreImpl`1/-EnumerateMatches>d__2::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.StoreImpl`1/-EnumerateMatches>d__2::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.StoreImpl`1/-EnumerateMatches>d__2::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.StoreImpl`1::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.StoreImpl`1::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.BZip2Constants::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.BZip2Constants::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[][] Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::CreateIntArray(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStreamLeaveOpen::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStreamLeaveOpen::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream/StackElem::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream/StackElem::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::.ctor(System.IO.Stream,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::.ctor(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::Finish()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::Flush()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::CreateByteArray(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStreamLeaveOpen::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStreamLeaveOpen::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStreamLeaveOpen::.ctor(System.IO.Stream,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStreamLeaveOpen::.ctor(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CRC::Initialise()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.CRC::GetFinal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CRC::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CRC::UpdateRun(System.Byte,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CRC::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CRC::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CRC::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.GenTimeAccuracy::.ctor(Org.BouncyCastle.Asn1.Tsp.Accuracy)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.GenTimeAccuracy::.ctor(Org.BouncyCastle.Asn1.Tsp.Accuracy)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tsp.GenTimeAccuracy::get_Seconds()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tsp.GenTimeAccuracy::get_Millis()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tsp.GenTimeAccuracy::get_Micros()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.GenTimeAccuracy::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequest::.ctor(Org.BouncyCastle.Asn1.Tsp.TimeStampReq)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequest::.ctor(Org.BouncyCastle.Asn1.Tsp.TimeStampReq)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequest::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequest::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequest::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequest::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TimeStampReq Org.BouncyCastle.Tsp.TimeStampRequest::get_TimeStampReq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tsp.TimeStampRequest::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.MessageImprint Org.BouncyCastle.Tsp.TimeStampRequest::get_MessageImprint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Tsp.TimeStampRequest::get_MessageImprintAlgID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TimeStampRequest::get_MessageImprintAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Tsp.TimeStampRequest::get_MessageImprintDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tsp.TimeStampRequest::GetMessageImprintDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TimeStampRequest::get_ReqPolicy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tsp.TimeStampRequest::get_Nonce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tsp.TimeStampRequest::get_CertReq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequest::Validate(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tsp.TimeStampRequest::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Tsp.TimeStampRequest::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tsp.TimeStampRequest::get_HasExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tsp.TimeStampRequest::GetExtensionOids()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequestGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequestGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequestGenerator::.ctor(Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequestGenerator::.ctor(Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequestGenerator::SetReqPolicy(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequestGenerator::SetReqPolicy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequestGenerator::SetCertReq(Org.BouncyCastle.Asn1.DerBoolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequestGenerator::SetCertReq(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequestGenerator::AddExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampRequestGenerator::AddExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampRequest Org.BouncyCastle.Tsp.TimeStampRequestGenerator::Generate(System.String,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampRequest Org.BouncyCastle.Tsp.TimeStampRequestGenerator::Generate(System.String,System.Byte[],Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampRequest Org.BouncyCastle.Tsp.TimeStampRequestGenerator::Generate(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampRequest Org.BouncyCastle.Tsp.TimeStampRequestGenerator::Generate(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Byte[],Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampRequest Org.BouncyCastle.Tsp.TimeStampRequestGenerator::Generate(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampRequest Org.BouncyCastle.Tsp.TimeStampRequestGenerator::Generate(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponse::.ctor(Org.BouncyCastle.Asn1.Tsp.TimeStampResp)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponse::.ctor(Org.BouncyCastle.Asn1.Tsp.TimeStampResp)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponse::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponse::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponse::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponse::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tsp.TimeStampResponse::get_Status()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TimeStampResponse::GetStatusString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo Org.BouncyCastle.Tsp.TimeStampResponse::GetFailInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampToken Org.BouncyCastle.Tsp.TimeStampResponse::get_TimeStampToken()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponse::Validate(Org.BouncyCastle.Tsp.TimeStampRequest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tsp.TimeStampResponse::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tsp.TimeStampResponse::GetEncoded(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponseGenerator/FailInfo::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponseGenerator/FailInfo::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponseGenerator::.ctor(Org.BouncyCastle.Tsp.TimeStampTokenGenerator,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponseGenerator::.ctor(Org.BouncyCastle.Tsp.TimeStampTokenGenerator,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponseGenerator::.ctor(Org.BouncyCastle.Tsp.TimeStampTokenGenerator,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponseGenerator::.ctor(Org.BouncyCastle.Tsp.TimeStampTokenGenerator,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponseGenerator::.ctor(Org.BouncyCastle.Tsp.TimeStampTokenGenerator,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponseGenerator::.ctor(Org.BouncyCastle.Tsp.TimeStampTokenGenerator,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampResponse Org.BouncyCastle.Tsp.TimeStampResponseGenerator::Generate(Org.BouncyCastle.Tsp.TimeStampRequest,Org.BouncyCastle.Math.BigInteger,System.Nullable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampResponse Org.BouncyCastle.Tsp.TimeStampResponseGenerator::GenerateGrantedResponse(Org.BouncyCastle.Tsp.TimeStampRequest,Org.BouncyCastle.Math.BigInteger,System.Nullable`1,System.String,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampResponse Org.BouncyCastle.Tsp.TimeStampResponseGenerator::GenerateFailResponse(Org.BouncyCastle.Asn1.Cmp.PkiStatus,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampToken::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampToken::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampToken::.ctor(Org.BouncyCastle.Cms.CmsSignedData)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampToken::.ctor(Org.BouncyCastle.Cms.CmsSignedData)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampTokenInfo Org.BouncyCastle.Tsp.TimeStampToken::get_TimeStampInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerID Org.BouncyCastle.Tsp.TimeStampToken::get_SignerID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Tsp.TimeStampToken::get_SignedAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Tsp.TimeStampToken::get_UnsignedAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Tsp.TimeStampToken::GetAttributeCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Tsp.TimeStampToken::GetCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Tsp.TimeStampToken::GetCrls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampToken::Validate(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedData Org.BouncyCastle.Tsp.TimeStampToken::ToCmsSignedData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tsp.TimeStampToken::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tsp.TimeStampToken::GetEncoded(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator/TableGen::.ctor(Org.BouncyCastle.Cms.SignerInfoGenerator,Org.BouncyCastle.Asn1.Ess.EssCertID)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator/TableGen::.ctor(Org.BouncyCastle.Cms.SignerInfoGenerator,Org.BouncyCastle.Asn1.Ess.EssCertID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Tsp.TimeStampTokenGenerator/TableGen::GetAttributes(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator/TableGen2::.ctor(Org.BouncyCastle.Cms.SignerInfoGenerator,Org.BouncyCastle.Asn1.Ess.EssCertIDv2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator/TableGen2::.ctor(Org.BouncyCastle.Cms.SignerInfoGenerator,Org.BouncyCastle.Asn1.Ess.EssCertIDv2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Tsp.TimeStampTokenGenerator/TableGen2::GetAttributes(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.Resolution Org.BouncyCastle.Tsp.TimeStampTokenGenerator::get_Resolution()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::set_Resolution(Org.BouncyCastle.Tsp.Resolution)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::.ctor(Org.BouncyCastle.Cms.SignerInfoGenerator,Org.BouncyCastle.Crypto.IDigestFactory,Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::.ctor(Org.BouncyCastle.Cms.SignerInfoGenerator,Org.BouncyCastle.Crypto.IDigestFactory,Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,System.String,Org.BouncyCastle.Asn1.Cms.AttributeTable,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,System.String,Org.BouncyCastle.Asn1.Cms.AttributeTable,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInfoGenerator Org.BouncyCastle.Tsp.TimeStampTokenGenerator::MakeInfoGenerator(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Cms.AttributeTable,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::SetAttributeCertificates(Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::SetCertificates(Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::SetCrls(Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::AddOtherRevocationInfos(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::SetAccuracySeconds(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::SetAccuracyMillis(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::SetAccuracyMicros(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::SetOrdering(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenGenerator::SetTsa(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampToken Org.BouncyCastle.Tsp.TimeStampTokenGenerator::Generate(Org.BouncyCastle.Tsp.TimeStampRequest,Org.BouncyCastle.Math.BigInteger,System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampToken Org.BouncyCastle.Tsp.TimeStampTokenGenerator::Generate(Org.BouncyCastle.Tsp.TimeStampRequest,Org.BouncyCastle.Math.BigInteger,System.DateTime,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenInfo::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenInfo::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenInfo::.ctor(Org.BouncyCastle.Asn1.Tsp.TstInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampTokenInfo::.ctor(Org.BouncyCastle.Asn1.Tsp.TstInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tsp.TimeStampTokenInfo::get_IsOrdered()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.Accuracy Org.BouncyCastle.Tsp.TimeStampTokenInfo::get_Accuracy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Tsp.TimeStampTokenInfo::get_GenTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.GenTimeAccuracy Org.BouncyCastle.Tsp.TimeStampTokenInfo::get_GenTimeAccuracy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TimeStampTokenInfo::get_Policy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tsp.TimeStampTokenInfo::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Tsp.TimeStampTokenInfo::get_Tsa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tsp.TimeStampTokenInfo::get_Nonce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Tsp.TimeStampTokenInfo::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TimeStampTokenInfo::get_MessageImprintAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Tsp.TimeStampTokenInfo::get_MessageImprintDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tsp.TimeStampTokenInfo::GetMessageImprintDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tsp.TimeStampTokenInfo::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TstInfo Org.BouncyCastle.Tsp.TimeStampTokenInfo::get_TstInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspAlgorithms::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspUtil::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tsp.TspUtil::GetSignatureTimestamps(Org.BouncyCastle.Cms.SignerInformation)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspUtil::ValidateCertificate(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tsp.TspUtil::GetDigestLength(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tsp.TspUtil::GetExtensionOids(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspUtil::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspUtil::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspValidationException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspValidationException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspValidationException::.ctor(System.String,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspValidationException::.ctor(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspValidationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TspValidationException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tsp.TspValidationException::get_FailureCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsClient::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPskIdentity Org.BouncyCastle.Tls.AbstractTlsClient::GetPskIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpIdentity Org.BouncyCastle.Tls.AbstractTlsClient::GetSrpIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsDHGroupVerifier Org.BouncyCastle.Tls.AbstractTlsClient::GetDHGroupVerifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpConfigVerifier Org.BouncyCastle.Tls.AbstractTlsClient::GetSrpConfigVerifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsClient::Init(Org.BouncyCastle.Tls.TlsClientContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.AbstractTlsClient::GetProtocolVersions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.AbstractTlsClient::GetCipherSuites()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsClient::NotifyHandshakeBeginning()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSession Org.BouncyCastle.Tls.AbstractTlsClient::GetSessionToResume()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsClient::GetExternalPsks()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsClient::IsFallback()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.AbstractTlsClient::GetClientExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsClient::GetEarlyKeyShareGroups()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsClient::ShouldUseCompatibilityMode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsClient::NotifyServerVersion(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsClient::NotifySessionToResume(Org.BouncyCastle.Tls.TlsSession)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsClient::NotifySessionID(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsClient::NotifySelectedCipherSuite(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsClient::NotifySelectedPsk(Org.BouncyCastle.Tls.TlsPsk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsClient::ProcessServerExtensions(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsClient::ProcessServerSupplementalData(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsAuthentication Org.BouncyCastle.Tls.AbstractTlsClient::GetAuthentication()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsClient::GetClientSupplementalData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsClient::NotifyNewSessionTicket(Org.BouncyCastle.Tls.NewSessionTicket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsContext::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsContext::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsContext::HandshakeBeginning(Org.BouncyCastle.Tls.TlsPeer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsContext::HandshakeComplete(Org.BouncyCastle.Tls.TlsPeer,Org.BouncyCastle.Tls.TlsSession)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsContext::get_IsConnected()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsContext::get_IsHandshaking()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCrypto Org.BouncyCastle.Tls.AbstractTlsContext::get_Crypto()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsNonceGenerator Org.BouncyCastle.Tls.AbstractTlsContext::get_NonceGenerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SecurityParameters Org.BouncyCastle.Tls.AbstractTlsContext::get_SecurityParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsContext::get_IsServer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.AbstractTlsContext::get_ClientSupportedVersions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsContext::SetClientSupportedVersions(Org.BouncyCastle.Tls.ProtocolVersion[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.AbstractTlsContext::get_ClientVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsContext::SetClientVersion(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.AbstractTlsContext::get_RsaPreMasterSecretVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsContext::SetRsaPreMasterSecretVersion(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.AbstractTlsContext::get_ServerVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSession Org.BouncyCastle.Tls.AbstractTlsContext::get_ResumableSession()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSession Org.BouncyCastle.Tls.AbstractTlsContext::get_Session()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Tls.AbstractTlsContext::get_UserObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsContext::set_UserObject(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.AbstractTlsContext::ExportChannelBinding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.AbstractTlsContext::ExportEarlyKeyingMaterial(System.String,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.AbstractTlsContext::ExportKeyingMaterial(System.String,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsContext::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsKeyExchange::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsKeyExchange::Init(Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsKeyExchange::SkipServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsKeyExchange::ProcessServerCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsKeyExchange::ProcessServerCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsKeyExchange::get_RequiresServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.AbstractTlsKeyExchange::GenerateServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsKeyExchange::SkipServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsKeyExchange::ProcessServerKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.AbstractTlsKeyExchange::GetClientCertificateTypes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsKeyExchange::SkipClientCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsKeyExchange::ProcessClientCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsKeyExchange::ProcessClientCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsKeyExchange::GenerateClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsKeyExchange::ProcessClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsKeyExchange::get_RequiresCertificateVerify()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.AbstractTlsKeyExchange::GeneratePreMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreateDHKeyExchange(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreateDHanonKeyExchangeClient(System.Int32,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreateDHanonKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreateDheKeyExchangeClient(System.Int32,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreateDheKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreateECDHKeyExchange(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreateECDHanonKeyExchangeClient(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreateECDHanonKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreateECDheKeyExchangeClient(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreateECDheKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreatePskKeyExchangeClient(System.Int32,Org.BouncyCastle.Tls.TlsPskIdentity,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreatePskKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.TlsPskIdentityManager,Org.BouncyCastle.Tls.Crypto.TlsDHConfig,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreateRsaKeyExchange(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreateSrpKeyExchangeClient(System.Int32,Org.BouncyCastle.Tls.TlsSrpIdentity,Org.BouncyCastle.Tls.TlsSrpConfigVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::CreateSrpKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.TlsSrpLoginParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsPeer::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsPeer::Cancel()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCrypto Org.BouncyCastle.Tls.AbstractTlsPeer::get_Crypto()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsPeer::NotifyCloseHandle(Org.BouncyCastle.Tls.TlsCloseable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.AbstractTlsPeer::GetProtocolVersions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.AbstractTlsPeer::GetCipherSuites()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsPeer::NotifyHandshakeBeginning()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.AbstractTlsPeer::GetHandshakeTimeoutMillis()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.AbstractTlsPeer::GetHandshakeResendTimeMillis()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsPeer::AllowLegacyResumption()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.AbstractTlsPeer::GetMaxCertificateChainLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.AbstractTlsPeer::GetMaxHandshakeMessageSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.AbstractTlsPeer::GetPskKeyExchangeModes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsPeer::RequiresCloseNotify()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsPeer::RequiresExtendedMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsPeer::ShouldCheckSigAlgOfPeerCerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsPeer::ShouldUseExtendedMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsPeer::ShouldUseExtendedPadding()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsPeer::ShouldUseGmtUnixTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsPeer::NotifySecureRenegotiation(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchangeFactory Org.BouncyCastle.Tls.AbstractTlsPeer::GetKeyExchangeFactory()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsPeer::NotifyAlertRaised(System.Int16,System.Int16,System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsPeer::NotifyAlertReceived(System.Int16,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsPeer::NotifyConnectionClosed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsPeer::NotifyHandshakeComplete()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsHeartbeat Org.BouncyCastle.Tls.AbstractTlsPeer::GetHeartbeat()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AbstractTlsPeer::GetHeartbeatPolicy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsPeer::get_IgnoreCorruptDtlsRecords()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsServer::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsServer::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsServer::Init(Org.BouncyCastle.Tls.TlsServerContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.AbstractTlsServer::GetProtocolVersions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.AbstractTlsServer::GetCipherSuites()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsServer::NotifyHandshakeBeginning()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSession Org.BouncyCastle.Tls.AbstractTlsServer::GetSessionToResume(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.AbstractTlsServer::GetNewSessionID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPskExternal Org.BouncyCastle.Tls.AbstractTlsServer::GetExternalPsk(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsServer::NotifySession(Org.BouncyCastle.Tls.TlsSession)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsServer::NotifyClientVersion(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsServer::NotifyFallback(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsServer::NotifyOfferedCipherSuites(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsServer::ProcessClientExtensions(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.AbstractTlsServer::GetServerVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.AbstractTlsServer::GetSupportedGroups()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.AbstractTlsServer::GetSelectedCipherSuite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.AbstractTlsServer::GetServerExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsServer::GetServerExtensionsForConnection(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsServer::GetServerSupplementalData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentials Org.BouncyCastle.Tls.AbstractTlsServer::GetCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatus Org.BouncyCastle.Tls.AbstractTlsServer::GetCertificateStatus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateRequest Org.BouncyCastle.Tls.AbstractTlsServer::GetCertificateRequest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPskIdentityManager Org.BouncyCastle.Tls.AbstractTlsServer::GetPskIdentityManager()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpLoginParameters Org.BouncyCastle.Tls.AbstractTlsServer::GetSrpLoginParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDHConfig Org.BouncyCastle.Tls.AbstractTlsServer::GetDHConfig()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsECConfig Org.BouncyCastle.Tls.AbstractTlsServer::GetECDHConfig()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsServer::ProcessClientSupplementalData(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsServer::NotifyClientCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.NewSessionTicket Org.BouncyCastle.Tls.AbstractTlsServer::GetNewSessionTicket()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.AlertDescription::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.AlertDescription::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AlertDescription::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.AlertLevel::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.AlertLevel::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AlertLevel::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsPskExternal::.ctor(System.Byte[],Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsPskExternal::.ctor(System.Byte[],Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsPskExternal::.ctor(System.Byte[],Org.BouncyCastle.Tls.Crypto.TlsSecret,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsPskExternal::.ctor(System.Byte[],Org.BouncyCastle.Tls.Crypto.TlsSecret,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.BasicTlsPskExternal::get_Identity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.BasicTlsPskExternal::get_Key()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.BasicTlsPskExternal::get_PrfAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsPskIdentity::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsPskIdentity::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsPskIdentity::.ctor(System.String,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsPskIdentity::.ctor(System.String,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsPskIdentity::SkipIdentityHint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsPskIdentity::NotifyIdentityHint(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.BasicTlsPskIdentity::GetPskIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.BasicTlsPskIdentity::GetPsk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsSrpIdentity::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsSrpIdentity::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsSrpIdentity::.ctor(System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.BasicTlsSrpIdentity::.ctor(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.BasicTlsSrpIdentity::GetSrpIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.BasicTlsSrpIdentity::GetSrpPassword()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueue::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueue::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueue::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueue::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueue::.ctor(System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueue::.ctor(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueue::AddData(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ByteQueue::get_Available()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueue::CopyTo(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueue::Read(System.Byte[],System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HandshakeMessageInput Org.BouncyCastle.Tls.ByteQueue::ReadHandshakeMessage(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ByteQueue::ReadInt32()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ByteQueue::ReadUint8(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ByteQueue::ReadUint16(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueue::RemoveData(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueue::RemoveData(System.Byte[],System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.ByteQueue::RemoveData(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueue::Shrink()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueueInputStream::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueueInputStream::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueueInputStream::AddBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueueInputStream::AddBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ByteQueueInputStream::Peek(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ByteQueueInputStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ByteQueueInputStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.ByteQueueInputStream::Skip(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ByteQueueInputStream::get_Available()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueueOutputStream::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueueOutputStream::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ByteQueue Org.BouncyCastle.Tls.ByteQueueOutputStream::get_Buffer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueueOutputStream::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ByteQueueOutputStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.CachedInformationType::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.CachedInformationType::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CachedInformationType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.CertChainType::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.CertChainType::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.CertChainType::IsValid(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertChainType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.Certificate/ParseOptions::get_CertificateType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Certificate/ParseOptions::set_CertificateType(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Certificate/ParseOptions::get_MaxChainLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Certificate/ParseOptions::set_MaxChainLength(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Certificate/ParseOptions::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Certificate/ParseOptions::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Certificate::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCertificate[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Certificate::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCertificate[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Certificate::.ctor(System.Byte[],Org.BouncyCastle.Tls.CertificateEntry[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Certificate::.ctor(System.Byte[],Org.BouncyCastle.Tls.CertificateEntry[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Certificate::.ctor(System.Int16,System.Byte[],Org.BouncyCastle.Tls.CertificateEntry[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Certificate::.ctor(System.Int16,System.Byte[],Org.BouncyCastle.Tls.CertificateEntry[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Certificate::GetCertificateRequestContext()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCertificate[] Org.BouncyCastle.Tls.Certificate::GetCertificateList()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCertificate Org.BouncyCastle.Tls.Certificate::GetCertificateAt(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateEntry Org.BouncyCastle.Tls.Certificate::GetCertificateEntryAt(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateEntry[] Org.BouncyCastle.Tls.Certificate::GetCertificateEntryList()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.Certificate::get_CertificateType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Certificate::get_Length()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Certificate::get_IsEmpty()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Certificate::Encode(Org.BouncyCastle.Tls.TlsContext,System.IO.Stream,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.Certificate::Parse(Org.BouncyCastle.Tls.Certificate/ParseOptions,Org.BouncyCastle.Tls.TlsContext,System.IO.Stream,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Certificate::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.CertificateCompressionAlgorithm::GetName(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.CertificateCompressionAlgorithm::GetText(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.CertificateCompressionAlgorithm::IsRecognized(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateCompressionAlgorithm::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateEntry::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCertificate,System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateEntry::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCertificate,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCertificate Org.BouncyCastle.Tls.CertificateEntry::get_Certificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.CertificateEntry::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateRequest::.ctor(System.Int16[],System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateRequest::.ctor(System.Int16[],System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateRequest::.ctor(System.Byte[],System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateRequest::.ctor(System.Byte[],System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateRequest::.ctor(System.Byte[],System.Int16[],System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.CertificateRequest::GetCertificateRequestContext()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.CertificateRequest::get_CertificateTypes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.CertificateRequest::get_SupportedSignatureAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.CertificateRequest::get_SupportedSignatureAlgorithmsCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.CertificateRequest::get_CertificateAuthorities()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.CertificateRequest::HasCertificateRequestContext(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateRequest::Encode(Org.BouncyCastle.Tls.TlsContext,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateRequest Org.BouncyCastle.Tls.CertificateRequest::Parse(Org.BouncyCastle.Tls.TlsContext,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateStatus::.ctor(System.Int16,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateStatus::.ctor(System.Int16,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CertificateStatus::get_StatusType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Tls.CertificateStatus::get_Response()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.OcspResponse Org.BouncyCastle.Tls.CertificateStatus::get_OcspResponse()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.CertificateStatus::get_OcspResponseList()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateStatus::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatus Org.BouncyCastle.Tls.CertificateStatus::Parse(Org.BouncyCastle.Tls.TlsContext,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateStatusRequest::.ctor(System.Int16,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateStatusRequest::.ctor(System.Int16,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CertificateStatusRequest::get_StatusType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Tls.CertificateStatusRequest::get_Request()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.OcspStatusRequest Org.BouncyCastle.Tls.CertificateStatusRequest::get_OcspStatusRequest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateStatusRequest::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatusRequest Org.BouncyCastle.Tls.CertificateStatusRequest::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateStatusRequestItemV2::.ctor(System.Int16,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateStatusRequestItemV2::.ctor(System.Int16,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CertificateStatusRequestItemV2::get_StatusType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Tls.CertificateStatusRequestItemV2::get_Request()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.OcspStatusRequest Org.BouncyCastle.Tls.CertificateStatusRequestItemV2::get_OcspStatusRequest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateStatusRequestItemV2::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatusRequestItemV2 Org.BouncyCastle.Tls.CertificateStatusRequestItemV2::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateStatusType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.CertificateType::IsValid(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateUrl/ListBuffer16::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateUrl/ListBuffer16::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateUrl/ListBuffer16::EncodeTo(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateUrl::.ctor(System.Int16,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateUrl::.ctor(System.Int16,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CertificateUrl::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.CertificateUrl::get_UrlAndHashList()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateUrl::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateUrl Org.BouncyCastle.Tls.CertificateUrl::Parse(Org.BouncyCastle.Tls.TlsContext,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateVerify::.ctor(System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateVerify::.ctor(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CertificateVerify::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.CertificateVerify::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateVerify::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateVerify Org.BouncyCastle.Tls.CertificateVerify::Parse(Org.BouncyCastle.Tls.TlsContext,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ChangeCipherSpec::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ChannelBinding::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.CipherSuite::IsScsv(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CipherSuite::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CipherType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ClientAuthenticationType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ClientCertificateType::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ClientCertificateType::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ClientCertificateType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ClientHello::.ctor(Org.BouncyCastle.Tls.ProtocolVersion,System.Byte[],System.Byte[],System.Byte[],System.Int32[],System.Collections.Generic.IDictionary`2,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ClientHello::.ctor(Org.BouncyCastle.Tls.ProtocolVersion,System.Byte[],System.Byte[],System.Byte[],System.Int32[],System.Collections.Generic.IDictionary`2,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ClientHello::get_BindersSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.ClientHello::get_CipherSuites()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.ClientHello::get_Cookie()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.ClientHello::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.ClientHello::get_Random()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.ClientHello::get_SessionID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ClientHello::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ClientHello::Encode(Org.BouncyCastle.Tls.TlsContext,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ClientHello Org.BouncyCastle.Tls.ClientHello::Parse(System.IO.MemoryStream,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CombinedHash::.ctor(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.Crypto.TlsHash,Org.BouncyCastle.Tls.Crypto.TlsHash)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CombinedHash::.ctor(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.Crypto.TlsHash,Org.BouncyCastle.Tls.Crypto.TlsHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CombinedHash::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CombinedHash::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CombinedHash::.ctor(Org.BouncyCastle.Tls.CombinedHash)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CombinedHash::.ctor(Org.BouncyCastle.Tls.CombinedHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CombinedHash::Update(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.CombinedHash::CalculateHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash Org.BouncyCastle.Tls.CombinedHash::CloneHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CombinedHash::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CompressionMethod::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ConnectionEnd::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ContentType::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ContentType::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ContentType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DatagramReceiver::GetReceiveLimit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DatagramReceiver::Receive(System.Byte[],System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DatagramSender::GetSendLimit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DatagramSender::Send(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsClient::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsClient::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsClient::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsCredentialedSigner::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Tls.Crypto.TlsSigner,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsCredentialedSigner::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Tls.Crypto.TlsSigner,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.DefaultTlsCredentialedSigner::get_Certificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DefaultTlsCredentialedSigner::GenerateRawSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.DefaultTlsCredentialedSigner::get_SignatureAndHashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsStreamSigner Org.BouncyCastle.Tls.DefaultTlsCredentialedSigner::GetStreamSigner()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::.ctor(System.Collections.Generic.IList`1,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::.ctor(System.Collections.Generic.IList`1,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::Accept(Org.BouncyCastle.Tls.Crypto.DHGroup)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::get_MinimumPrimeBits()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsHeartbeat::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsHeartbeat::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DefaultTlsHeartbeat::GeneratePayload()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DefaultTlsHeartbeat::get_IdleMillis()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DefaultTlsHeartbeat::get_TimeoutMillis()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreateDHKeyExchange(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreateDHanonKeyExchangeClient(System.Int32,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreateDHanonKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreateDheKeyExchangeClient(System.Int32,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreateDheKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreateECDHKeyExchange(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreateECDHanonKeyExchangeClient(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreateECDHanonKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreateECDheKeyExchangeClient(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreateECDheKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreatePskKeyExchangeClient(System.Int32,Org.BouncyCastle.Tls.TlsPskIdentity,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreatePskKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.TlsPskIdentityManager,Org.BouncyCastle.Tls.Crypto.TlsDHConfig,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreateRsaKeyExchange(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreateSrpKeyExchangeClient(System.Int32,Org.BouncyCastle.Tls.TlsSrpIdentity,Org.BouncyCastle.Tls.TlsSrpConfigVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::CreateSrpKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.TlsSrpLoginParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsServer::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsServer::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentials Org.BouncyCastle.Tls.DefaultTlsServer::GetCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsServer::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsSrpConfigVerifier::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsSrpConfigVerifier::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsSrpConfigVerifier::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsSrpConfigVerifier::.ctor(System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsSrpConfigVerifier::.ctor(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DefaultTlsSrpConfigVerifier::Accept(Org.BouncyCastle.Tls.Crypto.TlsSrpConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DeferredHash::.ctor(Org.BouncyCastle.Tls.TlsContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DeferredHash::.ctor(Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DeferredHash::CopyBufferTo(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DeferredHash::ForceBuffering()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DeferredHash::NotifyPrfDetermined()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DeferredHash::TrackHashAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DeferredHash::SealHashAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DeferredHash::StopTracking()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash Org.BouncyCastle.Tls.DeferredHash::ForkPrfHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DeferredHash::GetFinalHash(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DeferredHash::Update(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DeferredHash::CalculateHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash Org.BouncyCastle.Tls.DeferredHash::CloneHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DeferredHash::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DigestInputBuffer::UpdateDigest(Org.BouncyCastle.Tls.Crypto.TlsHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DigestInputBuffer::CopyInputTo(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DigestInputBuffer::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DigestInputBuffer::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DigitallySigned::.ctor(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DigitallySigned::.ctor(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.DigitallySigned::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DigitallySigned::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DigitallySigned::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DigitallySigned Org.BouncyCastle.Tls.DigitallySigned::Parse(Org.BouncyCastle.Tls.TlsContext,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsTransport Org.BouncyCastle.Tls.DtlsClientProtocol::Connect(Org.BouncyCastle.Tls.TlsClient,Org.BouncyCastle.Tls.DatagramTransport)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol::AbortClientHandshake(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState,Org.BouncyCastle.Tls.DtlsRecordLayer,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsTransport Org.BouncyCastle.Tls.DtlsClientProtocol::ClientHandshake(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState,Org.BouncyCastle.Tls.DtlsRecordLayer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsEpoch::.ctor(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsCipher,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsEpoch::.ctor(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsCipher,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.DtlsEpoch::AllocateSequenceNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCipher Org.BouncyCastle.Tls.DtlsEpoch::get_Cipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsEpoch::get_Epoch()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsEpoch::get_RecordHeaderLengthRead()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsEpoch::get_RecordHeaderLengthWrite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsReplayWindow Org.BouncyCastle.Tls.DtlsEpoch::get_ReplayWindow()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.DtlsEpoch::get_SequenceNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsEpoch::set_SequenceNumber(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsHandshakeRetransmit::ReceivedHandshakeRecord(System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsProtocol::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsProtocol::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsProtocol::ProcessFinished(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsProtocol::ApplyMaxFragmentLengthExtension(Org.BouncyCastle.Tls.DtlsRecordLayer,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsProtocol::GenerateCertificate(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.Certificate,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsProtocol::GenerateSupplementalData(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsProtocol::SendCertificateMessage(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.DtlsReliableHandshake,Org.BouncyCastle.Tls.Certificate,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsProtocol::ValidateSelectedCipherSuite(System.Int32,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReassembler/Range::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReassembler/Range::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsReassembler/Range::get_Start()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReassembler/Range::set_Start(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsReassembler/Range::get_End()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReassembler/Range::set_End(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReassembler::.ctor(System.Int16,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReassembler::.ctor(System.Int16,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.DtlsReassembler::get_MsgType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsReassembler::GetBodyIfComplete()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReassembler::ContributeFragment(System.Int16,System.Int32,System.Byte[],System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReassembler::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordLayer::ReceiveClientHelloRecord(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::SendHelloVerifyRequestRecord(Org.BouncyCastle.Tls.DatagramSender,System.Int64,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::.ctor(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.TlsPeer,Org.BouncyCastle.Tls.DatagramTransport)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::.ctor(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.TlsPeer,Org.BouncyCastle.Tls.DatagramTransport)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DtlsRecordLayer::get_IsClosed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::ResetAfterHelloVerifyRequestServer(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::SetPlaintextLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordLayer::get_ReadEpoch()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.DtlsRecordLayer::get_ReadVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::set_ReadVersion(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::SetWriteVersion(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::InitPendingEpoch(Org.BouncyCastle.Tls.Crypto.TlsCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::HandshakeSuccessful(Org.BouncyCastle.Tls.DtlsHandshakeRetransmit)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::InitHeartbeat(Org.BouncyCastle.Tls.TlsHeartbeat,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::ResetWriteEpoch()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordLayer::GetReceiveLimit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordLayer::GetSendLimit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordLayer::Receive(System.Byte[],System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordLayer::Receive(System.Byte[],System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Tls.DtlsRecordCallback)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordLayer::ReceivePending(System.Byte[],System.Int32,System.Int32,Org.BouncyCastle.Tls.DtlsRecordCallback)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::Send(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::Close()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::Fail(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::Failed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::Warn(System.Int16,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake/Message::.ctor(System.Int32,System.Int16,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake/Message::.ctor(System.Int32,System.Int16,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsReliableHandshake/Message::get_Seq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.DtlsReliableHandshake/Message::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsReliableHandshake/Message::get_Body()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake/RecordLayerBuffer::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake/RecordLayerBuffer::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake/RecordLayerBuffer::SendToRecordLayer(Org.BouncyCastle.Tls.DtlsRecordLayer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake/Retransmit::.ctor(Org.BouncyCastle.Tls.DtlsReliableHandshake)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake/Retransmit::.ctor(Org.BouncyCastle.Tls.DtlsReliableHandshake)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake/Retransmit::ReceivedHandshakeRecord(System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.MemoryStream Org.BouncyCastle.Tls.DtlsReliableHandshake::ReceiveClientHelloMessage(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::SendHelloVerifyRequest(Org.BouncyCastle.Tls.DatagramSender,System.Int64,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::.ctor(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.DtlsRecordLayer,System.Int32,System.Int32,Org.BouncyCastle.Tls.DtlsRequest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::.ctor(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.DtlsRecordLayer,System.Int32,System.Int32,Org.BouncyCastle.Tls.DtlsRequest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::ResetAfterHelloVerifyRequestClient()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsHandshakeHash Org.BouncyCastle.Tls.DtlsReliableHandshake::get_HandshakeHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::PrepareToFinish()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::SendMessage(System.Int16,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsReliableHandshake/Message Org.BouncyCastle.Tls.DtlsReliableHandshake::ReceiveMessage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsReliableHandshake::ReceiveMessageBody(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsReliableHandshake/Message Org.BouncyCastle.Tls.DtlsReliableHandshake::ReceiveMessageDelayedDigest(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::UpdateHandshakeMessagesDigest(Org.BouncyCastle.Tls.DtlsReliableHandshake/Message)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::Finish()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsReliableHandshake::BackOff(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DtlsReplayWindow::ShouldDiscard(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReplayWindow::ReportAuthenticated(System.Int64,System.Boolean&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReplayWindow::Reset(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReplayWindow::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReplayWindow::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRequest::.ctor(System.Int64,System.Byte[],Org.BouncyCastle.Tls.ClientHello)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRequest::.ctor(System.Int64,System.Byte[],Org.BouncyCastle.Tls.ClientHello)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ClientHello Org.BouncyCastle.Tls.DtlsRequest::get_ClientHello()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsRequest::get_Message()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRequest::get_MessageSeq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.DtlsRequest::get_RecordSeq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DtlsServerProtocol::get_VerifyRequests()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol::set_VerifyRequests(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsTransport Org.BouncyCastle.Tls.DtlsServerProtocol::Accept(Org.BouncyCastle.Tls.TlsServer,Org.BouncyCastle.Tls.DatagramTransport)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsTransport Org.BouncyCastle.Tls.DtlsServerProtocol::Accept(Org.BouncyCastle.Tls.TlsServer,Org.BouncyCastle.Tls.DatagramTransport,Org.BouncyCastle.Tls.DtlsRequest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol::AbortServerHandshake(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,Org.BouncyCastle.Tls.DtlsRecordLayer,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsTransport Org.BouncyCastle.Tls.DtlsServerProtocol::ServerHandshake(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,Org.BouncyCastle.Tls.DtlsRecordLayer,Org.BouncyCastle.Tls.DtlsRequest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsServerProtocol::GenerateServerHello(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,Org.BouncyCastle.Tls.DtlsRecordLayer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordCallback::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordCallback::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordCallback::Invoke(Org.BouncyCastle.Tls.DtlsRecordFlags)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordCallback::Invoke(Org.BouncyCastle.Tls.DtlsRecordFlags)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IAsyncResult Org.BouncyCastle.Tls.DtlsRecordCallback::BeginInvoke(Org.BouncyCastle.Tls.DtlsRecordFlags,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IAsyncResult Org.BouncyCastle.Tls.DtlsRecordCallback::BeginInvoke(Org.BouncyCastle.Tls.DtlsRecordFlags,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordCallback::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordCallback::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsTransport::.ctor(Org.BouncyCastle.Tls.DtlsRecordLayer,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsTransport::.ctor(Org.BouncyCastle.Tls.DtlsRecordLayer,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsTransport::GetReceiveLimit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsTransport::GetSendLimit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsTransport::Receive(System.Byte[],System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsTransport::Receive(System.Byte[],System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Tls.DtlsRecordCallback)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsTransport::ReceivePending(System.Byte[],System.Int32,System.Int32,Org.BouncyCastle.Tls.DtlsRecordCallback)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsTransport::Send(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsTransport::Close()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsVerifier::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsVerifier::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsRequest Org.BouncyCastle.Tls.DtlsVerifier::VerifyRequest(System.Byte[],System.Byte[],System.Int32,System.Int32,Org.BouncyCastle.Tls.DatagramSender)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ECCurveType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ECPointFormat::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.EncryptionAlgorithm::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ExporterLabel::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ExtensionType::GetName(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ExtensionType::GetText(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ExtensionType::IsRecognized(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ExtensionType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeMessageInput::.ctor(System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeMessageInput::.ctor(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeMessageInput::UpdateHash(Org.BouncyCastle.Tls.Crypto.TlsHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeMessageInput::UpdateHashPrefix(Org.BouncyCastle.Tls.Crypto.TlsHash,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeMessageInput::UpdateHashSuffix(Org.BouncyCastle.Tls.Crypto.TlsHash,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.HandshakeMessageOutput::GetLength(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeMessageOutput::Send(Org.BouncyCastle.Tls.TlsProtocol,System.Int16,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeMessageOutput::.ctor(System.Int16)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeMessageOutput::.ctor(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeMessageOutput::.ctor(System.Int16,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeMessageOutput::.ctor(System.Int16,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeMessageOutput::Send(Org.BouncyCastle.Tls.TlsProtocol)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeMessageOutput::PrepareClientHello(Org.BouncyCastle.Tls.TlsHandshakeHash,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeMessageOutput::SendClientHello(Org.BouncyCastle.Tls.TlsClientProtocol,Org.BouncyCastle.Tls.TlsHandshakeHash,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.HandshakeType::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.HandshakeType::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.HandshakeType::IsRecognized(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HandshakeType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.HashAlgorithm::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.HashAlgorithm::GetOutputSize(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.HashAlgorithm::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.HashAlgorithm::IsPrivate(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.HashAlgorithm::IsRecognized(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HashAlgorithm::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HeartbeatExtension::.ctor(System.Int16)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HeartbeatExtension::.ctor(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HeartbeatExtension::get_Mode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HeartbeatExtension::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HeartbeatExtension Org.BouncyCastle.Tls.HeartbeatExtension::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HeartbeatMessage Org.BouncyCastle.Tls.HeartbeatMessage::Create(Org.BouncyCastle.Tls.TlsContext,System.Int16,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HeartbeatMessage Org.BouncyCastle.Tls.HeartbeatMessage::Create(Org.BouncyCastle.Tls.TlsContext,System.Int16,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HeartbeatMessage::.ctor(System.Int16,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HeartbeatMessage::.ctor(System.Int16,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.HeartbeatMessage::get_PaddingLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.HeartbeatMessage::get_Payload()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HeartbeatMessage::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HeartbeatMessage::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HeartbeatMessage Org.BouncyCastle.Tls.HeartbeatMessage::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.HeartbeatMessageType::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.HeartbeatMessageType::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.HeartbeatMessageType::IsValid(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HeartbeatMessageType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.HeartbeatMode::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.HeartbeatMode::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.HeartbeatMode::IsValid(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.HeartbeatMode::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.IdentifierType::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.IdentifierType::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.IdentifierType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.KeyExchangeAlgorithm::IsAnonymous(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.KeyExchangeAlgorithm::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.KeyShareEntry::.ctor(System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.KeyShareEntry::.ctor(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyShareEntry::get_NamedGroup()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.KeyShareEntry::get_KeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.KeyShareEntry::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.KeyShareEntry Org.BouncyCastle.Tls.KeyShareEntry::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.KeyUpdateRequest::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.KeyUpdateRequest::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.KeyUpdateRequest::IsValid(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.KeyUpdateRequest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.MacAlgorithm::GetName(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.MacAlgorithm::GetText(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.MacAlgorithm::IsHmac(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.MacAlgorithm::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.MaxFragmentLength::IsValid(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.MaxFragmentLength::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NamedGroup::CanBeNegotiated(System.Int32,Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::GetCurveBits(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.NamedGroup::GetCurveName(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::GetFiniteFieldBits(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.NamedGroup::GetFiniteFieldName(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.NamedGroup::GetKemName(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::GetMaximumChar2CurveBits()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::GetMaximumCurveBits()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::GetMaximumFiniteFieldBits()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::GetMaximumPrimeCurveBits()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.NamedGroup::GetName(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.NamedGroup::GetStandardName(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.NamedGroup::GetText(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NamedGroup::IsChar2Curve(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NamedGroup::IsFiniteField(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NamedGroup::IsPrimeCurve(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NamedGroup::IsPrivate(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NamedGroup::IsValid(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NamedGroup::RefersToAnECDHCurve(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NamedGroup::RefersToAnECDSACurve(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NamedGroup::RefersToAnXDHCurve(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NamedGroup::RefersToASpecificCurve(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NamedGroup::RefersToASpecificFiniteField(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NamedGroup::RefersToASpecificGroup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NamedGroup::RefersToASpecificKem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.NamedGroup::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.NamedGroup::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.NamedGroupRole::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.NameType::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.NameType::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NameType::IsRecognized(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.NameType::IsValid(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.NameType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.NewSessionTicket::.ctor(System.Int64,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.NewSessionTicket::.ctor(System.Int64,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.NewSessionTicket::get_TicketLifetimeHint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.NewSessionTicket::get_Ticket()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.NewSessionTicket::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.NewSessionTicket Org.BouncyCastle.Tls.NewSessionTicket::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.OcspStatusRequest::.ctor(System.Collections.Generic.IList`1,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.OcspStatusRequest::.ctor(System.Collections.Generic.IList`1,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.OcspStatusRequest::get_ResponderIDList()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Tls.OcspStatusRequest::get_RequestExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.OcspStatusRequest::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.OcspStatusRequest Org.BouncyCastle.Tls.OcspStatusRequest::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.OfferedPsks/BindersConfig::.ctor(Org.BouncyCastle.Tls.TlsPsk[],System.Int16[],Org.BouncyCastle.Tls.Crypto.TlsSecret[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.OfferedPsks/BindersConfig::.ctor(Org.BouncyCastle.Tls.TlsPsk[],System.Int16[],Org.BouncyCastle.Tls.Crypto.TlsSecret[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.OfferedPsks/SelectedConfig::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsPsk,System.Int16[],Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.OfferedPsks/SelectedConfig::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsPsk,System.Int16[],Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.OfferedPsks::.ctor(System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.OfferedPsks::.ctor(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.OfferedPsks::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.OfferedPsks::get_Binders()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.OfferedPsks::get_BindersSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.OfferedPsks::get_Identities()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.OfferedPsks::GetIndexOfIdentity(Org.BouncyCastle.Tls.PskIdentity)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.OfferedPsks::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.OfferedPsks::EncodeBinders(System.IO.Stream,Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.TlsHandshakeHash,Org.BouncyCastle.Tls.OfferedPsks/BindersConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.OfferedPsks::GetBindersSize(Org.BouncyCastle.Tls.TlsPsk[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.OfferedPsks Org.BouncyCastle.Tls.OfferedPsks::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.PrfAlgorithm::GetName(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.PrfAlgorithm::GetText(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.PrfAlgorithm::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::AsRawBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::AsUtf8Encoding(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ProtocolName::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.ProtocolName::GetBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ProtocolName::GetUtf8Decoding()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ProtocolName::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolName::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ProtocolName::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ProtocolName::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::Contains(Org.BouncyCastle.Tls.ProtocolVersion[],Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::GetEarliestDtls(Org.BouncyCastle.Tls.ProtocolVersion[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::GetEarliestTls(Org.BouncyCastle.Tls.ProtocolVersion[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::GetLatestDtls(Org.BouncyCastle.Tls.ProtocolVersion[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::GetLatestTls(Org.BouncyCastle.Tls.ProtocolVersion[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::IsSupportedDtlsVersionClient(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::IsSupportedDtlsVersionServer(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::IsSupportedTlsVersionClient(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::IsSupportedTlsVersionServer(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ProtocolVersion::.ctor(System.Int32,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.ProtocolVersion::DownTo(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ProtocolVersion::get_FullVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ProtocolVersion::get_MajorVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ProtocolVersion::get_MinorVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ProtocolVersion::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::get_IsDtls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::get_IsSsl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::get_IsTls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::GetEquivalentTlsVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::GetNextVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::GetPreviousVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::IsEarlierVersionOf(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::IsEqualOrEarlierVersionOf(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::IsEqualOrLaterVersionOf(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::IsLaterVersionOf(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ProtocolVersion::Equals(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ProtocolVersion::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::Get(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.ProtocolVersion::Only()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ProtocolVersion::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ProtocolVersion::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.PskIdentity::.ctor(System.Byte[],System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.PskIdentity::.ctor(System.Byte[],System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.PskIdentity::GetEncodedLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.PskIdentity::get_Identity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.PskIdentity::get_ObfuscatedTicketAge()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.PskIdentity::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.PskIdentity Org.BouncyCastle.Tls.PskIdentity::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.PskIdentity::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.PskIdentity::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.PskKeyExchangeMode::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.PskKeyExchangeMode::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.PskKeyExchangeMode::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.PskTlsClient::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.PskTlsClient::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.PskTlsClient::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.TlsPskIdentity)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.PskTlsClient::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.TlsPskIdentity)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPskIdentity Org.BouncyCastle.Tls.PskTlsClient::GetPskIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsAuthentication Org.BouncyCastle.Tls.PskTlsClient::GetAuthentication()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.PskTlsClient::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.PskTlsServer::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.TlsPskIdentityManager)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.PskTlsServer::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.TlsPskIdentityManager)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentials Org.BouncyCastle.Tls.PskTlsServer::GetCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPskIdentityManager Org.BouncyCastle.Tls.PskTlsServer::GetPskIdentityManager()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.PskTlsServer::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordFormat::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.RecordPreview Org.BouncyCastle.Tls.RecordPreview::CombineAppData(Org.BouncyCastle.Tls.RecordPreview,Org.BouncyCastle.Tls.RecordPreview)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.RecordPreview Org.BouncyCastle.Tls.RecordPreview::ExtendRecordSize(Org.BouncyCastle.Tls.RecordPreview,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordPreview::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordPreview::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.RecordPreview::get_ContentLimit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.RecordPreview::get_RecordSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream/Record::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream/Record::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream/Record::FillTo(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream/Record::ReadFragment(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.RecordStream/Record::ReadHeader(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream/Record::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.RecordStream/SequenceNumber::get_CurrentValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.RecordStream/SequenceNumber::NextValue(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream/SequenceNumber::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream/SequenceNumber::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream/SequenceNumber::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::.ctor(Org.BouncyCastle.Tls.TlsProtocol,System.IO.Stream,System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::.ctor(Org.BouncyCastle.Tls.TlsProtocol,System.IO.Stream,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.RecordStream::get_PlaintextLimit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::SetPlaintextLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::SetWriteVersion(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::SetIgnoreChangeCipherSpec(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::SetPendingCipher(Org.BouncyCastle.Tls.Crypto.TlsCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::NotifyChangeCipherSpecReceived()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::EnablePendingCipherRead(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::EnablePendingCipherWrite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::FinaliseHandshake()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.RecordStream::NeedsKeyUpdate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::NotifyKeyUpdateReceived()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::NotifyKeyUpdateSent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.RecordPreview Org.BouncyCastle.Tls.RecordStream::PreviewRecordHeader(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.RecordPreview Org.BouncyCastle.Tls.RecordStream::PreviewOutputRecord(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.RecordStream::PreviewOutputRecordSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.RecordStream::ReadFullRecord(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.RecordStream::ReadRecord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDecodeResult Org.BouncyCastle.Tls.RecordStream::DecodeAndVerify(System.Int16,Org.BouncyCastle.Tls.ProtocolVersion,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::WriteRecord(System.Int16,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::Close()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SecurityParameters::Clear()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.SecurityParameters::get_ApplicationProtocol()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.SecurityParameters::get_BaseKeyClient()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.SecurityParameters::get_BaseKeyServer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SecurityParameters::get_CipherSuite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SecurityParameters::get_ClientCertificateType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.SecurityParameters::get_ClientCertTypes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SecurityParameters::get_ClientRandom()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.SecurityParameters::get_ClientServerNames()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.SecurityParameters::get_ClientSigAlgs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.SecurityParameters::get_ClientSigAlgsCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.SecurityParameters::get_ClientSupportedGroups()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SecurityParameters::get_ConnectionIDLocal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SecurityParameters::get_ConnectionIDPeer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.SecurityParameters::get_EarlyExporterMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.SecurityParameters::get_EarlySecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.SecurityParameters::get_ExporterMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SecurityParameters::get_Entity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.SecurityParameters::get_HandshakeSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SecurityParameters::get_IsApplicationProtocolSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SecurityParameters::get_IsEncryptThenMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SecurityParameters::get_IsExtendedMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SecurityParameters::get_IsExtendedPadding()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SecurityParameters::get_IsResumedSession()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SecurityParameters::get_IsSecureRenegotiation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SecurityParameters::get_IsTruncatedHmac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SecurityParameters::get_KeyExchangeAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.SecurityParameters::get_LocalCertificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SecurityParameters::get_LocalVerifyData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.SecurityParameters::get_MasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SecurityParameters::get_MaxFragmentLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.SecurityParameters::get_NegotiatedVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.SecurityParameters::get_PeerCertificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SecurityParameters::get_PeerVerifyData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SecurityParameters::get_PrfAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SecurityParameters::get_PrfCryptoHashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SecurityParameters::get_PrfHashLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SecurityParameters::get_PskIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SecurityParameters::get_ServerCertificateType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SecurityParameters::get_ServerRandom()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.SecurityParameters::get_ServerSigAlgs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.SecurityParameters::get_ServerSigAlgsCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.SecurityParameters::get_ServerSupportedGroups()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SecurityParameters::get_SessionHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SecurityParameters::get_SessionID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SecurityParameters::get_SrpIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SecurityParameters::get_StatusRequestVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SecurityParameters::get_TlsServerEndPoint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SecurityParameters::get_TlsUnique()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.SecurityParameters::get_TrafficSecretClient()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.SecurityParameters::get_TrafficSecretServer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SecurityParameters::get_VerifyDataLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SecurityParameters::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SecurityParameters::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerHello::.ctor(System.Byte[],System.Int32,System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerHello::.ctor(System.Byte[],System.Int32,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerHello::.ctor(Org.BouncyCastle.Tls.ProtocolVersion,System.Byte[],System.Byte[],System.Int32,System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerHello::.ctor(Org.BouncyCastle.Tls.ProtocolVersion,System.Byte[],System.Byte[],System.Int32,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ServerHello::get_CipherSuite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.ServerHello::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.ServerHello::get_Random()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.ServerHello::get_SessionID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ServerHello::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.ServerHello::IsHelloRetryRequest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerHello::Encode(Org.BouncyCastle.Tls.TlsContext,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ServerHello Org.BouncyCastle.Tls.ServerHello::Parse(System.IO.MemoryStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerHello::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerName::.ctor(System.Int16,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerName::.ctor(System.Int16,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.ServerName::get_NameData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ServerName::get_NameType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerName::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ServerName Org.BouncyCastle.Tls.ServerName::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerNameList::.ctor(System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerNameList::.ctor(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.ServerNameList::get_ServerNames()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerNameList::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ServerNameList Org.BouncyCastle.Tls.ServerNameList::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerOnlyTlsAuthentication::NotifyServerCertificate(Org.BouncyCastle.Tls.TlsServerCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentials Org.BouncyCastle.Tls.ServerOnlyTlsAuthentication::GetClientCredentials(Org.BouncyCastle.Tls.CertificateRequest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerOnlyTlsAuthentication::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerSrpParams::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Byte[],Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerSrpParams::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Byte[],Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.ServerSrpParams::get_B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.ServerSrpParams::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.ServerSrpParams::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.ServerSrpParams::get_S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ServerSrpParams::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ServerSrpParams Org.BouncyCastle.Tls.ServerSrpParams::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SessionParameters/Builder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SessionParameters/Builder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters Org.BouncyCastle.Tls.SessionParameters/Builder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters/Builder Org.BouncyCastle.Tls.SessionParameters/Builder::SetCipherSuite(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters/Builder Org.BouncyCastle.Tls.SessionParameters/Builder::SetExtendedMasterSecret(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters/Builder Org.BouncyCastle.Tls.SessionParameters/Builder::SetLocalCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters/Builder Org.BouncyCastle.Tls.SessionParameters/Builder::SetMasterSecret(Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters/Builder Org.BouncyCastle.Tls.SessionParameters/Builder::SetNegotiatedVersion(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters/Builder Org.BouncyCastle.Tls.SessionParameters/Builder::SetPeerCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters/Builder Org.BouncyCastle.Tls.SessionParameters/Builder::SetPskIdentity(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters/Builder Org.BouncyCastle.Tls.SessionParameters/Builder::SetSrpIdentity(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters/Builder Org.BouncyCastle.Tls.SessionParameters/Builder::SetServerExtensions(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SessionParameters::.ctor(System.Int32,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Tls.Crypto.TlsSecret,Org.BouncyCastle.Tls.ProtocolVersion,Org.BouncyCastle.Tls.Certificate,System.Byte[],System.Byte[],System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SessionParameters::get_CipherSuite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SessionParameters::Clear()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters Org.BouncyCastle.Tls.SessionParameters::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SessionParameters::get_IsExtendedMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.SessionParameters::get_LocalCertificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.SessionParameters::get_MasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.SessionParameters::get_NegotiatedVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.SessionParameters::get_PeerCertificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SessionParameters::get_PskIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.SessionParameters::ReadServerExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SessionParameters::get_SrpIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::GetClientCertificateType(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.SignatureAlgorithm::GetName(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.SignatureAlgorithm::GetText(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SignatureAlgorithm::IsRecognized(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SignatureAlgorithm::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SignatureAlgorithm::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::GetInstance(System.Int16,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::.ctor(System.Int16,System.Int16)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::.ctor(System.Int16,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::get_Hash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::From(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::From(System.Int16,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::GetCryptoHashAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::GetCryptoHashAlgorithm(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.SignatureScheme::GetName(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::GetNamedGroup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureScheme::GetHashAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureScheme::GetSignatureAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureScheme::GetSignatureAndHashAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.SignatureScheme::GetText(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SignatureScheme::IsPrivate(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SignatureScheme::IsECDsa(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SignatureScheme::isMLDsa(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SignatureScheme::IsRsaPss(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SignatureScheme::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SignatureScheme::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SimulatedTlsSrpIdentityManager Org.BouncyCastle.Tls.SimulatedTlsSrpIdentityManager::GetRfc5054Default(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.Crypto.Srp6Group,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SimulatedTlsSrpIdentityManager::.ctor(Org.BouncyCastle.Tls.Crypto.Srp6Group,Org.BouncyCastle.Tls.Crypto.TlsSrp6VerifierGenerator,Org.BouncyCastle.Tls.Crypto.TlsMac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SimulatedTlsSrpIdentityManager::.ctor(Org.BouncyCastle.Tls.Crypto.Srp6Group,Org.BouncyCastle.Tls.Crypto.TlsSrp6VerifierGenerator,Org.BouncyCastle.Tls.Crypto.TlsMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpLoginParameters Org.BouncyCastle.Tls.SimulatedTlsSrpIdentityManager::GetLoginParameters(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SimulatedTlsSrpIdentityManager::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SrpTlsClient::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SrpTlsClient::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SrpTlsClient::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.TlsSrpIdentity)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SrpTlsClient::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.TlsSrpIdentity)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.SrpTlsClient::GetClientExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SrpTlsClient::ProcessServerExtensions(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpIdentity Org.BouncyCastle.Tls.SrpTlsClient::GetSrpIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsAuthentication Org.BouncyCastle.Tls.SrpTlsClient::GetAuthentication()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SrpTlsClient::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SrpTlsServer::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.TlsSrpIdentityManager)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SrpTlsServer::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.TlsSrpIdentityManager)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SrpTlsServer::ProcessClientExtensions(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SrpTlsServer::GetSelectedCipherSuite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentials Org.BouncyCastle.Tls.SrpTlsServer::GetCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpLoginParameters Org.BouncyCastle.Tls.SrpTlsServer::GetSrpLoginParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SrpTlsServer::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SrtpProtectionProfile::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Ssl3Utilities::CalculateVerifyData(Org.BouncyCastle.Tls.TlsHandshakeHash,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Ssl3Utilities::CompleteCombinedHash(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.Crypto.TlsHash,Org.BouncyCastle.Tls.Crypto.TlsHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Ssl3Utilities::ReadEncryptedPms(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Ssl3Utilities::WriteEncryptedPms(System.Byte[],System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Ssl3Utilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Ssl3Utilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SupplementalDataEntry::.ctor(System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SupplementalDataEntry::.ctor(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SupplementalDataEntry::get_DataType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.SupplementalDataEntry::get_Data()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SupplementalDataType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Timeout::.ctor(System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Timeout::.ctor(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Timeout::.ctor(System.Int64,System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Timeout::.ctor(System.Int64,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.Timeout::RemainingMillis(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Timeout::ConstrainWaitMillis(System.Int32,Org.BouncyCastle.Tls.Timeout,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Timeout Org.BouncyCastle.Tls.Timeout::ForWaitMillis(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Timeout Org.BouncyCastle.Tls.Timeout::ForWaitMillis(System.Int32,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Timeout::GetWaitMillis(Org.BouncyCastle.Tls.Timeout,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Timeout::HasExpired(Org.BouncyCastle.Tls.Timeout)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Timeout::HasExpired(Org.BouncyCastle.Tls.Timeout,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsAuthentication::NotifyServerCertificate(Org.BouncyCastle.Tls.TlsServerCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentials Org.BouncyCastle.Tls.TlsAuthentication::GetClientCredentials(Org.BouncyCastle.Tls.CertificateRequest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClient::Init(Org.BouncyCastle.Tls.TlsClientContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSession Org.BouncyCastle.Tls.TlsClient::GetSessionToResume()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsClient::GetExternalPsks()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsClient::IsFallback()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.TlsClient::GetClientExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsClient::GetEarlyKeyShareGroups()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClient::NotifyServerVersion(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClient::NotifySessionToResume(Org.BouncyCastle.Tls.TlsSession)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClient::NotifySessionID(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClient::NotifySelectedCipherSuite(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClient::NotifySelectedPsk(Org.BouncyCastle.Tls.TlsPsk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClient::ProcessServerExtensions(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClient::ProcessServerSupplementalData(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPskIdentity Org.BouncyCastle.Tls.TlsClient::GetPskIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpIdentity Org.BouncyCastle.Tls.TlsClient::GetSrpIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsDHGroupVerifier Org.BouncyCastle.Tls.TlsClient::GetDHGroupVerifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpConfigVerifier Org.BouncyCastle.Tls.TlsClient::GetSrpConfigVerifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsAuthentication Org.BouncyCastle.Tls.TlsClient::GetAuthentication()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsClient::GetClientSupplementalData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClient::NotifyNewSessionTicket(Org.BouncyCastle.Tls.NewSessionTicket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientContextImpl::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientContextImpl::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsClientContextImpl::get_IsServer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::.ctor(System.IO.Stream,System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::.ctor(System.IO.Stream,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Connect(Org.BouncyCastle.Tls.TlsClient)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.AbstractTlsContext Org.BouncyCastle.Tls.TlsClientProtocol::get_ContextAdmin()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsCloseable::Close()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCrypto Org.BouncyCastle.Tls.TlsContext::get_Crypto()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsNonceGenerator Org.BouncyCastle.Tls.TlsContext::get_NonceGenerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SecurityParameters Org.BouncyCastle.Tls.TlsContext::get_SecurityParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsContext::get_IsServer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.TlsContext::get_ClientSupportedVersions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.TlsContext::get_ClientVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.TlsContext::get_RsaPreMasterSecretVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.TlsContext::get_ServerVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSession Org.BouncyCastle.Tls.TlsContext::get_ResumableSession()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSession Org.BouncyCastle.Tls.TlsContext::get_Session()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Tls.TlsContext::get_UserObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsContext::set_UserObject(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsContext::ExportChannelBinding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsContext::ExportEarlyKeyingMaterial(System.String,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsContext::ExportKeyingMaterial(System.String,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsCredentialedAgreement::GenerateAgreement(Org.BouncyCastle.Tls.Crypto.TlsCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsCredentialedDecryptor::Decrypt(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsCredentialedSigner::GenerateRawSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.TlsCredentialedSigner::get_SignatureAndHashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsStreamSigner Org.BouncyCastle.Tls.TlsCredentialedSigner::GetStreamSigner()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.TlsCredentials::get_Certificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHanonKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHanonKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHanonKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHanonKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHanonKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsDHGroupVerifier,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHanonKeyExchange::SkipServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHanonKeyExchange::ProcessServerCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHanonKeyExchange::ProcessServerCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsDHanonKeyExchange::get_RequiresServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsDHanonKeyExchange::GenerateServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHanonKeyExchange::ProcessServerKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsDHanonKeyExchange::GetClientCertificateTypes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHanonKeyExchange::ProcessClientCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHanonKeyExchange::GenerateClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHanonKeyExchange::ProcessClientCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHanonKeyExchange::ProcessClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsDHanonKeyExchange::GeneratePreMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDheKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDheKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDheKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDheKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDheKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsDHGroupVerifier,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDheKeyExchange::SkipServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDheKeyExchange::ProcessServerCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDheKeyExchange::ProcessServerCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsDheKeyExchange::get_RequiresServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsDheKeyExchange::GenerateServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDheKeyExchange::ProcessServerKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsDheKeyExchange::GetClientCertificateTypes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDheKeyExchange::ProcessClientCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDheKeyExchange::GenerateClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDheKeyExchange::ProcessClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsDheKeyExchange::GeneratePreMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsDHGroupVerifier::Accept(Org.BouncyCastle.Tls.Crypto.DHGroup)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHKeyExchange::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHKeyExchange::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHKeyExchange::SkipServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHKeyExchange::ProcessServerCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHKeyExchange::ProcessServerCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsDHKeyExchange::GetClientCertificateTypes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHKeyExchange::SkipClientCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHKeyExchange::ProcessClientCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHKeyExchange::GenerateClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHKeyExchange::ProcessClientCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHKeyExchange::ProcessClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsDHKeyExchange::get_RequiresCertificateVerify()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsDHKeyExchange::GeneratePreMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDHConfig Org.BouncyCastle.Tls.TlsDHUtilities::CreateNamedDHConfig(Org.BouncyCastle.Tls.TlsContext,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.TlsDHUtilities::GetDHGroup(Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.TlsDHUtilities::GetNamedDHGroup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsDHUtilities::GetMinimumFiniteFieldBits(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsDHUtilities::IsDHCipherSuite(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsDHUtilities::GetNamedGroupForDHParameters(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.TlsDHUtilities::GetStandardGroupForDHParameters(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDHConfig Org.BouncyCastle.Tls.TlsDHUtilities::ReceiveDHConfig(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.TlsDHGroupVerifier,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.TlsDHUtilities::ReadDHParameter(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHUtilities::WriteDHConfig(Org.BouncyCastle.Tls.Crypto.TlsDHConfig,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHUtilities::WriteDHParameter(Org.BouncyCastle.Math.BigInteger,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsDHUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsECConfig Org.BouncyCastle.Tls.TlsEccUtilities::CreateNamedECConfig(Org.BouncyCastle.Tls.TlsContext,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsEccUtilities::GetMinimumCurveBits(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsEccUtilities::IsEccCipherSuite(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsEccUtilities::CheckPointEncoding(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsECConfig Org.BouncyCastle.Tls.TlsEccUtilities::ReceiveECDHConfig(Org.BouncyCastle.Tls.TlsContext,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsEccUtilities::WriteECConfig(Org.BouncyCastle.Tls.Crypto.TlsECConfig,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsEccUtilities::WriteNamedECParameters(System.Int32,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsEccUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::SkipServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::ProcessServerCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::ProcessServerCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::get_RequiresServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::GenerateServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::ProcessServerKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::GetClientCertificateTypes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::ProcessClientCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::GenerateClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::ProcessClientCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::ProcessClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::GeneratePreMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDheKeyExchange::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDheKeyExchange::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDheKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDheKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDheKeyExchange::SkipServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDheKeyExchange::ProcessServerCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDheKeyExchange::ProcessServerCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsECDheKeyExchange::get_RequiresServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsECDheKeyExchange::GenerateServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDheKeyExchange::ProcessServerKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsECDheKeyExchange::GetClientCertificateTypes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDheKeyExchange::ProcessClientCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDheKeyExchange::GenerateClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDheKeyExchange::ProcessClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsECDheKeyExchange::GeneratePreMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHKeyExchange::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHKeyExchange::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHKeyExchange::SkipServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHKeyExchange::ProcessServerCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHKeyExchange::ProcessServerCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsECDHKeyExchange::GetClientCertificateTypes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHKeyExchange::SkipClientCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHKeyExchange::ProcessClientCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHKeyExchange::GenerateClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHKeyExchange::ProcessClientCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHKeyExchange::ProcessClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsECDHKeyExchange::get_RequiresCertificateVerify()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsECDHKeyExchange::GeneratePreMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.TlsExtensionsUtilities::EnsureExtensionsInitialised(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddAlpnExtensionClient(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddAlpnExtensionServer(System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Tls.ProtocolName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddCertificateAuthoritiesExtension(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddClientCertificateTypeExtensionClient(System.Collections.Generic.IDictionary`2,System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddClientCertificateTypeExtensionServer(System.Collections.Generic.IDictionary`2,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddClientCertificateUrlExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddCompressCertificateExtension(System.Collections.Generic.IDictionary`2,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddConnectionIDExtension(System.Collections.Generic.IDictionary`2,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddCookieExtension(System.Collections.Generic.IDictionary`2,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddEarlyDataIndication(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddEarlyDataMaxSize(System.Collections.Generic.IDictionary`2,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddEmptyExtensionData(System.Collections.Generic.IDictionary`2,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddEncryptThenMacExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddExtendedMasterSecretExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddHeartbeatExtension(System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Tls.HeartbeatExtension)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddKeyShareClientHello(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddKeyShareHelloRetryRequest(System.Collections.Generic.IDictionary`2,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddKeyShareServerHello(System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Tls.KeyShareEntry)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddMaxFragmentLengthExtension(System.Collections.Generic.IDictionary`2,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddOidFiltersExtension(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddPaddingExtension(System.Collections.Generic.IDictionary`2,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddPostHandshakeAuthExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddPreSharedKeyClientHello(System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Tls.OfferedPsks)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddPreSharedKeyServerHello(System.Collections.Generic.IDictionary`2,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddPskKeyExchangeModesExtension(System.Collections.Generic.IDictionary`2,System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddRecordSizeLimitExtension(System.Collections.Generic.IDictionary`2,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddServerCertificateTypeExtensionClient(System.Collections.Generic.IDictionary`2,System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddServerCertificateTypeExtensionServer(System.Collections.Generic.IDictionary`2,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddServerNameExtensionClient(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddServerNameExtensionServer(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddSignatureAlgorithmsExtension(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddSignatureAlgorithmsCertExtension(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddStatusRequestExtension(System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Tls.CertificateStatusRequest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddStatusRequestV2Extension(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddSupportedGroupsExtension(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddSupportedPointFormatsExtension(System.Collections.Generic.IDictionary`2,System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddSupportedVersionsExtensionClient(System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Tls.ProtocolVersion[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddSupportedVersionsExtensionServer(System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddTruncatedHmacExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddTrustedCAKeysExtensionClient(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsExtensionsUtilities::AddTrustedCAKeysExtensionServer(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetAlpnExtensionClient(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetAlpnExtensionServer(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetCertificateAuthoritiesExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetClientCertificateTypeExtensionClient(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetClientCertificateTypeExtensionServer(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetClientCertificateTypeExtensionServer(System.Collections.Generic.IDictionary`2,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetCompressCertificateExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetConnectionIDExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetCookieExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetEarlyDataMaxSize(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HeartbeatExtension Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetHeartbeatExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetKeyShareClientHello(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetKeyShareHelloRetryRequest(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.KeyShareEntry Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetKeyShareServerHello(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetMaxFragmentLengthExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetOidFiltersExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetPaddingExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.OfferedPsks Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetPreSharedKeyClientHello(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetPreSharedKeyServerHello(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetPskKeyExchangeModesExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetRecordSizeLimitExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetServerCertificateTypeExtensionClient(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetServerCertificateTypeExtensionServer(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetServerCertificateTypeExtensionServer(System.Collections.Generic.IDictionary`2,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetServerNameExtensionClient(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetSignatureAlgorithmsExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetSignatureAlgorithmsCertExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatusRequest Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetStatusRequestExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetStatusRequestV2Extension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetSupportedGroupsExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetSupportedPointFormatsExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetSupportedVersionsExtensionClient(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetSupportedVersionsExtensionServer(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::GetTrustedCAKeysExtensionClient(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::HasClientCertificateUrlExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::HasEarlyDataIndication(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::HasEncryptThenMacExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::HasExtendedMasterSecretExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::HasServerNameExtensionServer(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::HasPostHandshakeAuthExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::HasTruncatedHmacExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::HasTrustedCAKeysExtensionServer(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateAlpnExtensionClient(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateAlpnExtensionServer(Org.BouncyCastle.Tls.ProtocolName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateCertificateAuthoritiesExtension(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateCertificateTypeExtensionClient(System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateCertificateTypeExtensionServer(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateClientCertificateUrlExtension()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateCompressCertificateExtension(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateConnectionIDExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateCookieExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateEarlyDataIndication()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateEarlyDataMaxSize(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateEmptyExtensionData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateEncryptThenMacExtension()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateExtendedMasterSecretExtension()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateHeartbeatExtension(Org.BouncyCastle.Tls.HeartbeatExtension)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateKeyShareClientHello(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateKeyShareHelloRetryRequest(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateKeyShareServerHello(Org.BouncyCastle.Tls.KeyShareEntry)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateMaxFragmentLengthExtension(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateOidFiltersExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreatePaddingExtension(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreatePostHandshakeAuthExtension()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreatePreSharedKeyClientHello(Org.BouncyCastle.Tls.OfferedPsks)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreatePreSharedKeyServerHello(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreatePskKeyExchangeModesExtension(System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateRecordSizeLimitExtension(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateServerNameExtensionClient(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateServerNameExtensionServer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateSignatureAlgorithmsExtension(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateSignatureAlgorithmsCertExtension(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateStatusRequestExtension(Org.BouncyCastle.Tls.CertificateStatusRequest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateStatusRequestV2Extension(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateSupportedGroupsExtension(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateSupportedPointFormatsExtension(System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateSupportedVersionsExtensionClient(Org.BouncyCastle.Tls.ProtocolVersion[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateSupportedVersionsExtensionServer(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateTruncatedHmacExtension()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateTrustedCAKeysExtensionClient(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::CreateTrustedCAKeysExtensionServer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadAlpnExtensionClient(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadAlpnExtensionServer(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadCertificateAuthoritiesExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadCertificateTypeExtensionClient(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadCertificateTypeExtensionServer(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadClientCertificateUrlExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadCompressCertificateExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadConnectionIDExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadCookieExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadEarlyDataIndication(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadEarlyDataMaxSize(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadEncryptThenMacExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadExtendedMasterSecretExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HeartbeatExtension Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadHeartbeatExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadKeyShareClientHello(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadKeyShareHelloRetryRequest(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.KeyShareEntry Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadKeyShareServerHello(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadMaxFragmentLengthExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadOidFiltersExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadPaddingExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadPostHandshakeAuthExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.OfferedPsks Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadPreSharedKeyClientHello(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadPreSharedKeyServerHello(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadPskKeyExchangeModesExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadRecordSizeLimitExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadServerNameExtensionClient(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadServerNameExtensionServer(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadSignatureAlgorithmsExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadSignatureAlgorithmsCertExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatusRequest Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadStatusRequestExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadStatusRequestV2Extension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadSupportedGroupsExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadSupportedPointFormatsExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadSupportedVersionsExtensionClient(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadSupportedVersionsExtensionServer(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadTruncatedHmacExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadTrustedCAKeysExtensionClient(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadTrustedCAKeysExtensionServer(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlert::.ctor(System.Int16)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlert::.ctor(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlert::.ctor(System.Int16,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlert::.ctor(System.Int16,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlert::.ctor(System.Int16,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlert::.ctor(System.Int16,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlert::.ctor(System.Int16,System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlert::.ctor(System.Int16,System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlert::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlert::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsFatalAlert::get_AlertDescription()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlertReceived::.ctor(System.Int16)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlertReceived::.ctor(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlertReceived::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsFatalAlertReceived::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsFatalAlertReceived::get_AlertDescription()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsHandshakeHash::CopyBufferTo(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsHandshakeHash::ForceBuffering()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsHandshakeHash::NotifyPrfDetermined()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsHandshakeHash::TrackHashAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsHandshakeHash::SealHashAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsHandshakeHash::StopTracking()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash Org.BouncyCastle.Tls.TlsHandshakeHash::ForkPrfHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsHandshakeHash::GetFinalHash(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsHeartbeat::GeneratePayload()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsHeartbeat::get_IdleMillis()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsHeartbeat::get_TimeoutMillis()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsKeyExchange::Init(Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsKeyExchange::SkipServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsKeyExchange::ProcessServerCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsKeyExchange::ProcessServerCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsKeyExchange::get_RequiresServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsKeyExchange::GenerateServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsKeyExchange::SkipServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsKeyExchange::ProcessServerKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsKeyExchange::GetClientCertificateTypes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsKeyExchange::SkipClientCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsKeyExchange::ProcessClientCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsKeyExchange::ProcessClientCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsKeyExchange::GenerateClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsKeyExchange::ProcessClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsKeyExchange::get_RequiresCertificateVerify()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsKeyExchange::GeneratePreMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreateDHKeyExchange(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreateDHanonKeyExchangeClient(System.Int32,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreateDHanonKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreateDheKeyExchangeClient(System.Int32,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreateDheKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreateECDHKeyExchange(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreateECDHanonKeyExchangeClient(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreateECDHanonKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreateECDheKeyExchangeClient(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreateECDheKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreatePskKeyExchangeClient(System.Int32,Org.BouncyCastle.Tls.TlsPskIdentity,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreatePskKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.TlsPskIdentityManager,Org.BouncyCastle.Tls.Crypto.TlsDHConfig,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreateRsaKeyExchange(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreateSrpKeyExchangeClient(System.Int32,Org.BouncyCastle.Tls.TlsSrpIdentity,Org.BouncyCastle.Tls.TlsSrpConfigVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsKeyExchangeFactory::CreateSrpKeyExchangeServer(System.Int32,Org.BouncyCastle.Tls.TlsSrpLoginParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsNoCloseNotifyException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsNoCloseNotifyException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsNoCloseNotifyException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCrypto Org.BouncyCastle.Tls.TlsPeer::get_Crypto()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPeer::NotifyCloseHandle(Org.BouncyCastle.Tls.TlsCloseable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPeer::Cancel()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.TlsPeer::GetProtocolVersions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsPeer::GetCipherSuites()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPeer::NotifyHandshakeBeginning()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsPeer::GetHandshakeTimeoutMillis()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsPeer::AllowLegacyResumption()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsPeer::GetMaxCertificateChainLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsPeer::GetMaxHandshakeMessageSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsPeer::GetPskKeyExchangeModes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsPeer::RequiresCloseNotify()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsPeer::RequiresExtendedMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsPeer::ShouldUseExtendedMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsPeer::ShouldUseExtendedPadding()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsPeer::ShouldUseGmtUnixTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPeer::NotifySecureRenegotiation(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchangeFactory Org.BouncyCastle.Tls.TlsPeer::GetKeyExchangeFactory()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPeer::NotifyAlertRaised(System.Int16,System.Int16,System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPeer::NotifyAlertReceived(System.Int16,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPeer::NotifyHandshakeComplete()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsHeartbeat Org.BouncyCastle.Tls.TlsPeer::GetHeartbeat()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsPeer::GetHeartbeatPolicy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsPeer::get_IgnoreCorruptDtlsRecords()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::.ctor(System.IO.Stream,System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::.ctor(System.IO.Stream,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::ResumeHandshake()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.AbstractTlsContext Org.BouncyCastle.Tls.TlsProtocol::get_ContextAdmin()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::ProcessRecord(System.Int16,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsProtocol::get_ApplicationDataAvailable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsProtocol::ReadApplicationData(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::WriteApplicationData(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsProtocol::get_AppDataSplitMode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::set_AppDataSplitMode(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsProtocol::get_IsResumableHandshake()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::set_IsResumableHandshake(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::WriteHandshakeMessage(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Tls.TlsProtocol::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::CloseInput()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.RecordPreview Org.BouncyCastle.Tls.TlsProtocol::PreviewInputRecord(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsProtocol::PreviewOutputRecord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.RecordPreview Org.BouncyCastle.Tls.TlsProtocol::PreviewOutputRecord(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::OfferInput(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::OfferInput(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsProtocol::get_ApplicationDataLimit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsProtocol::GetAvailableInputBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsProtocol::ReadInput(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsProtocol::GetAvailableOutputBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsProtocol::ReadOutput(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::Close()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::Flush()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsProtocol::get_IsApplicationDataReady()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsProtocol::get_IsClosed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsProtocol::get_IsConnected()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsProtocol::get_IsHandshaking()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::AssertEmpty(System.IO.MemoryStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsProtocol::CreateRandomBlock(System.Boolean,Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsProtocol::CreateRenegotiationInfo(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::EstablishMasterSecret(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.TlsKeyExchange)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.TlsProtocol::ReadExtensions(System.IO.MemoryStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.TlsProtocol::ReadExtensionsData(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.TlsProtocol::ReadExtensionsData13(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.TlsProtocol::ReadExtensionsDataClientHello(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsProtocol::ReadSupplementalDataMessage(System.IO.MemoryStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::WriteExtensions(System.IO.Stream,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::WriteExtensions(System.IO.Stream,System.Collections.Generic.IDictionary`2,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsProtocol::WriteExtensionsData(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsProtocol::WriteExtensionsData(System.Collections.Generic.IDictionary`2,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::WriteExtensionsData(System.Collections.Generic.IDictionary`2,System.IO.MemoryStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::WriteExtensionsData(System.Collections.Generic.IDictionary`2,System.IO.MemoryStream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::WritePreSharedKeyExtension(System.IO.MemoryStream,System.Collections.Generic.IDictionary`2,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::WriteSelectedExtensions(System.IO.Stream,System.Collections.Generic.IDictionary`2,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::WriteSupplementalData(System.IO.Stream,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsPsk::get_Identity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsPsk::get_Key()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsPsk::get_PrfAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskIdentity::SkipIdentityHint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskIdentity::NotifyIdentityHint(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsPskIdentity::GetPskIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsPskIdentity::GetPsk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsPskIdentityManager::GetHint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsPskIdentityManager::GetPsk(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsPskIdentity,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsPskIdentity,Org.BouncyCastle.Tls.TlsDHGroupVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsPskIdentityManager,Org.BouncyCastle.Tls.Crypto.TlsDHConfig,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsPskIdentityManager,Org.BouncyCastle.Tls.Crypto.TlsDHConfig,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsPskIdentity,Org.BouncyCastle.Tls.TlsPskIdentityManager,Org.BouncyCastle.Tls.TlsDHGroupVerifier,Org.BouncyCastle.Tls.Crypto.TlsDHConfig,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::SkipServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::ProcessServerCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::ProcessServerCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsPskKeyExchange::GenerateServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsPskKeyExchange::get_RequiresServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::ProcessServerKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::ProcessClientCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::GenerateClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::ProcessClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsPskKeyExchange::GeneratePreMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsRsaKeyExchange::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsRsaKeyExchange::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsRsaKeyExchange::SkipServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsRsaKeyExchange::ProcessServerCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsRsaKeyExchange::ProcessServerCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsRsaKeyExchange::GetClientCertificateTypes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsRsaKeyExchange::ProcessClientCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsRsaKeyExchange::GenerateClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsRsaKeyExchange::ProcessClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsRsaKeyExchange::GeneratePreMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServer::Init(Org.BouncyCastle.Tls.TlsServerContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSession Org.BouncyCastle.Tls.TlsServer::GetSessionToResume(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsServer::GetNewSessionID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPskExternal Org.BouncyCastle.Tls.TlsServer::GetExternalPsk(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServer::NotifySession(Org.BouncyCastle.Tls.TlsSession)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServer::NotifyClientVersion(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServer::NotifyFallback(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServer::NotifyOfferedCipherSuites(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServer::ProcessClientExtensions(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.TlsServer::GetServerVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsServer::GetSupportedGroups()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsServer::GetSelectedCipherSuite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.TlsServer::GetServerExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServer::GetServerExtensionsForConnection(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsServer::GetServerSupplementalData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentials Org.BouncyCastle.Tls.TlsServer::GetCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatus Org.BouncyCastle.Tls.TlsServer::GetCertificateStatus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateRequest Org.BouncyCastle.Tls.TlsServer::GetCertificateRequest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPskIdentityManager Org.BouncyCastle.Tls.TlsServer::GetPskIdentityManager()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpLoginParameters Org.BouncyCastle.Tls.TlsServer::GetSrpLoginParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDHConfig Org.BouncyCastle.Tls.TlsServer::GetDHConfig()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsECConfig Org.BouncyCastle.Tls.TlsServer::GetECDHConfig()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServer::ProcessClientSupplementalData(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServer::NotifyClientCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.NewSessionTicket Org.BouncyCastle.Tls.TlsServer::GetNewSessionTicket()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.TlsServerCertificate::get_Certificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatus Org.BouncyCastle.Tls.TlsServerCertificate::get_CertificateStatus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerCertificateImpl::.ctor(Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Tls.CertificateStatus)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerCertificateImpl::.ctor(Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Tls.CertificateStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.TlsServerCertificateImpl::get_Certificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatus Org.BouncyCastle.Tls.TlsServerCertificateImpl::get_CertificateStatus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerContextImpl::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerContextImpl::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsServerContextImpl::get_IsServer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::.ctor(System.IO.Stream,System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::.ctor(System.IO.Stream,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::Accept(Org.BouncyCastle.Tls.TlsServer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.AbstractTlsContext Org.BouncyCastle.Tls.TlsServerProtocol::get_ContextAdmin()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters Org.BouncyCastle.Tls.TlsSession::ExportSessionParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsSession::get_SessionID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSession::Invalidate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsSession::get_IsResumable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSessionImpl::.ctor(System.Byte[],Org.BouncyCastle.Tls.SessionParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSessionImpl::.ctor(System.Byte[],Org.BouncyCastle.Tls.SessionParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters Org.BouncyCastle.Tls.TlsSessionImpl::ExportSessionParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsSessionImpl::get_SessionID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSessionImpl::Invalidate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsSessionImpl::get_IsResumable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsSrpConfigVerifier::Accept(Org.BouncyCastle.Tls.Crypto.TlsSrpConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsSrpIdentity::GetSrpIdentity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsSrpIdentity::GetSrpPassword()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpLoginParameters Org.BouncyCastle.Tls.TlsSrpIdentityManager::GetLoginParameters(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsSrpIdentity,Org.BouncyCastle.Tls.TlsSrpConfigVerifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsSrpIdentity,Org.BouncyCastle.Tls.TlsSrpConfigVerifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsSrpLoginParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpKeyExchange::.ctor(System.Int32,Org.BouncyCastle.Tls.TlsSrpLoginParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpKeyExchange::SkipServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpKeyExchange::ProcessServerCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpKeyExchange::ProcessServerCertificate(Org.BouncyCastle.Tls.Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsSrpKeyExchange::get_RequiresServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsSrpKeyExchange::GenerateServerKeyExchange()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpKeyExchange::ProcessServerKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpKeyExchange::ProcessClientCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpKeyExchange::GenerateClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpKeyExchange::ProcessClientKeyExchange(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsSrpKeyExchange::GeneratePreMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpLoginParameters::.ctor(System.Byte[],Org.BouncyCastle.Tls.Crypto.TlsSrpConfig,Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpLoginParameters::.ctor(System.Byte[],Org.BouncyCastle.Tls.Crypto.TlsSrpConfig,Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrpConfig Org.BouncyCastle.Tls.TlsSrpLoginParameters::get_Config()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsSrpLoginParameters::get_Identity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsSrpLoginParameters::get_Salt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.TlsSrpLoginParameters::get_Verifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpUtilities::AddSrpExtension(System.Collections.Generic.IDictionary`2,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsSrpUtilities::GetSrpExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsSrpUtilities::CreateSrpExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsSrpUtilities::ReadSrpExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.TlsSrpUtilities::ReadSrpParameter(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpUtilities::WriteSrpParameter(Org.BouncyCastle.Math.BigInteger,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsSrpUtilities::IsSrpCipherSuite(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrpUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrtpUtilities::AddUseSrtpExtension(System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Tls.UseSrtpData)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.UseSrtpData Org.BouncyCastle.Tls.TlsSrtpUtilities::GetUseSrtpExtension(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsSrtpUtilities::CreateUseSrtpExtension(Org.BouncyCastle.Tls.UseSrtpData)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.UseSrtpData Org.BouncyCastle.Tls.TlsSrtpUtilities::ReadUseSrtpExtension(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsSrtpUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsStream::.ctor(Org.BouncyCastle.Tls.TlsProtocol)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsStream::.ctor(Org.BouncyCastle.Tls.TlsProtocol)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsStream::get_CanRead()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsStream::get_CanSeek()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsStream::get_CanWrite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Tls.TlsStream::CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsStream::Flush()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsStream::get_Length()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsStream::get_Position()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsStream::set_Position(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsStream::Seek(System.Int64,System.IO.SeekOrigin)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsStream::SetLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsStream::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsTimeoutException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsTimeoutException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsTimeoutException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsTimeoutException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsTimeoutException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsTimeoutException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsTimeoutException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckUint8(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckUint8(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckUint8(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckUint16(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckUint16(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckUint24(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckUint24(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckUint32(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckUint48(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckUint64(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidUint8(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidUint8(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidUint8(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidUint16(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidUint16(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidUint24(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidUint24(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidUint32(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidUint48(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidUint64(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsSsl(Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsTlsV10(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsTlsV10(Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsTlsV11(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsTlsV11(Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsTlsV12(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsTlsV12(Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsTlsV13(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsTlsV13(Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint8(System.Int16,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint8(System.Int32,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint8(System.Int16,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint8(System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint16(System.Int32,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint16(System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint24(System.Int32,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint24(System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint32(System.Int64,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint32(System.Int64,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint48(System.Int64,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint48(System.Int64,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint64(System.Int64,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint64(System.Int64,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteOpaque8(System.Byte[],System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteOpaque8(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteOpaque16(System.Byte[],System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteOpaque16(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteOpaque24(System.Byte[],System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteOpaque24(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint8Array(System.Int16[],System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint8Array(System.Int16[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint8ArrayWithUint8Length(System.Int16[],System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint8ArrayWithUint8Length(System.Int16[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint16Array(System.Int32[],System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint16Array(System.Int32[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint16ArrayWithUint8Length(System.Int32[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint16ArrayWithUint16Length(System.Int32[],System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteUint16ArrayWithUint16Length(System.Int32[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::DecodeOpaque8(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::DecodeOpaque8(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::DecodeOpaque16(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::DecodeOpaque16(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::DecodeUint8(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsUtilities::DecodeUint8ArrayWithUint8Length(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::DecodeUint16(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsUtilities::DecodeUint16ArrayWithUint8Length(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsUtilities::DecodeUint32(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::EncodeOpaque8(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::EncodeOpaque16(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::EncodeOpaque24(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::EncodeUint8(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::EncodeUint8ArrayWithUint8Length(System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::EncodeUint16(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::EncodeUint16ArrayWithUint8Length(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::EncodeUint16ArrayWithUint16Length(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::EncodeUint24(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::EncodeUint32(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::EncodeVersion(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::ReadInt32(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::ReadUint8(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::ReadUint8(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::ReadUint16(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::ReadUint16(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::ReadUint24(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::ReadUint24(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsUtilities::ReadUint32(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsUtilities::ReadUint32(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsUtilities::ReadUint48(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsUtilities::ReadUint48(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::ReadAllOrNothing(System.Int32,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::ReadFully(System.Int32,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::ReadFully(System.Byte[],System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::ReadOpaque8(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::ReadOpaque8(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::ReadOpaque8(System.IO.Stream,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::ReadOpaque16(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::ReadOpaque16(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::ReadOpaque24(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::ReadOpaque24(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsUtilities::ReadUint8Array(System.Int32,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsUtilities::ReadUint8ArrayWithUint8Length(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsUtilities::ReadUint16Array(System.Int32,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.TlsUtilities::ReadVersion(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.TlsUtilities::ReadVersion(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Tls.TlsUtilities::ReadAsn1Object(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::RequireDerEncoding(Org.BouncyCastle.Asn1.Asn1Encodable,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteGmtUnixTime(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteVersion(Org.BouncyCastle.Tls.ProtocolVersion,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteVersion(Org.BouncyCastle.Tls.ProtocolVersion,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::AddIfSupported(System.Collections.Generic.IList`1,Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::AddIfSupported(System.Collections.Generic.IList`1,Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::AddIfSupported(System.Collections.Generic.IList`1,Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::AddToSet(System.Collections.Generic.IList`1,T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::GetDefaultDssSignatureAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::GetDefaultECDsaSignatureAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::GetDefaultRsaSignatureAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.TlsUtilities::GetDefaultSignatureAlgorithm(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::GetDefaultSignatureAlgorithms(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::GetDefaultSupportedSignatureAlgorithms(Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::GetSupportedSignatureAlgorithms(Org.BouncyCastle.Tls.TlsContext,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.TlsUtilities::GetSignatureAndHashAlgorithm(Org.BouncyCastle.Tls.ProtocolVersion,Org.BouncyCastle.Tls.TlsCredentialedSigner)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::GetExtensionData(System.Collections.Generic.IDictionary`2,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::HasExpectedEmptyExtensionData(System.Collections.Generic.IDictionary`2,System.Int32,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSession Org.BouncyCastle.Tls.TlsUtilities::ImportSession(System.Byte[],Org.BouncyCastle.Tls.SessionParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsExtendedMasterSecretOptional(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsExtendedMasterSecretOptional(Org.BouncyCastle.Tls.ProtocolVersion[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsNullOrContainsNull(System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsNullOrEmpty(T[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsNullOrEmpty(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsNullOrEmpty(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsSignatureAlgorithmsExtensionAllowed(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::GetLegacyClientCertType(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::GetLegacySignatureAlgorithmClient(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::GetLegacySignatureAlgorithmClientCert(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::GetLegacySignatureAlgorithmServer(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::GetLegacySignatureAlgorithmServerCert(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::GetLegacySupportedSignatureAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::EncodeSupportedSignatureAlgorithms(System.Collections.Generic.IList`1,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::ParseSupportedSignatureAlgorithms(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::VerifySupportedSignatureAlgorithm(System.Collections.Generic.IList`1,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::VerifySupportedSignatureAlgorithm(System.Collections.Generic.IList`1,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::ContainsSignatureAlgorithm(System.Collections.Generic.IList`1,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::ContainsAnySignatureAlgorithm(System.Collections.Generic.IList`1,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsUtilities::Prf(Org.BouncyCastle.Tls.SecurityParameters,Org.BouncyCastle.Tls.Crypto.TlsSecret,System.String,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::Clone(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String[] Org.BouncyCastle.Tls.TlsUtilities::Clone(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::ConstantTimeAreEqual(System.Int32,System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::CopyOfRangeExact(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::Concat(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::CalculateEndPointHash(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.Crypto.TlsCertificate,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::CalculateEndPointHash(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.Crypto.TlsCertificate,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::CalculateExporterSeed(Org.BouncyCastle.Tls.SecurityParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsUtilities::CalculateMasterSecret(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::CalculatePskBinder(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Boolean,System.Int32,Org.BouncyCastle.Tls.Crypto.TlsSecret,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::CalculateVerifyData(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.TlsHandshakeHash,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::Establish13PhaseSecrets(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.Crypto.TlsSecret,Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::Establish13PhaseApplication(Org.BouncyCastle.Tls.TlsContext,System.Byte[],Org.BouncyCastle.Tls.RecordStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::Establish13PhaseEarly(Org.BouncyCastle.Tls.TlsContext,System.Byte[],Org.BouncyCastle.Tls.RecordStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::Establish13PhaseHandshake(Org.BouncyCastle.Tls.TlsContext,System.Byte[],Org.BouncyCastle.Tls.RecordStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::Update13TrafficSecretLocal(Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::Update13TrafficSecretPeer(Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Tls.TlsUtilities::GetOidForHashAlgorithm(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::GetPrfAlgorithm(Org.BouncyCastle.Tls.SecurityParameters,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::GetPrfAlgorithm13(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsUtilities::GetPrfAlgorithms13(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::CalculateSignatureHash(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm,System.Byte[],Org.BouncyCastle.Tls.DigestInputBuffer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::SendSignatureInput(Org.BouncyCastle.Tls.TlsContext,System.Byte[],Org.BouncyCastle.Tls.DigestInputBuffer,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DigitallySigned Org.BouncyCastle.Tls.TlsUtilities::GenerateCertificateVerifyClient(Org.BouncyCastle.Tls.TlsClientContext,Org.BouncyCastle.Tls.TlsCredentialedSigner,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm,Org.BouncyCastle.Tls.Crypto.TlsStreamSigner,Org.BouncyCastle.Tls.TlsHandshakeHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DigitallySigned Org.BouncyCastle.Tls.TlsUtilities::Generate13CertificateVerify(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.TlsCredentialedSigner,Org.BouncyCastle.Tls.TlsHandshakeHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::VerifyCertificateVerifyClient(Org.BouncyCastle.Tls.TlsServerContext,Org.BouncyCastle.Tls.CertificateRequest,Org.BouncyCastle.Tls.DigitallySigned,Org.BouncyCastle.Tls.TlsHandshakeHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::Verify13CertificateVerifyClient(Org.BouncyCastle.Tls.TlsServerContext,Org.BouncyCastle.Tls.TlsHandshakeHash,Org.BouncyCastle.Tls.CertificateVerify)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::Verify13CertificateVerifyServer(Org.BouncyCastle.Tls.TlsClientContext,Org.BouncyCastle.Tls.TlsHandshakeHash,Org.BouncyCastle.Tls.CertificateVerify)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::GenerateServerKeyExchangeSignature(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.TlsCredentialedSigner,System.Byte[],Org.BouncyCastle.Tls.DigestInputBuffer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::VerifyServerKeyExchangeSignature(Org.BouncyCastle.Tls.TlsContext,System.IO.Stream,Org.BouncyCastle.Tls.Crypto.TlsCertificate,System.Byte[],Org.BouncyCastle.Tls.DigestInputBuffer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::TrackHashAlgorithmClient(Org.BouncyCastle.Tls.TlsHandshakeHash,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::TrackHashAlgorithms(Org.BouncyCastle.Tls.TlsHandshakeHash,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::HasSigningCapability(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::VectorOfOne(T)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::GetCipherType(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::GetEncryptionAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::GetEncryptionAlgorithmType(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::GetKeyExchangeAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::GetKeyExchangeAlgorithms(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::GetMacAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.TlsUtilities::GetMinimumVersion(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::GetNamedGroupRoles(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::GetNamedGroupRoles(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsAeadCipherSuite(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsBlockCipherSuite(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsStreamCipherSuite(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidCipherSuiteForSignatureAlgorithms(System.Int32,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidCipherSuiteSelection(System.Int32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidKeyShareSelection(Org.BouncyCastle.Tls.ProtocolVersion,System.Int32[],System.Collections.Generic.IDictionary`2,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidSignatureAlgorithmForServerKeyExchange(System.Int16,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidSignatureSchemeForServerKeyExchange(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsValidVersionForCipherSuite(System.Int32,Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.TlsUtilities::ChooseSignatureAndHashAlgorithm(Org.BouncyCastle.Tls.TlsContext,System.Collections.Generic.IList`1,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.TlsUtilities::ChooseSignatureAndHashAlgorithm(Org.BouncyCastle.Tls.ProtocolVersion,System.Collections.Generic.IList`1,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::GetUsableSignatureAlgorithms(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::GetCommonCipherSuite13(Org.BouncyCastle.Tls.ProtocolVersion,System.Int32[],System.Int32[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsUtilities::GetCommonCipherSuites(System.Int32[],System.Int32[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsUtilities::GetSupportedCipherSuites(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsUtilities::GetSupportedCipherSuites(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Int32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsSupportedCipherSuite(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsSupportedKeyExchange(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::HasAnyRsaSigAlgs(Org.BouncyCastle.Tls.Crypto.TlsCrypto)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::GetCurrentPrfHash(Org.BouncyCastle.Tls.TlsHandshakeHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsUtilities::InitKeyExchangeClient(Org.BouncyCastle.Tls.TlsClientContext,Org.BouncyCastle.Tls.TlsClient)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsUtilities::InitKeyExchangeServer(Org.BouncyCastle.Tls.TlsServerContext,Org.BouncyCastle.Tls.TlsServer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCipher Org.BouncyCastle.Tls.TlsUtilities::InitCipher(Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckPeerSigAlgs(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.Crypto.TlsCertificate[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckTlsFeatures(Org.BouncyCastle.Tls.Certificate,System.Collections.Generic.IDictionary`2,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::ProcessClientCertificate(Org.BouncyCastle.Tls.TlsServerContext,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Tls.TlsKeyExchange,Org.BouncyCastle.Tls.TlsServer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::ProcessServerCertificate(Org.BouncyCastle.Tls.TlsClientContext,Org.BouncyCastle.Tls.CertificateStatus,Org.BouncyCastle.Tls.TlsKeyExchange,Org.BouncyCastle.Tls.TlsAuthentication,System.Collections.Generic.IDictionary`2,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.TlsUtilities::GetCertSigAndHashAlg(Org.BouncyCastle.Tls.Crypto.TlsCertificate,Org.BouncyCastle.Tls.Crypto.TlsCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateRequest Org.BouncyCastle.Tls.TlsUtilities::ValidateCertificateRequest(Org.BouncyCastle.Tls.CertificateRequest,Org.BouncyCastle.Tls.TlsKeyExchange)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateRequest Org.BouncyCastle.Tls.TlsUtilities::NormalizeCertificateRequest(Org.BouncyCastle.Tls.CertificateRequest,System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::Contains(System.Int32[],System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::ContainsAll(System.Int16[],System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::ContainsNot(System.Int16[],System.Int32,System.Int32,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsUtilities::RetainAll(System.Int16[],System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsUtilities::Truncate(System.Int16[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsUtilities::Truncate(System.Int32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedAgreement Org.BouncyCastle.Tls.TlsUtilities::RequireAgreementCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedDecryptor Org.BouncyCastle.Tls.TlsUtilities::RequireDecryptorCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedSigner Org.BouncyCastle.Tls.TlsUtilities::RequireSignerCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckDowngradeMarker(Org.BouncyCastle.Tls.ProtocolVersion,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteDowngradeMarker(Org.BouncyCastle.Tls.ProtocolVersion,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsAuthentication Org.BouncyCastle.Tls.TlsUtilities::ReceiveServerCertificate(Org.BouncyCastle.Tls.TlsClientContext,Org.BouncyCastle.Tls.TlsClient,System.IO.MemoryStream,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsAuthentication Org.BouncyCastle.Tls.TlsUtilities::Receive13ServerCertificate(Org.BouncyCastle.Tls.TlsClientContext,Org.BouncyCastle.Tls.TlsClient,System.IO.MemoryStream,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsAuthentication Org.BouncyCastle.Tls.TlsUtilities::Skip13ServerCertificate(Org.BouncyCastle.Tls.TlsClientContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::ContainsNonAscii(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::ContainsNonAscii(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.TlsUtilities::AddKeyShareToClientHello(Org.BouncyCastle.Tls.TlsClientContext,Org.BouncyCastle.Tls.TlsClient,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.TlsUtilities::AddKeyShareToClientHelloRetry(Org.BouncyCastle.Tls.TlsClientContext,System.Collections.Generic.IDictionary`2,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.KeyShareEntry Org.BouncyCastle.Tls.TlsUtilities::SelectKeyShare(System.Collections.Generic.IList`1,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.KeyShareEntry Org.BouncyCastle.Tls.TlsUtilities::SelectKeyShare(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.ProtocolVersion,System.Collections.Generic.IList`1,System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::SelectKeyShareGroup(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.ProtocolVersion,System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::ReadEncryptedPms(Org.BouncyCastle.Tls.TlsContext,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::WriteEncryptedPms(Org.BouncyCastle.Tls.TlsContext,System.Byte[],System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::GetSessionID(Org.BouncyCastle.Tls.TlsSession)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::AdjustTranscriptForRetry(Org.BouncyCastle.Tls.TlsHandshakeHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentials Org.BouncyCastle.Tls.TlsUtilities::EstablishClientCredentials(Org.BouncyCastle.Tls.TlsAuthentication,Org.BouncyCastle.Tls.CertificateRequest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedSigner Org.BouncyCastle.Tls.TlsUtilities::Establish13ClientCredentials(Org.BouncyCastle.Tls.TlsAuthentication,Org.BouncyCastle.Tls.CertificateRequest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::EstablishClientSigAlgs(Org.BouncyCastle.Tls.SecurityParameters,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentials Org.BouncyCastle.Tls.TlsUtilities::EstablishServerCredentials(Org.BouncyCastle.Tls.TlsServer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedSigner Org.BouncyCastle.Tls.TlsUtilities::Establish13ServerCredentials(Org.BouncyCastle.Tls.TlsServer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::EstablishServerSigAlgs(Org.BouncyCastle.Tls.SecurityParameters,Org.BouncyCastle.Tls.CertificateRequest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentials Org.BouncyCastle.Tls.TlsUtilities::ValidateCredentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedSigner Org.BouncyCastle.Tls.TlsUtilities::Validate13Credentials(Org.BouncyCastle.Tls.TlsCredentials)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::NegotiatedCipherSuite(Org.BouncyCastle.Tls.SecurityParameters,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::NegotiatedVersion(Org.BouncyCastle.Tls.SecurityParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::NegotiatedVersionDtlsClient(Org.BouncyCastle.Tls.TlsClientContext,Org.BouncyCastle.Tls.TlsClient)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::NegotiatedVersionDtlsServer(Org.BouncyCastle.Tls.TlsServerContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::NegotiatedVersionTlsClient(Org.BouncyCastle.Tls.TlsClientContext,Org.BouncyCastle.Tls.TlsClient)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::NegotiatedVersionTlsServer(Org.BouncyCastle.Tls.TlsServerContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsUtilities::DeriveSecret(Org.BouncyCastle.Tls.SecurityParameters,Org.BouncyCastle.Tls.Crypto.TlsSecret,System.String,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsUtilities::DeriveSecret(System.Int32,System.Int32,Org.BouncyCastle.Tls.Crypto.TlsSecret,System.String,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsUtilities::GetSessionMasterSecret(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsPermittedExtensionType13(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckExtensionData13(System.Collections.Generic.IDictionary`2,System.Int32,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsUtilities::GenerateEncryptedPreMasterSecret(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.Crypto.TlsEncryptor,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::IsTimeout(System.Net.Sockets.SocketException)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::AddPreSharedKeyToClientExtensions(Org.BouncyCastle.Tls.TlsPsk[],System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.OfferedPsks/BindersConfig Org.BouncyCastle.Tls.TlsUtilities::AddPreSharedKeyToClientHello(Org.BouncyCastle.Tls.TlsClientContext,Org.BouncyCastle.Tls.TlsClient,System.Collections.Generic.IDictionary`2,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.OfferedPsks/BindersConfig Org.BouncyCastle.Tls.TlsUtilities::AddPreSharedKeyToClientHelloRetry(Org.BouncyCastle.Tls.TlsClientContext,Org.BouncyCastle.Tls.OfferedPsks/BindersConfig,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.OfferedPsks/SelectedConfig Org.BouncyCastle.Tls.TlsUtilities::SelectPreSharedKey(Org.BouncyCastle.Tls.TlsServerContext,Org.BouncyCastle.Tls.TlsServer,System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Tls.HandshakeMessageInput,Org.BouncyCastle.Tls.TlsHandshakeHash,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsUtilities::GetPskEarlySecret(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.TlsPsk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret[] Org.BouncyCastle.Tls.TlsUtilities::GetPskEarlySecrets(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.TlsPsk[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPskExternal[] Org.BouncyCastle.Tls.TlsUtilities::GetPskExternalsClient(Org.BouncyCastle.Tls.TlsClient,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::GetPskIndices(Org.BouncyCastle.Tls.TlsPsk[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::ProcessMaxFragmentLengthExtension(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IDictionary`2,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::ProcessClientCertificateTypeExtension(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IDictionary`2,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::ProcessClientCertificateTypeExtension13(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IDictionary`2,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::ProcessServerCertificateTypeExtension(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IDictionary`2,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::ProcessServerCertificateTypeExtension13(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IDictionary`2,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsUtilities::GetHandshakeResendTimeMillis(Org.BouncyCastle.Tls.TlsPeer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::NotifyConnectionClosed(Org.BouncyCastle.Tls.TlsPeer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsUtilities::ShouldUseCompatibilityMode(Org.BouncyCastle.Tls.TlsClient)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TrustedAuthority::.ctor(System.Int16,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TrustedAuthority::.ctor(System.Int16,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TrustedAuthority::get_IdentifierType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Tls.TrustedAuthority::get_Identifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TrustedAuthority::GetCertSha1Hash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TrustedAuthority::GetKeySha1Hash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Tls.TrustedAuthority::get_X509Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TrustedAuthority::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TrustedAuthority Org.BouncyCastle.Tls.TrustedAuthority::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.UrlAndHash::.ctor(System.String,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.UrlAndHash::.ctor(System.String,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.UrlAndHash::get_Url()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.UrlAndHash::get_Sha1Hash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.UrlAndHash::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.UrlAndHash Org.BouncyCastle.Tls.UrlAndHash::Parse(Org.BouncyCastle.Tls.TlsContext,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.UserMappingType::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.UseSrtpData::.ctor(System.Int32[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.UseSrtpData::.ctor(System.Int32[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.UseSrtpData::get_ProtectionProfiles()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.UseSrtpData::get_Mki()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.CryptoHashAlgorithm::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.DHGroup::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.DHGroup::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.DHGroup::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.DHGroup::get_L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.DHGroup::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.DHGroup::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.DHStandardGroups::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.DHStandardGroups::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.DHStandardGroups::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCipherExt::GetPlaintextDecodeLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCipherExt::GetPlaintextEncodeLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Srp6Group::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Srp6Group::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.Srp6Group::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.Srp6Group::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Srp6StandardGroups::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Srp6StandardGroups::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Srp6StandardGroups::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Tls.Crypto.Tls13Verifier::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Tls13Verifier::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsAgreement::GenerateEphemeral()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsAgreement::ReceivePeerValue(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.TlsAgreement::CalculateSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsEncryptor Org.BouncyCastle.Tls.Crypto.TlsCertificate::CreateEncryptor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsVerifier Org.BouncyCastle.Tls.Crypto.TlsCertificate::CreateVerifier(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Tls13Verifier Org.BouncyCastle.Tls.Crypto.TlsCertificate::CreateVerifier(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsCertificate::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsCertificate::GetExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.TlsCertificate::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.Crypto.TlsCertificate::get_SigAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Tls.Crypto.TlsCertificate::GetSigAlgParams()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.Crypto.TlsCertificate::GetLegacySignatureAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCertificate::SupportsSignatureAlgorithm(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCertificate::SupportsSignatureAlgorithmCA(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCertificate Org.BouncyCastle.Tls.Crypto.TlsCertificate::CheckUsageInRole(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCertificateRole::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCipher::GetCiphertextDecodeLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCipher::GetCiphertextEncodeLimit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCipher::GetPlaintextLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsEncodeResult Org.BouncyCastle.Tls.Crypto.TlsCipher::EncodePlaintext(System.Int64,System.Int16,Org.BouncyCastle.Tls.ProtocolVersion,System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDecodeResult Org.BouncyCastle.Tls.Crypto.TlsCipher::DecodeCiphertext(System.Int64,System.Int16,Org.BouncyCastle.Tls.ProtocolVersion,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCipher::RekeyDecoder()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCipher::RekeyEncoder()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCipher::get_UsesOpaqueRecordType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasAnyStreamVerifiers(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasAnyStreamVerifiersLegacy(System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasCryptoHashAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasCryptoSignatureAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasDHAgreement()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasECDHAgreement()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasEncryptionAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasHkdfAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasKemAgreement()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasMacAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasNamedGroup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasRsaEncryption()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasSignatureAlgorithm(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasSignatureAndHashAlgorithm(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasSignatureScheme(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCrypto::HasSrpAuthentication()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.TlsCrypto::GenerateRsaPreMasterSecret(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Tls.Crypto.TlsCrypto::get_SecureRandom()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCertificate Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateCertificate(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCertificate Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateCertificate(System.Int16,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCipher Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateCipher(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDHDomain Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateDHDomain(Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsECDomain Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateECDomain(Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsKemDomain Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateKemDomain(Org.BouncyCastle.Tls.Crypto.TlsKemConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.TlsCrypto::AdoptSecret(Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateHash(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHmac Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateHmac(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHmac Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateHmacForHash(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsNonceGenerator Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateNonceGenerator(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrp6Client Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateSrp6Client(Org.BouncyCastle.Tls.Crypto.TlsSrpConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrp6Server Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateSrp6Server(Org.BouncyCastle.Tls.Crypto.TlsSrpConfig,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrp6VerifierGenerator Org.BouncyCastle.Tls.Crypto.TlsCrypto::CreateSrp6VerifierGenerator(Org.BouncyCastle.Tls.Crypto.TlsSrpConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.TlsCrypto::HkdfInit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCryptoException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCryptoException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCryptoException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCryptoException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCryptoException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCryptoException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCryptoException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters::.ctor(Org.BouncyCastle.Tls.TlsContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters::.ctor(Org.BouncyCastle.Tls.TlsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SecurityParameters Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters::get_SecurityParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters::get_ClientVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters::get_RsaPreMasterSecretVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters::get_ServerVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters::get_IsServer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsNonceGenerator Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters::get_NonceGenerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCryptoUtilities::GetHash(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCryptoUtilities::GetHashForHmac(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCryptoUtilities::GetHashForPrf(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCryptoUtilities::GetHashInternalSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCryptoUtilities::GetHashOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Tls.Crypto.TlsCryptoUtilities::GetOidForHash(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCryptoUtilities::GetSignature(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.TlsCryptoUtilities::HkdfExpandLabel(Org.BouncyCastle.Tls.Crypto.TlsSecret,System.Int32,System.String,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCryptoUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsCryptoUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsDecodeResult::.ctor(System.Byte[],System.Int32,System.Int32,System.Int16)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsDecodeResult::.ctor(System.Byte[],System.Int32,System.Int32,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsDHConfig::.ctor(Org.BouncyCastle.Tls.Crypto.DHGroup)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsDHConfig::.ctor(Org.BouncyCastle.Tls.Crypto.DHGroup)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsDHConfig::.ctor(System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsDHConfig::.ctor(System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.TlsDHConfig::get_ExplicitGroup()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsDHConfig::get_NamedGroup()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsDHConfig::get_IsPadded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsAgreement Org.BouncyCastle.Tls.Crypto.TlsDHDomain::CreateDH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsECConfig::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsECConfig::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsECConfig::get_NamedGroup()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsAgreement Org.BouncyCastle.Tls.Crypto.TlsECDomain::CreateECDH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsEncodeResult::.ctor(System.Byte[],System.Int32,System.Int32,System.Int16)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsEncodeResult::.ctor(System.Byte[],System.Int32,System.Int32,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsEncryptor::Encrypt(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsHash::Update(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsHash::CalculateHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash Org.BouncyCastle.Tls.Crypto.TlsHash::CloneHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsHash::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsHashSink::.ctor(Org.BouncyCastle.Tls.Crypto.TlsHash)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsHashSink::.ctor(Org.BouncyCastle.Tls.Crypto.TlsHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash Org.BouncyCastle.Tls.Crypto.TlsHashSink::get_Hash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsHashSink::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsHashSink::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsHmac::get_InternalBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsKemConfig::.ctor(System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsKemConfig::.ctor(System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsKemConfig::get_NamedGroup()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsKemConfig::get_IsServer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsAgreement Org.BouncyCastle.Tls.Crypto.TlsKemDomain::CreateKem()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsMac::SetKey(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsMac::Update(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsMac::CalculateMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsMac::CalculateMac(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsMac::get_MacLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsMac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsMacSink::.ctor(Org.BouncyCastle.Tls.Crypto.TlsMac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsMacSink::.ctor(Org.BouncyCastle.Tls.Crypto.TlsMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsMac Org.BouncyCastle.Tls.Crypto.TlsMacSink::get_Mac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsMacSink::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsMacSink::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsNonceGenerator::GenerateNonce(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher::GetCiphertextDecodeLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher::GetCiphertextEncodeLimit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher::GetPlaintextLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsEncodeResult Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher::EncodePlaintext(System.Int64,System.Int16,Org.BouncyCastle.Tls.ProtocolVersion,System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDecodeResult Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher::DecodeCiphertext(System.Int64,System.Int16,Org.BouncyCastle.Tls.ProtocolVersion,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher::RekeyDecoder()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher::RekeyEncoder()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher::get_UsesOpaqueRecordType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsSecret::CalculateHmac(System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.TlsSecret::DeriveUsingPrf(System.Int32,System.String,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsSecret::Destroy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsSecret::Encrypt(Org.BouncyCastle.Tls.Crypto.TlsEncryptor)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsSecret::Extract()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.TlsSecret::HkdfExpand(System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.TlsSecret::HkdfExtract(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsSecret::IsAlive()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsSecret::get_Length()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsSigner::GenerateRawSignature(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsStreamSigner Org.BouncyCastle.Tls.Crypto.TlsSigner::GetStreamSigner(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.TlsSrp6Client::CalculateSecret(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.TlsSrp6Client::GenerateClientCredentials(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.TlsSrp6Server::GenerateServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.TlsSrp6Server::CalculateSecret(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.TlsSrp6VerifierGenerator::GenerateVerifier(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Tls.Crypto.TlsSrpConfig::GetExplicitNG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsSrpConfig::SetExplicitNG(Org.BouncyCastle.Math.BigInteger[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsSrpConfig::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.TlsSrpConfig::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Tls.Crypto.TlsStreamSigner::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsStreamSigner::GetSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Tls.Crypto.TlsStreamVerifier::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsStreamVerifier::IsVerified()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsStreamVerifier Org.BouncyCastle.Tls.Crypto.TlsVerifier::GetStreamVerifier(Org.BouncyCastle.Tls.DigitallySigned)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.TlsVerifier::VerifyRawSignature(Org.BouncyCastle.Tls.DigitallySigned,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasAnyStreamVerifiers(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasAnyStreamVerifiersLegacy(System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasCryptoHashAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasCryptoSignatureAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasDHAgreement()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasECDHAgreement()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasEncryptionAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasHkdfAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasKemAgreement()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasMacAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasNamedGroup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasRsaEncryption()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasSignatureAlgorithm(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasSignatureAndHashAlgorithm(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasSignatureScheme(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HasSrpAuthentication()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::GenerateRsaPreMasterSecret(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::get_SecureRandom()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCertificate Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateCertificate(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCertificate Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateCertificate(System.Int16,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCipher Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateCipher(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDHDomain Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateDHDomain(Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsECDomain Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateECDomain(Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsKemDomain Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateKemDomain(Org.BouncyCastle.Tls.Crypto.TlsKemConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::AdoptSecret(Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateHash(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHmac Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateHmac(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHmac Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateHmacForHash(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsNonceGenerator Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateNonceGenerator(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrp6Client Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateSrp6Client(Org.BouncyCastle.Tls.Crypto.TlsSrpConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrp6Server Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateSrp6Server(Org.BouncyCastle.Tls.Crypto.TlsSrpConfig,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrp6VerifierGenerator Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::CreateSrp6VerifierGenerator(Org.BouncyCastle.Tls.Crypto.TlsSrpConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::HkdfInit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::CalculateHmac(System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::DeriveUsingPrf(System.Int32,System.String,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::Destroy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::Encrypt(Org.BouncyCastle.Tls.Crypto.TlsEncryptor)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::Extract()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::HkdfExpand(System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::HkdfExtract(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::IsAlive()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::get_Length()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::CopyData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.LegacyTls13Verifier/TlsStreamVerifierImpl::.ctor(Org.BouncyCastle.Tls.Crypto.Tls13Verifier,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.LegacyTls13Verifier/TlsStreamVerifierImpl::.ctor(Org.BouncyCastle.Tls.Crypto.Tls13Verifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Tls.Crypto.Impl.LegacyTls13Verifier/TlsStreamVerifierImpl::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.LegacyTls13Verifier/TlsStreamVerifierImpl::IsVerified()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.LegacyTls13Verifier::.ctor(System.Int32,Org.BouncyCastle.Tls.Crypto.Tls13Verifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.LegacyTls13Verifier::.ctor(System.Int32,Org.BouncyCastle.Tls.Crypto.Tls13Verifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsStreamVerifier Org.BouncyCastle.Tls.Crypto.Impl.LegacyTls13Verifier::GetStreamVerifier(Org.BouncyCastle.Tls.DigitallySigned)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.LegacyTls13Verifier::VerifyRawSignature(Org.BouncyCastle.Tls.DigitallySigned,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Tls.Crypto.Impl.PqcUtilities::GetMLDsaObjectidentifier(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.PqcUtilities::GetMLDsaSignatureScheme(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.PqcUtilities::SupportsMLDsa(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.RsaUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.RsaUtilities::SupportsPkcs1(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.RsaUtilities::SupportsPss_Pss(System.Int16,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.RsaUtilities::SupportsPss_Rsae(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.RsaUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipherImpl,Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipherImpl,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipherImpl,Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipherImpl,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::GetCiphertextDecodeLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::GetCiphertextEncodeLimit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::GetPlaintextLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::GetPlaintextDecodeLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::GetPlaintextEncodeLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsEncodeResult Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::EncodePlaintext(System.Int64,System.Int16,Org.BouncyCastle.Tls.ProtocolVersion,System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDecodeResult Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::DecodeCiphertext(System.Int64,System.Int16,Org.BouncyCastle.Tls.ProtocolVersion,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::RekeyDecoder()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::RekeyEncoder()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::get_UsesOpaqueRecordType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipherImpl::SetKey(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipherImpl::Init(System.Byte[],System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipherImpl::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipherImpl::DoFinal(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipherImpl::DoFinal(System.Byte[],System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipherImpl::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipherImpl,Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipherImpl,Org.BouncyCastle.Tls.Crypto.TlsHmac,Org.BouncyCastle.Tls.Crypto.TlsHmac,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipherImpl,Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipherImpl,Org.BouncyCastle.Tls.Crypto.TlsHmac,Org.BouncyCastle.Tls.Crypto.TlsHmac,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::GetCiphertextDecodeLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::GetCiphertextEncodeLimit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::GetPlaintextLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::GetPlaintextDecodeLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::GetPlaintextEncodeLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsEncodeResult Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::EncodePlaintext(System.Int64,System.Int16,Org.BouncyCastle.Tls.ProtocolVersion,System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDecodeResult Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::DecodeCiphertext(System.Int64,System.Int16,Org.BouncyCastle.Tls.ProtocolVersion,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::RekeyDecoder()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::RekeyEncoder()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::get_UsesOpaqueRecordType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipherImpl::SetKey(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipherImpl::Init(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipherImpl::DoFinal(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipherImpl::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.TlsImplUtilities::IsSsl(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.TlsImplUtilities::IsTlsV10(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.TlsImplUtilities::IsTlsV10(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.TlsImplUtilities::IsTlsV11(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.TlsImplUtilities::IsTlsV11(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.TlsImplUtilities::IsTlsV12(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.TlsImplUtilities::IsTlsV12(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.TlsImplUtilities::IsTlsV13(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.TlsImplUtilities::IsTlsV13(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.TlsImplUtilities::CalculateKeyBlock(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsImplUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Tls.Crypto.TlsHmac,Org.BouncyCastle.Tls.Crypto.TlsHmac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Tls.Crypto.TlsHmac,Org.BouncyCastle.Tls.Crypto.TlsHmac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher::GetCiphertextDecodeLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher::GetCiphertextEncodeLimit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher::GetPlaintextLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher::GetPlaintextDecodeLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher::GetPlaintextEncodeLimit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsEncodeResult Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher::EncodePlaintext(System.Int64,System.Int16,Org.BouncyCastle.Tls.ProtocolVersion,System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDecodeResult Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher::DecodeCiphertext(System.Int64,System.Int16,Org.BouncyCastle.Tls.ProtocolVersion,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher::RekeyDecoder()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher::RekeyEncoder()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher::get_UsesOpaqueRecordType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteHmac::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Tls.Crypto.TlsHmac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteHmac::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Tls.Crypto.TlsHmac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteHmac::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteHmac::CalculateMac(System.Int64,System.Int16,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteHmac::CalculateMac(System.Int64,System.Int16,System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteHmac::CalculateMacConstantTime(System.Int64,System.Int16,System.Byte[],System.Int32,System.Int32,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteHmac::CalculateMacConstantTime(System.Int64,System.Int16,System.Byte[],System.Byte[],System.Int32,System.Int32,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteMac::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteMac::CalculateMac(System.Int64,System.Int16,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteMac::CalculateMacConstantTime(System.Int64,System.Int16,System.Byte[],System.Int32,System.Int32,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcChaCha20Poly1305::.ctor(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcChaCha20Poly1305::.ctor(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcChaCha20Poly1305::DoFinal(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcChaCha20Poly1305::DoFinal(System.Byte[],System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcChaCha20Poly1305::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcChaCha20Poly1305::Init(System.Byte[],System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcChaCha20Poly1305::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcChaCha20Poly1305::SetKey(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcChaCha20Poly1305::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement/DHCredentialedAgreement::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement/DHCredentialedAgreement::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement/DHCredentialedAgreement::GenerateAgreement(Org.BouncyCastle.Tls.Crypto.TlsCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement/DHCredentialedAgreement::get_Certificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement/ECCredentialedAgreement::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement/ECCredentialedAgreement::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement/ECCredentialedAgreement::GenerateAgreement(Org.BouncyCastle.Tls.Crypto.TlsCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement/ECCredentialedAgreement::get_Certificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement::get_Certificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement::GenerateAgreement(Org.BouncyCastle.Tls.Crypto.TlsCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedDecryptor::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedDecryptor::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedDecryptor::get_Certificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedDecryptor::Decrypt(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedSigner::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedSigner::.ctor(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcSsl3Hmac::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcSsl3Hmac::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcSsl3Hmac::SetKey(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcSsl3Hmac::Update(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcSsl3Hmac::CalculateMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcSsl3Hmac::CalculateMac(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcSsl3Hmac::get_InternalBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcSsl3Hmac::get_MacLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcSsl3Hmac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcSsl3Hmac::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTls13Verifier::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTls13Verifier::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTls13Verifier::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTls13Verifier::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsAeadCipherImpl::.ctor(Org.BouncyCastle.Crypto.Modes.IAeadCipher,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsAeadCipherImpl::.ctor(Org.BouncyCastle.Crypto.Modes.IAeadCipher,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsAeadCipherImpl::SetKey(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsAeadCipherImpl::Init(System.Byte[],System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsAeadCipherImpl::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsAeadCipherImpl::DoFinal(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsAeadCipherImpl::DoFinal(System.Byte[],System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsAeadCipherImpl::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsBlockCipherImpl::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsBlockCipherImpl::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsBlockCipherImpl::SetKey(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsBlockCipherImpl::Init(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsBlockCipherImpl::DoFinal(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsBlockCipherImpl::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCcmImpl::.ctor(Org.BouncyCastle.Crypto.Modes.CcmBlockCipher,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCcmImpl::.ctor(Org.BouncyCastle.Crypto.Modes.CcmBlockCipher,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCcmImpl::DoFinal(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate::Convert(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Crypto.TlsCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509CertificateStructure Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate::ParseCertificate(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509CertificateStructure Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate::get_X509CertificateStructure()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate::GetExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate::get_SigAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate::GetSigAlgParams()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::AdoptLocalSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::get_SecureRandom()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCertificate Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateCertificate(System.Int16,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateCipher(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDHDomain Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateDHDomain(Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsECDomain Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateECDomain(Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsKemDomain Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateKemDomain(Org.BouncyCastle.Tls.Crypto.TlsKemConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsNonceGenerator Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateNonceGenerator(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasAnyStreamVerifiers(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasAnyStreamVerifiersLegacy(System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasCryptoHashAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasCryptoSignatureAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasDHAgreement()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasECDHAgreement()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasEncryptionAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasHkdfAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasKemAgreement()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasMacAlgorithm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasNamedGroup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasRsaEncryption()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasSignatureAlgorithm(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasSignatureAndHashAlgorithm(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasSignatureScheme(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HasSrpAuthentication()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::GenerateRsaPreMasterSecret(Org.BouncyCastle.Tls.ProtocolVersion)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CloneDigest(System.Int32,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateDigest(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateHash(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHmac Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateHmac(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHmac Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateHmacForHash(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrp6Client Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateSrp6Client(Org.BouncyCastle.Tls.Crypto.TlsSrpConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrp6Server Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateSrp6Server(Org.BouncyCastle.Tls.Crypto.TlsSrpConfig,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrp6VerifierGenerator Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateSrp6VerifierGenerator(Org.BouncyCastle.Tls.Crypto.TlsSrpConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::HkdfInit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDH::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDH::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDH::GenerateEphemeral()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDH::ReceivePeerValue(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDH::CalculateSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain::CalculateDHAgreement(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain::GetDomainParameters(Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Crypto.TlsDHConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain::CalculateDHAgreement(Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsAgreement Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain::CreateDH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain::DecodeParameter(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain::DecodePublicKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain::EncodeParameter(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain::EncodePublicKey(Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDsaSigner::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.DsaPrivateKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDsaSigner::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.DsaPrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDsaVerifier::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDsaVerifier::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDssSigner::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDssSigner::GenerateRawSignature(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDssVerifier::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDssVerifier::VerifyRawSignature(Org.BouncyCastle.Tls.DigitallySigned,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDH::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDH::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDH::GenerateEphemeral()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDH::ReceivePeerValue(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDH::CalculateSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain::CalculateECDHAgreement(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECDomainParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain::GetDomainParameters(Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECDomainParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain::GetDomainParameters(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Crypto.TlsECConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain::CalculateECDHAgreement(Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsAgreement Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain::CreateECDH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain::DecodePoint(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain::DecodePublicKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain::EncodePoint(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain::EncodePublicKey(Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsa13Signer::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsa13Signer::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsa13Signer::GenerateRawSignature(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsaSigner::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsaSigner::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsaVerifier::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsaVerifier::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsEd25519Signer::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsEd25519Signer::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsStreamSigner Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsEd25519Signer::GetStreamSigner(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsEd448Signer::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsEd448Signer::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsStreamSigner Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsEd448Signer::GetStreamSigner(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHash::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHash::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHash::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,System.Int32,Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHash::Update(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHash::CalculateHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHash::CloneHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHash::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHmac::.ctor(Org.BouncyCastle.Crypto.Macs.HMac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHmac::.ctor(Org.BouncyCastle.Crypto.Macs.HMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHmac::SetKey(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHmac::Update(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHmac::CalculateMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHmac::CalculateMac(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHmac::get_InternalBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHmac::get_MacLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHmac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLDsaSigner Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLDsaSigner::Create(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLDsaSigner::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsStreamSigner Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLDsaSigner::GetStreamSigner(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKem::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKemDomain)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKem::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKemDomain)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKem::GenerateEphemeral()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKem::ReceivePeerValue(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKem::CalculateSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKemDomain::GetDomainParameters(Org.BouncyCastle.Tls.Crypto.TlsKemConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKemDomain::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Crypto.TlsKemConfig)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKemDomain::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Crypto.TlsKemConfig)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsAgreement Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKemDomain::CreateKem()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKemDomain::Decapsulate(Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPublicKeyParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKemDomain::DecodePublicKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKemDomain::Encapsulate(Org.BouncyCastle.Crypto.Parameters.MLKemPublicKeyParameters,Org.BouncyCastle.Tls.Crypto.TlsSecret&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKemDomain::EncodePublicKey(Org.BouncyCastle.Crypto.Parameters.MLKemPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKemDomain::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKemDomain::get_IsServer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsNonceGenerator::.ctor(Org.BouncyCastle.Crypto.Prng.IRandomGenerator)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsNonceGenerator::.ctor(Org.BouncyCastle.Crypto.Prng.IRandomGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsNonceGenerator::GenerateNonce(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::get_SubjectPublicKeyInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsEncryptor Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::CreateEncryptor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsVerifier Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::CreateVerifier(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Tls13Verifier Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::CreateVerifier(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::GetExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::get_SigAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::GetSigAlgParams()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::GetLegacySignatureAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::GetPubKeyDH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::GetPubKeyDss()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::GetPubKeyEC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::GetPubKeyEd25519()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::GetPubKeyEd448()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPublicKeyParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::GetPubKeyMLDsa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::GetPubKeyRsa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::SupportsSignatureAlgorithm(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::SupportsSignatureAlgorithmCA(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCertificate Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::CheckUsageInRole(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::ValidateKeyUsage(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaEncryptor::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaEncryptor::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaEncryptor::Encrypt(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaPssSigner::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaPssSigner::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaPssSigner::GenerateRawSignature(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaPssVerifier::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaPssVerifier::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaPssVerifier::VerifyRawSignature(Org.BouncyCastle.Tls.DigitallySigned,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaSigner::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaSigner::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaSigner::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaSigner::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaSigner::GenerateRawSignature(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaVerifier::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaVerifier::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaVerifier::VerifyRawSignature(Org.BouncyCastle.Tls.DigitallySigned,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::Convert(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::DeriveUsingPrf(System.Int32,System.String,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::HkdfExpand(System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::HkdfExtract(System.Int32,Org.BouncyCastle.Tls.Crypto.TlsSecret)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSigner::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSigner::GenerateRawSignature(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsStreamSigner Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSigner::GetStreamSigner(Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6Client::.ctor(Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6Client::.ctor(Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6Client::CalculateSecret(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6Client::GenerateClientCredentials(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6Server::.ctor(Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6Server::.ctor(Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6Server::GenerateServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6Server::CalculateSecret(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6VerifierGenerator::.ctor(Org.BouncyCastle.Crypto.Agreement.Srp.Srp6VerifierGenerator)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6VerifierGenerator::.ctor(Org.BouncyCastle.Crypto.Agreement.Srp.Srp6VerifierGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6VerifierGenerator::GenerateVerifier(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsStreamSigner::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsStreamSigner::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsStreamSigner::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsStreamSigner::GetSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsStreamVerifier::.ctor(Org.BouncyCastle.Crypto.ISigner,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsStreamVerifier::.ctor(Org.BouncyCastle.Crypto.ISigner,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsStreamVerifier::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsStreamVerifier::IsVerified()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsVerifier::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsStreamVerifier Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsVerifier::GetStreamVerifier(Org.BouncyCastle.Tls.DigitallySigned)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsVerifier::VerifyRawSignature(Org.BouncyCastle.Tls.DigitallySigned,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX25519::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX25519::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX25519::GenerateEphemeral()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX25519::ReceivePeerValue(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX25519::CalculateSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX25519Domain::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX25519Domain::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsAgreement Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX25519Domain::CreateECDH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX448::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX448::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX448::GenerateEphemeral()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX448::ReceivePeerValue(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX448::CalculateSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX448Domain::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX448Domain::.ctor(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsAgreement Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX448Domain::CreateECDH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Runtime.Intrinsics.Vector::get_IsPacked()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Runtime.Intrinsics.Vector::get_IsPackedLittleEndian()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Runtime.Intrinsics.X86.Aes::get_IsEnabled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Runtime.Intrinsics.X86.Avx2::get_IsEnabled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Runtime.Intrinsics.X86.Bmi1/X64::get_IsEnabled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Runtime.Intrinsics.X86.Bmi2/X64::get_IsEnabled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Runtime.Intrinsics.X86.Bmi2::get_IsEnabled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Runtime.Intrinsics.X86.Pclmulqdq::get_IsEnabled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Runtime.Intrinsics.X86.Sse2::get_IsEnabled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Runtime.Intrinsics.X86.Sse41::get_IsEnabled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Runtime.Intrinsics.X86.Ssse3::get_IsEnabled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.IMessageSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.IMessageSigner::GenerateSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.IMessageSigner::VerifySignature(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator/PartyU::.ctor(Org.BouncyCastle.Pqc.Crypto.IKemParameters,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator/PartyU::.ctor(Org.BouncyCastle.Pqc.Crypto.IKemParameters,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator/PartyU::WithSuppPubInfo(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator/PartyU::GetSuppPrivInfoPartA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.DerOtherInfo Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator/PartyU::Generate(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator/PartyV::.ctor(Org.BouncyCastle.Pqc.Crypto.IKemParameters,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator/PartyV::.ctor(Org.BouncyCastle.Pqc.Crypto.IKemParameters,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator/PartyV::WithSuppPubInfo(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator/PartyV::GetSuppPrivInfoPartB(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.DerOtherInfo Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator/PartyV::Generate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPrivateKeyFactory::CreateKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPrivateKeyFactory::CreateKey(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPrivateKeyFactory::CreateKey(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPrivateKeyInfoFactory::CreatePrivateKeyInfo(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPrivateKeyInfoFactory::CreatePrivateKeyInfo(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory/Converter::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory/Converter::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory/Converter::Invoke(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory/Converter::Invoke(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IAsyncResult Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory/Converter::BeginInvoke(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IAsyncResult Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory/Converter::BeginInvoke(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory/Converter::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory/Converter::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::CreateKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::CreateKey(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::CreateKey(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::CreateKey(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::GetDilithiumPublicKey(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Pqc.Crypto.Utilities.PqcSubjectPublicKeyInfoFactory::CreateSubjectPublicKeyInfo(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::McElieceOidLookup(Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::McElieceParamsLookup(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::FrodoOidLookup(Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::FrodoParamsLookup(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::SaberOidLookup(Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::SaberParamsLookup(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::FalconParamsLookup(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::FalconOidLookup(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::DilithiumParamsLookup(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::DilithiumOidLookup(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::PicnicOidLookup(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::PicnicParamsLookup(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::BikeOidLookup(Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::BikeParamsLookup(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::HqcOidLookup(Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::HqcParamsLookup(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::SphincsPlusOidLookup(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::SphincsPlusParamsLookup(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::NtruOidLookup(Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::NtruParamsLookup(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.SecretWithEncapsulationImpl::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.SecretWithEncapsulationImpl::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Utilities.SecretWithEncapsulationImpl::GetSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Utilities.SecretWithEncapsulationImpl::GetEncapsulation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.SecretWithEncapsulationImpl::Dispose()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Utilities.SecretWithEncapsulationImpl::IsDestroyed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::SetLayerAddress(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::GetLayerAddress()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::SetTreeAddress(System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::GetTreeAddress()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::SetTreeHeight(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::SetTreeIndex(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::GetTreeIndex()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::SetTypeAndClear(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::ChangeAdrsType(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::SetKeyPairAddress(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::GetKeyPairAddress()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::SetHashAddress(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs::SetChainAddress(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Fors::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Fors::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Fors::TreeHash(System.Byte[],System.UInt32,System.Int32,System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_FORS[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Fors::Sign(System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Fors::PKFromSig(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_FORS[],System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS256Digest::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSXof)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS256Digest::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSXof)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS256Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS256Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS256Digest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS256Digest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS256Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS512Digest::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS512Digest::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS512Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS512Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS512Digest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS512Digest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS512Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::Haraka512Perm(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::Haraka256Perm(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSXof::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSXof::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSXof::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSXof::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSXof::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSXof::OutputFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HT::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HT::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HT::Sign(System.Byte[],System.UInt64,System.UInt32,System.Byte[],System.Int32&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HT::Verify(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_XMSS[],System.Byte[],System.UInt64,System.UInt32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.IndexedDigest::.ctor(System.UInt64,System.UInt32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.IndexedDigest::.ctor(System.UInt64,System.UInt32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.NodeEntry::.ctor(System.Byte[],System.UInt32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.NodeEntry::.ctor(System.Byte[],System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.PK::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.PK::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG::.ctor(System.Int32,System.Int32,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG::.ctor(System.Int32,System.Int32,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG::get_R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_FORS[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG::get_SIG_FORS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_XMSS[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG::get_SIG_HT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_FORS::.ctor(System.Byte[],System.Byte[][])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_FORS::.ctor(System.Byte[],System.Byte[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_FORS::CopyToSignature(System.Byte[],System.Int32&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_FORS::get_SK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_FORS::get_AuthPath()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_XMSS::.ctor(System.Byte[],System.Byte[][])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_XMSS::.ctor(System.Byte[],System.Byte[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_XMSS::CopyToSignature(System.Byte[],System.Int32&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_XMSS::get_WotsSig()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_XMSS::get_XmssAuth()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SK::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SK::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine::Init(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine::F(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine::H(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.IndexedDigest Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine::H_msg(System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine::T_l(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine::PRF(System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine::PRF_msg(System.Byte[],System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Shake256Engine::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Shake256Engine::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Shake256Engine::Init(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Shake256Engine::F(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Shake256Engine::H(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.IndexedDigest Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Shake256Engine::H_msg(System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Shake256Engine::T_l(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Shake256Engine::PRF(System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Shake256Engine::PRF_msg(System.Byte[],System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine::Init(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine::F(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine::H(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.IndexedDigest Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine::H_msg(System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine::T_l(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine::PRF(System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine::PRF_msg(System.Byte[],System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine::Init(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine::F(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine::H(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.IndexedDigest Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine::H_msg(System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine::T_l(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine::PRF(System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine::PRF_msg(System.Byte[],System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.ISphincsPlusEngineProvider::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine Org.BouncyCastle.Pqc.Crypto.SphincsPlus.ISphincsPlusEngineProvider::Get()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::.ctor(System.Int32,System.String,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.ISphincsPlusEngineProvider)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::get_ID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::GetEngine()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::GetParams(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::GetID(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Sha2EngineProvider::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Sha2EngineProvider::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Sha2EngineProvider::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Sha2EngineProvider::Get()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Shake256EngineProvider::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Shake256EngineProvider::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Shake256EngineProvider::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Shake256EngineProvider::Get()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSEngineProvider::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSEngineProvider::.ctor(System.Boolean,System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSEngineProvider::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSEngineProvider::Get()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters,System.Byte[],System.Byte[],System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters,System.Byte[],System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SK,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.PK)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SK,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.PK)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters::GetEncodedPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters::GetPrf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters::GetPublicSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters::GetRoot()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters::GetSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.PK)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.PK)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPublicKeyParameters::GetRoot()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPublicKeyParameters::GetSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusSigner::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusSigner::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusSigner::GenerateSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusSigner::VerifySignature(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.WotsPlus::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.WotsPlus::.ctor(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.WotsPlus::PKGen(System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.WotsPlus::Sign(System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.WotsPlus::BaseW(System.Byte[],System.Int32,System.UInt32,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.WotsPlus::PKFromSig(System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Poly::.ctor(Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Poly::.ctor(Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Poly::GenMatrix(System.Int16[][][],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Poly::GenSecret(System.Int16[][],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Poly::MatrixVectorMul(System.Int16[][][],System.Int16[][],System.Int16[][],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Poly::InnerProd(System.Int16[][],System.Int16[][],System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_UsingAes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_UsingEffectiveMasking()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_Symmetric()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_EQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_EP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_KeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_ET()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_PolyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_PolyVecBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_SeedBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_PolyCoinBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_NoiseSeedBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_MU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::get_Utilities()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::GetSessionKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::GetCipherTextSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::GetPublicKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::GetPrivateKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::.ctor(System.Int32,System.Int32,System.Boolean,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::.ctor(System.Int32,System.Int32,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::crypto_kem_keypair(System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::crypto_kem_enc(System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::crypto_kem_dec(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Saber.SaberKemExtractor::ExtractSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberKemExtractor::get_EncapsulationLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISecretWithEncapsulation Org.BouncyCastle.Pqc.Crypto.Saber.SaberKemGenerator::GenerateEncapsulated(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::.ctor(System.String,System.Int32,System.Int32,System.Boolean,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::get_L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::get_DefaultKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::get_Engine()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Saber.SaberPrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Saber.SaberPrivateKeyParameters::GetPrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Saber.SaberPublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Saber.SaberPublicKeyParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::.ctor(Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::.ctor(Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::POLT2BS(System.Byte[],System.Int32,System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::BS2POLT(System.Byte[],System.Int32,System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::BS2POLp(System.Byte[],System.Int32,System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::POLVECq2BS(System.Byte[],System.Int16[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::BS2POLVECq(System.Byte[],System.Int32,System.Int16[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::POLVECp2BS(System.Byte[],System.Int16[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::BS2POLVECp(System.Byte[],System.Int16[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::BS2POLmsg(System.Byte[],System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::POLmsg2BS(System.Byte[],System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric/ShakeSymmetric::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric/ShakeSymmetric::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric/ShakeSymmetric::Hash_h(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric/ShakeSymmetric::Hash_g(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric/ShakeSymmetric::Prf(System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric/AesSymmetric::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric/AesSymmetric::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric/AesSymmetric::Hash_h(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric/AesSymmetric::Hash_g(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric/AesSymmetric::Prf(System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric::Hash_h(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric::Hash_g(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric::Prf(System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.KMatrices::.ctor(System.Int32,System.Int32,System.Int32,System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.KMatrices::.ctor(System.Int32,System.Int32,System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.KMatrices::GetNmatrices()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.KMatrices::GetSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.KMatrices::GetRows()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.KMatrices::GetColumns()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Pqc.Crypto.Picnic.KMatrices::GetData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.KMatricesWithPointer::GetMatrixPointer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.KMatricesWithPointer::SetMatrixPointer(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.KMatricesWithPointer::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.KMatrices)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.KMatricesWithPointer::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.KMatrices)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.KMatricesWithPointer Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstants::LMatrix(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.KMatricesWithPointer Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstants::LMatrixInv(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.KMatricesWithPointer Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstants::KMatrix(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.KMatricesWithPointer Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstants::KMatrixInv(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.KMatricesWithPointer Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstants::RConstant(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstants::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstantsL1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstantsL1::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstantsL1::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstantsL3::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstantsL3::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstantsL3::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstantsL5::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstantsL5::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstantsL5::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Msg::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Msg::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::GetSecretKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::GetPublicKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::GetSignatureSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::GetTrueSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::.ctor(System.Int32,Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstants)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::.ctor(System.Int32,Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstants)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::crypto_sign_open(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::crypto_sign(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::aux_mpc_sbox(System.UInt32[],System.UInt32[],Org.BouncyCastle.Pqc.Crypto.Picnic.Tape)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::crypto_sign_keypair(System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::xor_array(System.UInt32[],System.UInt32[],System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::matrix_mul(System.UInt32[],System.UInt32[],System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::matrix_mul_offset(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters/L1Constants::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters/L1Constants::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters/L1Constants::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters/L3Constants::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters/L3Constants::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters/L3Constants::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters/L5Constants::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters/L5Constants::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters/L5Constants::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::.ctor(System.String,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::GetEngine()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicPrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicPublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicSigner::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicSigner::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicSigner::GenerateSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicSigner::VerifySignature(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::Fill(System.UInt32[],System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::NumBytes(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::ceil_log2(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::Parity(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::Parity16(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::Parity32(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::SetBitInWordArray(System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::GetBitFromWordArray(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::GetBit(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::GetCrumbAligned(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::GetBit(System.UInt32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::GetBit(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::SetBit(System.Byte[],System.Int32,System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::SetBit(System.UInt32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::SetBit(System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::ZeroTrailingBits(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities::GetTrailingBitsMask(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Signature/Proof::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Signature/Proof::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Signature::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Signature::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Signature2/Proof2::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Signature2/Proof2::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Signature2::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Signature2::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Tape::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Tape::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Tape::SetAuxBits(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Tape::ComputeAuxTape(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.Tape::TapesToWord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::GetLeaves()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::GetLeavesOffset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine,System.UInt32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine,System.UInt32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::BuildMerkleTree(System.Byte[][],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::VerifyMerkleTree(System.Byte[][],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::ReconstructSeeds(System.UInt32[],System.UInt32,System.Byte[],System.UInt32,System.Byte[],System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::OpenMerkleTree(System.UInt32[],System.UInt32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::RevealSeedsSize(System.UInt32[],System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::RevealSeeds(System.UInt32[],System.UInt32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::OpenMerkleTreeSize(System.UInt32[],System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::GetLeaf(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::AddMerkleNodes(System.UInt32[],System.UInt32,System.Byte[],System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::GenerateSeeds(System.Byte[],System.Byte[],System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.View::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.View::.ctor(Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruEncapsulation::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruEncapsulation::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruEncapsulation::Dispose()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruEncapsulation::GetSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruEncapsulation::GetEncapsulation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Ntru.NtruEncapsulation::IsDestroyed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPrivateKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKemExtractor::ExtractSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKemExtractor::get_EncapsulationLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISecretWithEncapsulation Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKemGenerator::GenerateEncapsulated(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyGenerationParameters::get_NtruParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyGenerationParameters::GetParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters::.ctor(System.String,Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters::get_ParameterSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters::get_PrivateKeyLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters::get_PublicKeyLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters::get_DefaultKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPrivateKeyParameters::FromEncoding(Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPrivateKeyParameters::get_PrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPublicKeyParameters::FromEncoding(Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPublicKeyParameters::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPublicKeyParameters::set_PublicKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruSampling::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruSampling::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.PolynomialPair Org.BouncyCastle.Pqc.Crypto.Ntru.NtruSampling::SampleFg(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.PolynomialPair Org.BouncyCastle.Pqc.Crypto.Ntru.NtruSampling::SampleRm(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial Org.BouncyCastle.Pqc.Crypto.Ntru.NtruSampling::SampleIid(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HpsPolynomial Org.BouncyCastle.Pqc.Crypto.Ntru.NtruSampling::SampleFixedType(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HrssPolynomial Org.BouncyCastle.Pqc.Crypto.Ntru.NtruSampling::SampleIidPlus(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.PolynomialPair::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.PolynomialPair::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial Org.BouncyCastle.Pqc.Crypto.Ntru.PolynomialPair::F()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial Org.BouncyCastle.Pqc.Crypto.Ntru.PolynomialPair::G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial Org.BouncyCastle.Pqc.Crypto.Ntru.PolynomialPair::R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial Org.BouncyCastle.Pqc.Crypto.Ntru.PolynomialPair::M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Hps4096Polynomial::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Hps4096Polynomial::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Hps4096Polynomial::SqToBytes(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Hps4096Polynomial::SqFromBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HpsPolynomial::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HpsPolynomial::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HpsPolynomial::SqToBytes(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HpsPolynomial::SqFromBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HpsPolynomial::Lift(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HpsPolynomial::R2Inv(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HpsPolynomial::RqInv(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HpsPolynomial::S3Inv(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Hrss1373Polynomial::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrssParameterSet)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Hrss1373Polynomial::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrssParameterSet)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Hrss1373Polynomial::SqToBytes(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Hrss1373Polynomial::SqFromBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Hrss1373Polynomial::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HrssPolynomial::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HrssPolynomial::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HrssPolynomial::SqToBytes(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HrssPolynomial::SqFromBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HrssPolynomial::Lift(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HrssPolynomial::R2Inv(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HrssPolynomial::RqInv(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HrssPolynomial::S3Inv(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::BothNegativeMask(System.Int16,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::Mod3(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::Mod3(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::ModQ(System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::Mod3PhiN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::ModQPhiN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::Mod(System.Double,System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::SqToBytes(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::SqFromBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::RqSumZeroToBytes(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::RqSumZeroFromBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::S3ToBytes(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::S3FromBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::RqMul(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::SqMul(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::S3Mul(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::Lift(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::RqToS3(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::R2Inv(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::R2Inv(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::RqInv(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::RqInv(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::S3Inv(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::S3Inv(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::Z3ToZq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::TrinaryZqToZ3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps2048509::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps2048509::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps2048677::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps2048677::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps40961229::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps40961229::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps40961229::CreatePolynomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps4096821::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps4096821::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps4096821::CreatePolynomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHpsParameterSet::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHpsParameterSet::CreatePolynomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHpsParameterSet::SampleFgBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHpsParameterSet::SampleRmBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHpsParameterSet::Weight()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrss1373::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrss1373::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrss1373::CreatePolynomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrss701::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrss701::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrssParameterSet::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrssParameterSet::CreatePolynomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrssParameterSet::SampleFgBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrssParameterSet::SampleRmBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::get_LogQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::get_SeedBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::get_PrfKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::get_SharedKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::CreatePolynomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::SampleIidBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::SampleFixedTypeBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::SampleFgBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::SampleRmBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::PackDegree()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::PackTrinaryBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::OwcpaMsgBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::OwcpaPublicKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::OwcpaSecretKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::OwcpaBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::NtruPublicKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::NtruSecretKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet::NtruCiphertextBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.NtruOwcpa::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.NtruOwcpa::.ctor(Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.OwcpaKeyPair Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.NtruOwcpa::KeyPair(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.NtruOwcpa::Encrypt(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.OwcpaDecryptResult Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.NtruOwcpa::Decrypt(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.OwcpaDecryptResult::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.OwcpaDecryptResult::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.OwcpaKeyPair::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.OwcpaKeyPair::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemExtractor::ExtractSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemExtractor::get_EncapsulationLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemGenerator/SecretWithEncapsulationImpl::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemGenerator/SecretWithEncapsulationImpl::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemGenerator/SecretWithEncapsulationImpl::GetSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemGenerator/SecretWithEncapsulationImpl::GetEncapsulation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemGenerator/SecretWithEncapsulationImpl::Dispose()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemGenerator/SecretWithEncapsulationImpl::IsDestroyed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISecretWithEncapsulation Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemGenerator::GenerateEncapsulated(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters::.ctor(System.String,System.Int32,System.Int32,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters::get_LPR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters::get_DefaultKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters::get_PrimeEngine()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimePrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimePrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimePrivateKeyParameters::GetPrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimePrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimePublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimePublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimePublicKeyParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimePublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::get_PrivateKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::get_PublicKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::get_CipherTextSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::get_SessionKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::.ctor(System.Int32,System.Int32,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::.ctor(System.Int32,System.Int32,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::kem_keypair(System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::kem_enc(System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::kem_dec(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemExtractor::ExtractSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemExtractor::get_EncapsulationLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemGenerator/SecretWithEncapsulationImpl::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemGenerator/SecretWithEncapsulationImpl::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemGenerator/SecretWithEncapsulationImpl::GetSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemGenerator/SecretWithEncapsulationImpl::GetEncapsulation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemGenerator/SecretWithEncapsulationImpl::Dispose()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemGenerator/SecretWithEncapsulationImpl::IsDestroyed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISecretWithEncapsulation Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemGenerator::GenerateEncapsulated(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters::.ctor(System.String,System.Int32,System.Int32,System.Boolean,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters::get_LPR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters::get_DefaultKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters::get_PrimeEngine()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimePrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimePrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimePrivateKeyParameters::GetPrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimePrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimePublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimePublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimePublicKeyParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimePublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.Composer::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer Org.BouncyCastle.Pqc.Crypto.Lms.Composer::Compose()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer Org.BouncyCastle.Pqc.Crypto.Lms.Composer::U64Str(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer Org.BouncyCastle.Pqc.Crypto.Lms.Composer::U32Str(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer Org.BouncyCastle.Pqc.Crypto.Lms.Composer::U16Str(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer Org.BouncyCastle.Pqc.Crypto.Lms.Composer::Bytes(Org.BouncyCastle.Utilities.IEncodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer Org.BouncyCastle.Pqc.Crypto.Lms.Composer::Bytes(Org.BouncyCastle.Utilities.IEncodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer Org.BouncyCastle.Pqc.Crypto.Lms.Composer::Pad(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer Org.BouncyCastle.Pqc.Crypto.Lms.Composer::Bytes2(System.Byte[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer Org.BouncyCastle.Pqc.Crypto.Lms.Composer::Bytes2(System.Byte[][],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer Org.BouncyCastle.Pqc.Crypto.Lms.Composer::Bytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer Org.BouncyCastle.Pqc.Crypto.Lms.Composer::Bytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.Composer::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer Org.BouncyCastle.Pqc.Crypto.Lms.Composer::PadUntil(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer Org.BouncyCastle.Pqc.Crypto.Lms.Composer::Boolean(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.Hss::GenerateHssKeyPair(Org.BouncyCastle.Pqc.Crypto.Lms.HssKeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.Hss::IncrementIndex(Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.Hss::RangeTestKeys(Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature Org.BouncyCastle.Pqc.Crypto.Lms.Hss::GenerateSignature(Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature Org.BouncyCastle.Pqc.Crypto.Lms.Hss::GenerateSignature(System.Int32,Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.Hss::VerifySignature(Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters,Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssKeyGenerationParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters[],Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssKeyGenerationParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.HssKeyGenerationParameters::get_Depth()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssKeyGenerationParameters::GetLmsParameters(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Lms.HssKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::.ctor(System.Int32,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Int64,System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::.ctor(System.Int32,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Int64,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::.ctor(System.Int32,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Int64,System.Int64,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::GetInstance(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::Parse(System.IO.BinaryReader)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::Parse(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::Parse(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::Parse(System.Byte[],System.Int32,System.Int32,Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::get_L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::get_Level()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::GetIndex()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters[] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::GetLmsParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::IncIndex()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::IsShard()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::get_IndexLimit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::GetUsagesRemaining()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::GetRootKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::ExtractKeyShard(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::GetKeys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::GetSig()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::ReplaceConsumedKey(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::GenerateLmsContext()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::GenerateSignature(Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::.ctor(System.Int32,Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::.ctor(System.Int32,Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::Parse(System.IO.BinaryReader)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::Parse(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::Parse(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::get_L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::get_Level()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::get_LmsPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::GenerateLmsContext(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters::Verify(Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature::.ctor(System.Int32,Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey[],Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature::.ctor(System.Int32,Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey[],Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature::GetInstance(System.Object,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature::Parse(System.Int32,System.IO.BinaryReader)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature::GetLMinus1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature::get_LMinus1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey[] Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature::GetSignedPubKeys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey[] Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature::get_SignedPubKeys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.HssSigner::GenerateSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.HssSigner::VerifySignature(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssSigner::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssSigner::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext Org.BouncyCastle.Pqc.Crypto.Lms.ILmsContextBasedSigner::GenerateLmsContext()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.ILmsContextBasedSigner::GenerateSignature(Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Pqc.Crypto.Lms.ILmsContextBasedSigner::GetUsagesRemaining()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext Org.BouncyCastle.Pqc.Crypto.Lms.ILmsContextBasedVerifier::GenerateLmsContext(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.ILmsContextBasedVerifier::Verify(Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::GetParametersByID(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::ParseByID(System.IO.BinaryReader)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::get_ID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::get_W()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::get_Ls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::get_SigLen()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::get_DigestOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Byte[],System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Byte[],System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey::GetSignatureContext(Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,System.Byte[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey::GetI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey::GetMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.SeedDerive Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey::GetDerivationFunction()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey::get_I()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey::get_MasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Byte[],System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Byte[],System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::Parse(System.IO.BinaryReader)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::GetI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::GetK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::CreateOtsContext(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::CreateOtsContext(Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::get_I()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey::get_K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature::Parse(System.IO.BinaryReader)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature::GetC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature::GetY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature::get_ParamType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature::get_C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature::get_Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.Lms::GenerateKeys(Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Int32,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature Org.BouncyCastle.Pqc.Crypto.Lms.Lms::GenerateSign(Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature Org.BouncyCastle.Pqc.Crypto.Lms.Lms::GenerateSign(Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.Lms::VerifySignature(Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters,Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.Lms::VerifySignature(Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.Lms::VerifySignature(Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters,Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.Lms::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey,Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Byte[][])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey,Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Byte[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey,System.Object,Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey,System.Object,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::get_C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::GetQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::get_Path()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::get_PrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::get_SigParams()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::get_SignedPubKeys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::WithSignedPublicKeys(Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::GetParametersByID(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::ParseByID(System.IO.BinaryReader)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::get_DigestOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::get_H()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::get_ID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyGenerationParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyGenerationParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyGenerationParameters::get_LmsParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyParameters::.ctor(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyParameters::.ctor(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters::get_LMSigParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters::get_LMOtsParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Int32,System.Byte[],System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Int32,System.Byte[],System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Int32,System.Byte[],System.Int32,System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Int32,System.Byte[],System.Int32,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GetInstance(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::Parse(System.IO.BinaryReader)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::Parse(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::Parse(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::Parse(System.Byte[],System.Int32,System.Int32,Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GetCurrentOtsKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GetIndex()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::IncIndex()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GenerateLmsContext()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GenerateSignature(Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GetNextOtsPrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::ExtractKeyShard(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GetSigParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::get_SigParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GetOtsParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::get_OtsParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GetI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GetMasterSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::get_IndexLimit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GetUsagesRemaining()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::FindT(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::Parse(System.IO.BinaryReader)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::Parse(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::Parse(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::Parse(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::GetSigParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::GetOtsParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::GetLmsParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::GetT1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::MatchesT1(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::GetI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::RefI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::ToByteArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::GenerateLmsContext(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::GenerateOtsContext(Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters::Verify(Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature::.ctor(System.Int32,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature,Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,System.Byte[][])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature::.ctor(System.Int32,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature,Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,System.Byte[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature::Parse(System.IO.BinaryReader)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature::get_OtsSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature::get_SigParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature::get_Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature,Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey::.ctor(Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature,Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey::GetSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSigner::GenerateSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.LmsSigner::VerifySignature(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsSigner::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsSigner::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities/WrapperDigest::.ctor(Org.BouncyCastle.Crypto.IDigest,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities/WrapperDigest::.ctor(Org.BouncyCastle.Crypto.IDigest,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities/WrapperDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities/WrapperDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities/WrapperDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities/WrapperDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities/WrapperDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities/WrapperDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities/WrapperDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities::U32Str(System.Int32,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities::U16Str(System.Int16,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities::ByteArray(System.Byte[],Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities::ByteArray(System.Byte[],System.Int32,System.Int32,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities::CalculateStrength(Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities::GetDigest(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities::GetDigest(Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMOts::Coef(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LMOts::Cksm(System.Byte[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey Org.BouncyCastle.Pqc.Crypto.Lms.LMOts::LmsOtsGeneratePublicKey(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOts::LmsOtsGeneratePublicKey(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters,System.Byte[],System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature Org.BouncyCastle.Pqc.Crypto.Lms.LMOts::lm_ots_generate_signature(Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey,System.Byte[][],System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature Org.BouncyCastle.Pqc.Crypto.Lms.LMOts::LMOtsGenerateSignature(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.LMOts::LMOtsValidateSignature(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOts::LMOtsValidateSignatureCalculate(Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey,Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LMOts::LMOtsValidateSignatureCalculate(Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.LMOts::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.SeedDerive::.ctor(System.Byte[],System.Byte[],Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.SeedDerive::.ctor(System.Byte[],System.Byte[],Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.SeedDerive::GetI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.SeedDerive::GetMasterSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.SeedDerive::get_J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.SeedDerive::set_J(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.SeedDerive::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.SeedDerive::set_Q(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.SeedDerive::DeriveSeed(System.Boolean,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.SeedDerive::get_I()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.SeedDerive::get_MasterSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.FastFourierTransform::FFT(System.Int32[],System.Int32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.FastFourierTransform::ComputeFFTBetas(System.Int32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.FastFourierTransform::ComputeSubsetSum(System.Int32[],System.Int32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.FastFourierTransform::ComputeRadix(System.Int32[],System.Int32[],System.Int32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.FastFourierTransform::ComputeRadixBig(System.Int32[],System.Int32[],System.Int32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.FastFourierTransform::ComputeFFTRec(System.Int32[],System.Int32[],System.Int32,System.Int32,System.Int32,System.Int32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.FastFourierTransform::FastFourierTransformGetError(System.Byte[],System.Int32[],System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.FastFourierTransform::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.FastFourierTransform::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.GF2PolynomialCalculator::.ctor(System.Int32,System.Int32,System.UInt64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.GF2PolynomialCalculator::.ctor(System.Int32,System.Int32,System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.GF2PolynomialCalculator::MultLongs(System.Int64[],System.Int64[],System.Int64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.GF2PolynomialCalculator::AddLongs(System.Int64[],System.Int64[],System.Int64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.GFCalculator::mult(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.GFCalculator::mod(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.GFCalculator::inverse(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.GFCalculator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.GFCalculator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.GFCalculator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine::GenKeyPair(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine::Encaps(System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine::Decaps(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine::GetSessionKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::Squeeze(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::RandomGeneratorInit(System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::SeedExpanderInit(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::ExpandSeed(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::SHAKE256_512_ds(System.Byte[],System.Byte[],System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.Hqc.HqcPrivateKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.Hqc.HqcPrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemExtractor::ExtractSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemExtractor::get_EncapsulationLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemGenerator/SecretWithEncapsulationImpl::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemGenerator/SecretWithEncapsulationImpl::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemGenerator/SecretWithEncapsulationImpl::GetSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemGenerator/SecretWithEncapsulationImpl::GetEncapsulation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemGenerator/SecretWithEncapsulationImpl::Dispose()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemGenerator/SecretWithEncapsulationImpl::IsDestroyed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISecretWithEncapsulation Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemGenerator::GenerateEncapsulated(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyPairGenerator::GenerateKeyPairWithSeed(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::.ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_Delta()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_W()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_Wr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_We()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_N1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_N2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_Sha512Bytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_NBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_N1n2Bytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_DefaultKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_SaltSizeBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::get_Engine()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcPrivateKeyParameters::get_PrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcPrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcPublicKeyParameters::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcPublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller/Codeword::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller/Codeword::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller::Encode(System.Int64[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller::Decode(System.Byte[],System.Int64[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedSolomon::Encode(System.Byte[],System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedSolomon::Decode(System.Byte[],System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedSolomon::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedSolomon::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedSolomon::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::ResizeArray(System.Int64[],System.Int32,System.Int64[],System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::FromLongArrayToByteArray(System.Byte[],System.Int64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::BitMask(System.UInt64,System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::FromByteArrayToLongArray(System.Int64[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::FromByteArrayToByte16Array(System.Int32[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::FromByte32ArrayToLongArray(System.Int64[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::FromByte16ArrayToULongArray(System.UInt64[],System.UInt16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::FromLongArrayToByte32Array(System.Int32[],System.Int64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::CopyBytes(System.Int32[],System.Int32,System.Int32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::GetByteSizeFromBitSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::GetByte64SizeFromBitSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::ToUnsigned8bits(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::ToUnsigned16Bits(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::XorULongToByte16Array(System.UInt16[],System.Int32,System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.Utils::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::get_CipherTextSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::get_SessionKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::get_PrivateKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::get_PublicKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::.ctor(System.Int32,System.Int32,System.Int32,System.Int16[],Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::.ctor(System.Int32,System.Int32,System.Int32,System.Int16[],Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::kem_keypair(System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::kem_enc(System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::kem_dec(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKEMExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKEMExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKEMExtractor::ExtractSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKEMExtractor::get_EncapsulationLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKEMGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKEMGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISecretWithEncapsulation Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKEMGenerator::GenerateEncapsulated(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator/Shake128MatrixGenerator::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator/Shake128MatrixGenerator::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator/Shake128MatrixGenerator::GenMatrix(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator/Aes128MatrixGenerator::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator/Aes128MatrixGenerator::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator/Aes128MatrixGenerator::GenMatrix(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator::GenMatrix(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::.ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int16[],Org.BouncyCastle.Crypto.Digests.ShakeDigest,Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::get_DefaultKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::get_Engine()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::get_D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::get_B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::get_CdfTable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::get_MGen()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoPrivateKeyParameters::GetPrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoPrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoPublicKeyParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoPublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCodec::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCodec::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCodec::modq_encode(System.Byte[],System.Int32,System.Int32,System.UInt16[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCodec::modq_decode(System.UInt16[],System.Int32,System.UInt32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCodec::trim_i16_encode(System.Byte[],System.Int32,System.Int32,System.Int16[],System.Int32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCodec::trim_i16_decode(System.Int16[],System.Int32,System.UInt32,System.UInt32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCodec::trim_i8_encode(System.Byte[],System.Int32,System.Int32,System.SByte[],System.Int32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCodec::trim_i8_decode(System.SByte[],System.Int32,System.UInt32,System.UInt32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCodec::comp_encode(System.Byte[],System.Int32,System.Int32,System.Int16[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCodec::comp_decode(System.Int16[],System.Int32,System.UInt32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCommon::hash_to_point_vartime(Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256,System.UInt16[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCommon::is_short(System.Int16[],System.Int32,System.Int16[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCommon::is_short_half(System.UInt32,System.Int16[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCommon::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCommon::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconConversions::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconConversions::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconConversions::int_to_bytes(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconConversions::bytes_to_uint(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconConversions::ulong_to_bytes(System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconConversions::bytes_to_ulong(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconConversions::bytes_to_uint_array(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::FPC_ADD(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::FPC_SUB(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::FPC_MUL(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::FPC_SQR(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::FPC_INV(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::FPC_DIV(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::FFT(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::iFFT(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_add(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_sub(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_neg(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_adj_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_mul_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_muladj_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_mulselfadj_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_mulconst(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_div_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_invnorm2_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_add_muladj_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_mul_autoadj_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_div_autoadj_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_LDL_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_LDLmv_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_split_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT::poly_merge_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR::.ctor(System.Double)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR::.ctor(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCodec,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCodec,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_set(System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_norm(System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_ninv31(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_R(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_add(System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_sub(System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_montymul(System.UInt32,System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_R2(System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_Rx(System.UInt32,System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_div(System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_mkgm2(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_NTT2_ext(System.UInt32[],System.Int32,System.Int32,System.UInt32[],System.Int32,System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_iNTT2_ext(System.UInt32[],System.Int32,System.Int32,System.UInt32[],System.Int32,System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_NTT2(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_iNTT2(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::modp_poly_rec_res(System.UInt32[],System.Int32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_sub(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_mul_small(System.UInt32[],System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_mod_small_uint(System.UInt32[],System.Int32,System.Int32,System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_mod_small_signed(System.UInt32[],System.Int32,System.Int32,System.UInt32,System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_add_mul_small(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_norm_zero(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_rebuild_CRT(System.UInt32[],System.Int32,System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSmallPrime[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_negate(System.UInt32[],System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_co_reduce(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.Int32,System.Int64,System.Int64,System.Int64,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_finish_mod(System.UInt32[],System.Int32,System.Int32,System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_co_reduce_mod(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.Int32,System.UInt32,System.Int64,System.Int64,System.Int64,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_bezout(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_add_scaled_mul_small(System.UInt32[],System.Int32,System.Int32,System.UInt32[],System.Int32,System.Int32,System.Int32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_sub_scaled(System.UInt32[],System.Int32,System.Int32,System.UInt32[],System.Int32,System.Int32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::zint_one_to_plain(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::poly_big_to_fp(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32[],System.Int32,System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::poly_big_to_small(System.SByte[],System.Int32,System.UInt32[],System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::poly_sub_scaled(System.UInt32[],System.Int32,System.Int32,System.Int32,System.UInt32[],System.Int32,System.Int32,System.Int32,System.Int32[],System.Int32,System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::poly_sub_scaled_ntt(System.UInt32[],System.Int32,System.Int32,System.Int32,System.UInt32[],System.Int32,System.Int32,System.Int32,System.Int32[],System.Int32,System.UInt32,System.UInt32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::get_rng_u64(Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::mkgauss(Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::poly_small_sqnorm(System.SByte[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::poly_small_to_fp(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.SByte[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::make_fg_step(System.UInt32[],System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::make_fg(System.UInt32[],System.Int32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.UInt32,System.UInt32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::solve_NTRU_deepest(System.UInt32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::solve_NTRU_intermediate(System.UInt32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::solve_NTRU_binary_depth1(System.UInt32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::solve_NTRU_binary_depth0(System.UInt32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::solve_NTRU(System.UInt32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::poly_small_mkgauss(Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256,System.SByte[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen::keygen(Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256,System.SByte[],System.Int32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.UInt16[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconNist::get_NonceLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconNist::get_LogN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconNist::get_CryptoBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconNist::.ctor(Org.BouncyCastle.Security.SecureRandom,System.UInt32,System.UInt32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconNist::.ctor(Org.BouncyCastle.Security.SecureRandom,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconNist::crypto_sign_keypair(System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconNist::crypto_sign(System.Boolean,System.Byte[],System.Byte[],System.Int32,System.UInt32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconNist::crypto_sign_open(System.Boolean,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters::.ctor(System.String,System.UInt32,System.UInt32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters::get_LogN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters::get_NonceLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters,System.Byte[],System.Byte[],System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters,System.Byte[],System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconPrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconPrivateKeyParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconPrivateKeyParameters::GetSpolyLittleF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconPrivateKeyParameters::GetG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconPrivateKeyParameters::GetSpolyBigF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconPublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconRNG::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconRNG::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconRNG::prng_init(Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconRNG::prng_get_bytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconRNG::prng_get_u64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconRNG::prng_get_u8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCommon)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCommon)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::ffLDL_treesize(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::ffLDL_fft_inner(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::ffLDL_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::ffLDL_binary_normalize(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::smallints_to_fpr(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.SByte[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::ffSampling_fft_dyntree(Org.BouncyCastle.Pqc.Crypto.Falcon.SamplerZ,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32,System.UInt32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::ffSampling_fft(Org.BouncyCastle.Pqc.Crypto.Falcon.SamplerZ,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::do_sign_tree(Org.BouncyCastle.Pqc.Crypto.Falcon.SamplerZ,System.Int16[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt16[],System.Int32,System.UInt32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::do_sign_dyn(Org.BouncyCastle.Pqc.Crypto.Falcon.SamplerZ,System.Int16[],System.Int32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.UInt16[],System.Int32,System.UInt32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::sign_tree(System.Int16[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32,System.UInt16[],System.Int32,System.UInt32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::sign_dyn(System.Int16[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256,System.SByte[],System.Int32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.UInt16[],System.Int32,System.UInt32,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSigner::GenerateSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSigner::VerifySignature(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSigner::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSigner::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSmallPrime::.ctor(System.UInt32,System.UInt32,System.UInt32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSmallPrime::.ctor(System.UInt32,System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSmallPrimes::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSmallPrimes::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCommon)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCommon)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::mq_conv_small(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::mq_add(System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::mq_sub(System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::mq_rshift1(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::mq_montymul(System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::mq_montysqr(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::mq_div_12289(System.UInt32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::mq_NTT(System.UInt16[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::mq_iNTT(System.UInt16[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::mq_poly_tomonty(System.UInt16[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::mq_poly_montymul_ntt(System.UInt16[],System.Int32,System.UInt16[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::mq_poly_sub(System.UInt16[],System.Int32,System.UInt16[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::to_ntt_monty(System.UInt16[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::verify_raw(System.UInt16[],System.Int32,System.Int16[],System.Int32,System.UInt16[],System.Int32,System.UInt32,System.UInt16[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::compute_public(System.UInt16[],System.Int32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.UInt32,System.UInt16[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::complete_private(System.SByte[],System.Int32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.SByte[],System.Int32,System.UInt32,System.UInt16[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::is_invertible(System.Int16[],System.Int32,System.UInt32,System.UInt16[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::verify_recover(System.UInt16[],System.Int32,System.UInt16[],System.Int32,System.Int16[],System.Int32,System.Int16[],System.Int32,System.UInt32,System.UInt16[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy::count_nttzero(System.Int16[],System.Int32,System.UInt32,System.UInt16[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::Fpr(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_of(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_rint(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_floor(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_trunc(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_add(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_sub(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_neg(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_half(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_double(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_mul(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_sqr(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_inv(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_div(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_sqrt(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_lt(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::fpr_expm_p63(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.SamplerZ::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconRNG,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.SamplerZ::.ctor(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconRNG,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.SamplerZ::Sample(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256::i_shake256_init()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256::i_shake256_inject(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256::i_shake256_flip()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256::i_shake256_extract(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_Mode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_Random()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_Eta()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_Tau()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_Beta()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_Gamma1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_Gamma2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_Omega()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_CTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_PolyVecHPackedBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_PolyZPackedBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_PolyW1PackedBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_PolyEtaPackedBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_CryptoPublicKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_CryptoSecretKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_CryptoBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_PolyUniformGamma1NBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::get_Symmetric()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::.ctor(System.Int32,Org.BouncyCastle.Security.SecureRandom,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::.ctor(System.Int32,Org.BouncyCastle.Security.SecureRandom,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::CalculatePublicKeyHash(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::GenerateKeyPair(System.Boolean,System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::GenerateKeyPairInternal(System.Byte[],System.Boolean,System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::DeriveT1(System.Byte[],System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::MsgRepBegin(Org.BouncyCastle.Crypto.Digests.ShakeDigest,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.ShakeDigest Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::MsgRepCreateDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::MsgRepEndSign(Org.BouncyCastle.Crypto.Digests.ShakeDigest,System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::MsgRepEndSignInternal(Org.BouncyCastle.Crypto.Digests.ShakeDigest,System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::MsgRepEndVerifyInternal(Org.BouncyCastle.Crypto.Digests.ShakeDigest,System.Byte[],System.Int32,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.ShakeDigest Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::MsgRepPreHash(System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::Sign(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::SignInternal(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::VerifyInternal(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters::.ctor(System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters::GetEngine(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters,System.Byte[],Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPublicKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters,System.Byte[],Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::get_K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::GetPublicKeyParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::get_Rho()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::get_S1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::get_S2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::get_T0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::get_T1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters::get_Tr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPublicKeyParameters::GetEncoded(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPublicKeyParameters::GetRho()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPublicKeyParameters::GetT1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumSigner::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumSigner::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumSigner::GenerateSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumSigner::VerifySignature(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Ntt::NTT(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Ntt::InverseNttToMont(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Ntt::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Ntt::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Ntt::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Packing::PackPublicKey(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Packing::UnpackPublicKey(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,System.Byte[],Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Packing::PackSecretKey(System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Packing::UnpackSecretKey(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Packing::PackSignature(System.Byte[],Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Packing::UnpackSignature(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,System.Byte[],Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Packing::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Packing::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::CopyTo(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::UniformBlocks(System.Byte[],System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::UniformEta(System.Byte[],System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::PointwiseMontgomery(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::PointwiseAccountMontgomery(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::Add(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::Subtract(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::ReducePoly()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::PolyNtt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::InverseNttToMont()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::ConditionalAddQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::Power2Round(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::PolyT0Pack(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::PolyT0Unpack(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::PolyT1Pack(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::PolyT1Unpack(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::PolyEtaPack(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::PolyEtaUnpack(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::UniformGamma1(System.Byte[],System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::PackZ(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::UnpackZ(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::Decompose(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::PackW1(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::Challenge(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::CheckNorm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::PolyMakeHint(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::PolyUseHint(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::ShiftLeft()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::get_Item(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::set_Item(System.Int32,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::Add(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::CheckNorm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::CopyTo(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::ConditionalAddQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::Decompose(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::InverseNttToMont()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::get_Length()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::MakeHint(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::Ntt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::PackW1(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::PointwisePolyMontgomery(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::Power2Round(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::Reduce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::ShiftLeft()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::Subtract(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::UniformBlocks(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::UniformEta(System.Byte[],System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::UniformGamma1(System.Byte[],System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::UseHint(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVecMatrix::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVecMatrix::.ctor(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVecMatrix::ExpandMatrix(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVecMatrix::PointwiseMontgomery(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Reduce::MontgomeryReduce(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Reduce::Reduce32(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Reduce::ConditionalAddQ(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Reduce::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Reduce::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Rounding::Power2Round(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Rounding::Decompose(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Rounding::MakeHint(System.Int32,System.Int32,Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Rounding::UseHint(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Rounding::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Rounding::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/AesSymmetric::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/AesSymmetric::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/AesSymmetric::Stream128Init(System.Byte[],System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/AesSymmetric::Stream256Init(System.Byte[],System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/AesSymmetric::Stream128SqueezeBlocks(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/AesSymmetric::Stream256SqueezeBlocks(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/ShakeSymmetric::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/ShakeSymmetric::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/ShakeSymmetric::Stream128Init(System.Byte[],System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/ShakeSymmetric::Stream256Init(System.Byte[],System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/ShakeSymmetric::Stream128SqueezeBlocks(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/ShakeSymmetric::Stream256SqueezeBlocks(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric::Stream128Init(System.Byte[],System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric::Stream256Init(System.Byte[],System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric::Stream128SqueezeBlocks(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric::Stream256SqueezeBlocks(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes::.ctor(System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes::.ctor(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes::Transpose64x64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes::Transpose64x64(System.UInt64[],System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes::SupportGen(System.UInt16[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes12::.ctor(System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes12::.ctor(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes12::LayerBenes(System.UInt64[],System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes12::SupportGen(System.UInt16[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes13::.ctor(System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes13::.ctor(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes13::LayerIn(System.UInt64[],System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes13::LayerEx(System.UInt64[],System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes13::ApplyBenes(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes13::SupportGen(System.UInt16[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.ICmceEngine::get_CipherTextSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.ICmceEngine::DecompressPrivateKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.ICmceEngine::get_DefaultSessionKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.ICmceEngine::GeneratePublicKeyFromPrivateKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.ICmceEngine::KemDec(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.ICmceEngine::KemEnc(System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.ICmceEngine::KemKeypair(System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.ICmceEngine::get_PrivateKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.ICmceEngine::get_PublicKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::get_IrrBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::get_CondBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::get_PrivateKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::get_PublicKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::get_CipherTextSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::get_DefaultSessionKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::.ctor(System.Int32,System.Int32,System.Int32,System.Int32[],System.Boolean,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::.ctor(System.Int32,System.Int32,System.Int32,System.Int32[],System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::GeneratePublicKeyFromPrivateKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::DecompressPrivateKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::KemKeypair(System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::KemEnc(System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::KemDec(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKemExtractor::ExtractSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKemExtractor::get_EncapsulationLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISecretWithEncapsulation Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKemGenerator::GenerateEncapsulated(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::.ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32[],System.Boolean,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::get_T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::get_Mu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::get_Nu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::get_DefaultKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.ICmceEngine Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::get_Engine()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters::GetPrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters::ReconstructPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters::get_Delta()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters::get_C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters::get_Alpha()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters::get_S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePublicKeyParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.GF::GFMulPoly(System.Int32,System.Int32[],System.UInt16[],System.UInt16[],System.UInt16[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.GF::GFSqrPoly(System.Int32,System.Int32[],System.UInt16[],System.UInt16[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF::GFFrac(System.UInt16,System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF::GFInv(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF::GFIsZero(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF::GFMul(System.UInt16,System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Cmce.GF::GFMulExt(System.UInt16,System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF::GFReduce(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF::GFSq(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Cmce.GF::GFSqExt(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.GF12::GFMulPoly(System.Int32,System.Int32[],System.UInt16[],System.UInt16[],System.UInt16[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.GF12::GFSqrPoly(System.Int32,System.Int32[],System.UInt16[],System.UInt16[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF12::GFFrac(System.UInt16,System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF12::GFInv(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF12::GFIsZero(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF12::GFMul(System.UInt16,System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Cmce.GF12::GFMulExt(System.UInt16,System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF12::GFReduce(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF12::GFSq(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Cmce.GF12::GFSqExt(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFMulPoly(System.Int32,System.Int32[],System.UInt16[],System.UInt16[],System.UInt16[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFSqrPoly(System.Int32,System.Int32[],System.UInt16[],System.UInt16[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFFrac(System.UInt16,System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFInv(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFIsZero(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFMul(System.UInt16,System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFMulExt(System.UInt16,System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFReduce(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFSq(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFSqExt(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Utils::StoreGF(System.Byte[],System.Int32,System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.Utils::LoadGF(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Cmce.Utils::Load4(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Utils::Store8(System.Byte[],System.Int32,System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Utils::Store8(System.Byte[],System.Int32,System.UInt64[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Pqc.Crypto.Cmce.Utils::Load8(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Utils::Load8(System.Byte[],System.Int32,System.UInt64[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.Utils::Bitrev(System.UInt16,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::get_SessionKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::GenKeyPair(System.Byte[],System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::Encaps(System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::Decaps(System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.Bike.BikePrivateKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemExtractor::.ctor(Org.BouncyCastle.Pqc.Crypto.Bike.BikePrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemExtractor::ExtractSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemExtractor::get_EncapsulationLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemGenerator/SecretWithEncapsulationImpl::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemGenerator/SecretWithEncapsulationImpl::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemGenerator/SecretWithEncapsulationImpl::GetSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemGenerator/SecretWithEncapsulationImpl::GetEncapsulation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemGenerator/SecretWithEncapsulationImpl::Dispose()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemGenerator/SecretWithEncapsulationImpl::IsDestroyed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISecretWithEncapsulation Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemGenerator::GenerateEncapsulated(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters Org.BouncyCastle.Pqc.Crypto.Bike.BikeKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Bike.BikeKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters Org.BouncyCastle.Pqc.Crypto.Bike.BikeKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::.ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::get_R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::get_RByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::get_LByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::get_W()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::get_T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::get_L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::get_NbIter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::get_Tau()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::get_DefaultKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::get_BikeEngine()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikePrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters,System.Byte[],System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikePrivateKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters,System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Bike.BikePrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Bike.BikePrivateKeyParameters::GetH0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Bike.BikePrivateKeyParameters::GetH1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Bike.BikePrivateKeyParameters::GetSigma()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikePublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikePublicKeyParameters::.ctor(Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Bike.BikePublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing/d__27::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing/d__27::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing/d__27::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::Add(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::AddTo(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::Copy(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::Create()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::CreateExt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::DecodeBytes(System.Byte[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::EncodeBitsTransposed(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::EncodeBytes(System.UInt64[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::Inv(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::Multiply(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::Multiply(System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::Reduce(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::get_SizeExt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::Square(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::SquareN(System.UInt64[],System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeUtilities::GetHammingWeight(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeUtilities::FromBitsToUlongs(System.UInt64[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeUtilities::GenerateRandomUlongs(System.UInt64[],System.Int32,System.Int32,Org.BouncyCastle.Crypto.IXof)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeUtilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::.ctor(System.Int32,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Asn1.CmcePublicKey)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::.ctor(System.Int32,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Asn1.CmcePublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::get_Delta()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::get_C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::get_Alpha()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::get_S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.CmcePublicKey Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::ToAsn1Primitive()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.CmcePublicKey Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.CmcePublicKey Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.CmcePublicKey Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.CmcePublicKey Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::get_T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::ToAsn1Primitive()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey::.ctor(System.Int32,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey::.ctor(System.Int32,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey::.ctor(System.Int32,System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey::.ctor(System.Int32,System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey::GetSkprf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey::GetSkseed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey::GetPkroot()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey::GetPkseed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Nullable`1 Org.BouncyCastle.Pkix.CertStatus::get_RevocationDate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.CertStatus::set_RevocationDate(System.Nullable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.CertStatus::get_Status()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.CertStatus::set_Status(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.CertStatus::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.CertStatus::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixAttrCertChecker::GetSupportedExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixAttrCertChecker::Check(Org.BouncyCastle.X509.X509V2AttributeCertificate,Org.BouncyCastle.Pkix.PkixCertPath,Org.BouncyCastle.Pkix.PkixCertPath,System.Collections.Generic.ICollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixAttrCertChecker Org.BouncyCastle.Pkix.PkixAttrCertChecker::Clone()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixAttrCertChecker::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathBuilderResult Org.BouncyCastle.Pkix.PkixAttrCertPathBuilder::Build(Org.BouncyCastle.Pkix.PkixBuilderParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixAttrCertPathBuilder::FindAttributeCertificates(Org.BouncyCastle.Utilities.Collections.ISelector`1,System.Collections.Generic.IList`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixAttrCertPathBuilder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixAttrCertPathBuilder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathValidatorResult Org.BouncyCastle.Pkix.PkixAttrCertPathValidator::Validate(Org.BouncyCastle.Pkix.PkixCertPath,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixAttrCertPathValidator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixAttrCertPathValidator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixBuilderParameters Org.BouncyCastle.Pkix.PkixBuilderParameters::GetInstance(Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixBuilderParameters::.ctor(System.Collections.Generic.ISet`1,Org.BouncyCastle.Utilities.Collections.ISelector`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixBuilderParameters::.ctor(System.Collections.Generic.ISet`1,Org.BouncyCastle.Utilities.Collections.ISelector`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixBuilderParameters::.ctor(System.Collections.Generic.ISet`1,Org.BouncyCastle.Utilities.Collections.ISelector`1,Org.BouncyCastle.Utilities.Collections.ISelector`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixBuilderParameters::.ctor(System.Collections.Generic.ISet`1,Org.BouncyCastle.Utilities.Collections.ISelector`1,Org.BouncyCastle.Utilities.Collections.ISelector`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.PkixBuilderParameters::get_MaxPathLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixBuilderParameters::set_MaxPathLength(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixBuilderParameters::GetExcludedCerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixBuilderParameters::SetExcludedCerts(System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Pkix.PkixBuilderParameters::Clone()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.PkixBuilderParameters::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPath/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPath/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPath/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate Org.BouncyCastle.Pkix.PkixCertPath/<>c::<.ctor>b__5_0(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPath::.ctor(System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPath::.ctor(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPath::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPath::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPath::.ctor(System.IO.Stream,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPath::.ctor(System.IO.Stream,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Pkix.PkixCertPath::get_Encodings()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixCertPath::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.PkixCertPath::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkix.PkixCertPath::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkix.PkixCertPath::GetEncoded(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Pkix.PkixCertPath::get_Certificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPath::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathBuilderResult Org.BouncyCastle.Pkix.PkixCertPathBuilder::Build(Org.BouncyCastle.Pkix.PkixBuilderParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathBuilder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathBuilder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathBuilderException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathBuilderException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathBuilderException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathBuilderException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathBuilderException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathBuilderException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathBuilderException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathBuilderResult::.ctor(Org.BouncyCastle.Pkix.PkixCertPath,Org.BouncyCastle.Pkix.TrustAnchor,Org.BouncyCastle.Pkix.PkixPolicyNode,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathBuilderResult::.ctor(Org.BouncyCastle.Pkix.PkixCertPath,Org.BouncyCastle.Pkix.TrustAnchor,Org.BouncyCastle.Pkix.PkixPolicyNode,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPath Org.BouncyCastle.Pkix.PkixCertPathBuilderResult::get_CertPath()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.PkixCertPathBuilderResult::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathChecker::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathChecker::Init(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixCertPathChecker::IsForwardCheckingSupported()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixCertPathChecker::GetSupportedExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathChecker::Check(Org.BouncyCastle.X509.X509Certificate,System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Pkix.PkixCertPathChecker::Clone()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathValidatorResult Org.BouncyCastle.Pkix.PkixCertPathValidator::Validate(Org.BouncyCastle.Pkix.PkixCertPath,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorException::.ctor(System.String,System.Exception,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorException::.ctor(System.String,System.Exception,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorException::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.PkixCertPathValidatorException::get_Index()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixPolicyNode Org.BouncyCastle.Pkix.PkixCertPathValidatorResult::get_PolicyTree()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.TrustAnchor Org.BouncyCastle.Pkix.PkixCertPathValidatorResult::get_TrustAnchor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pkix.PkixCertPathValidatorResult::get_SubjectPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorResult::.ctor(Org.BouncyCastle.Pkix.TrustAnchor,Org.BouncyCastle.Pkix.PkixPolicyNode,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorResult::.ctor(Org.BouncyCastle.Pkix.TrustAnchor,Org.BouncyCastle.Pkix.PkixPolicyNode,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Pkix.PkixCertPathValidatorResult::Clone()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.PkixCertPathValidatorResult::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities/<>c::b__28_0(Org.BouncyCastle.X509.X509Crl)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.TrustAnchor Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::FindTrustAnchor(Org.BouncyCastle.X509.X509Certificate,System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::IsIssuerTrustAnchor(Org.BouncyCastle.X509.X509Certificate,System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::AddAdditionalStoresFromAltNames(Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetValidDate(Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetIssuerPrincipal(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetIssuerPrincipal(Org.BouncyCastle.X509.X509V2AttributeCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetIssuerPrincipal(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::IsSelfIssued(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetAlgorithmIdentifier(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::IsAnyPolicy(System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::AddAdditionalStoreFromLocation(System.String,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetQualifierSet(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixPolicyNode Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::RemoveChildlessPolicyNodes(Org.BouncyCastle.Pkix.PkixPolicyNode,System.Collections.Generic.List`1[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixPolicyNode Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::RemovePolicyNode(Org.BouncyCastle.Pkix.PkixPolicyNode,System.Collections.Generic.List`1[],Org.BouncyCastle.Pkix.PkixPolicyNode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetCertStatus(System.DateTime,Org.BouncyCastle.X509.X509Crl,System.Object,Org.BouncyCastle.Pkix.CertStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetNextWorkingKey(System.Collections.Generic.IList`1,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetValidCertDateFromValidityModel(Org.BouncyCastle.Pkix.PkixParameters,Org.BouncyCastle.Pkix.PkixCertPath,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetCrlIssuersFromDistributionPoint(Org.BouncyCastle.Asn1.X509.DistributionPoint,System.Collections.Generic.ICollection`1,Org.BouncyCastle.X509.Store.X509CrlStoreSelector,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetCompleteCrls(Org.BouncyCastle.Asn1.X509.DistributionPoint,System.Object,System.DateTime,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetDeltaCrls(System.DateTime,Org.BouncyCastle.Pkix.PkixParameters,Org.BouncyCastle.X509.X509Crl)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::AddAdditionalStoresFromCrlDistributionPoint(Org.BouncyCastle.Asn1.X509.CrlDistPoint,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::ProcessCertD1i(System.Int32,System.Collections.Generic.IList`1[],Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Collections.Generic.HashSet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::ProcessCertD1ii(System.Int32,System.Collections.Generic.IList`1[],Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Collections.Generic.HashSet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::FindIssuerCerts(Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Pkix.PkixBuilderParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetExtensionValue(Org.BouncyCastle.X509.IX509Extension,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::CheckCrlCriticalExtensions(Org.BouncyCastle.X509.X509Crl,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::CheckCrlEntryCriticalExtensions(Org.BouncyCastle.X509.X509CrlEntry,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixPolicyNode Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::FindValidPolicy(System.Collections.Generic.IEnumerable`1,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::HasCriticalExtension(Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::HasCriticalExtension(Org.BouncyCastle.X509.X509Crl,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixCrlUtilities::FindCrls(Org.BouncyCastle.X509.Store.X509CrlStoreSelector,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixCrlUtilities::FindCrls(Org.BouncyCastle.Utilities.Collections.ISelector`1,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixCrlUtilities::FindCrls(Org.BouncyCastle.X509.Store.X509CrlStoreSelector,Org.BouncyCastle.Pkix.PkixParameters,System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixCrlUtilities::FindCrls(Org.BouncyCastle.Utilities.Collections.ISelector`1,Org.BouncyCastle.Pkix.PkixParameters,System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixCrlUtilities::ImplFindCrls(Org.BouncyCastle.Utilities.Collections.ISelector`1,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixCrlUtilities::ImplFindCrls(Org.BouncyCastle.Utilities.Collections.ISelector`1,Org.BouncyCastle.Pkix.PkixParameters,System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixCrlUtilities::ImplFindCrls(Org.BouncyCastle.Utilities.Collections.ISelector`1,System.Collections.Generic.IEnumerable`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCrlUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCrlUtilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckExcludedDN(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckPermittedDN(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::checkPermitted(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckPermittedName(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::checkExcluded(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckExcludedName(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IntersectPermittedSubtree(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IntersectEmptyPermittedSubtree(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::AddExcludedSubtree(Org.BouncyCastle.Asn1.X509.GeneralSubtree)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.PkixNameConstraintValidator::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidatorException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidatorException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidatorException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidatorException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidatorException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidatorException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidatorException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::.ctor(System.Collections.Generic.ISet`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::.ctor(System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixParameters::get_IsRevocationEnabled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::set_IsRevocationEnabled(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixParameters::get_IsExplicitPolicyRequired()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::set_IsExplicitPolicyRequired(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixParameters::get_IsAnyPolicyInhibited()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::set_IsAnyPolicyInhibited(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixParameters::get_IsPolicyMappingInhibited()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::set_IsPolicyMappingInhibited(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixParameters::get_IsPolicyQualifiersRejected()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::set_IsPolicyQualifiersRejected(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Nullable`1 Org.BouncyCastle.Pkix.PkixParameters::get_Date()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::set_Date(System.Nullable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixParameters::GetTrustAnchors()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetTrustAnchors(System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.ISelector`1 Org.BouncyCastle.Pkix.PkixParameters::GetTargetConstraintsAttrCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetTargetConstraintsAttrCert(Org.BouncyCastle.Utilities.Collections.ISelector`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.ISelector`1 Org.BouncyCastle.Pkix.PkixParameters::GetTargetConstraintsCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetTargetConstraintsCert(Org.BouncyCastle.Utilities.Collections.ISelector`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixParameters::GetInitialPolicies()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetInitialPolicies(System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetCertPathCheckers(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Pkix.PkixParameters::GetCertPathCheckers()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::AddCertPathChecker(Org.BouncyCastle.Pkix.PkixCertPathChecker)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Pkix.PkixParameters::Clone()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixParameters::get_IsUseDeltasEnabled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::set_IsUseDeltasEnabled(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.PkixParameters::get_ValidityModel()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::set_ValidityModel(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1> Org.BouncyCastle.Pkix.PkixParameters::GetStoresAttrCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1> Org.BouncyCastle.Pkix.PkixParameters::GetStoresCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1> Org.BouncyCastle.Pkix.PkixParameters::GetStoresCrl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetAttrStoresCert(System.Collections.Generic.IList`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetStoresAttrCert(System.Collections.Generic.IList`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetStoresCert(System.Collections.Generic.IList`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetStoresCrl(System.Collections.Generic.IList`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::AddStoreAttrCert(Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::AddStoreCert(Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::AddStoreCrl(Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixParameters::get_IsAdditionalLocationsEnabled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetAdditionalLocationsEnabled(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixParameters::GetTrustedACIssuers()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetTrustedACIssuers(System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixParameters::GetNecessaryACAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetNecessaryACAttributes(System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixParameters::GetProhibitedACAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetProhibitedACAttributes(System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixParameters::GetAttrCertCheckers()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetAttrCertCheckers(System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.PkixPolicyNode::get_Depth()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Pkix.PkixPolicyNode::get_Children()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixPolicyNode::get_IsCritical()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixPolicyNode::set_IsCritical(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixPolicyNode::get_PolicyQualifiers()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.PkixPolicyNode::get_ValidPolicy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixPolicyNode::get_HasChildren()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Pkix.PkixPolicyNode::get_ExpectedPolicies()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixPolicyNode::set_ExpectedPolicies(System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixPolicyNode Org.BouncyCastle.Pkix.PkixPolicyNode::get_Parent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixPolicyNode::set_Parent(Org.BouncyCastle.Pkix.PkixPolicyNode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixPolicyNode::.ctor(System.Collections.Generic.IEnumerable`1,System.Int32,System.Collections.Generic.ISet`1,Org.BouncyCastle.Pkix.PkixPolicyNode,System.Collections.Generic.ISet`1,System.String,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixPolicyNode::.ctor(System.Collections.Generic.IEnumerable`1,System.Int32,System.Collections.Generic.ISet`1,Org.BouncyCastle.Pkix.PkixPolicyNode,System.Collections.Generic.ISet`1,System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixPolicyNode::AddChild(Org.BouncyCastle.Pkix.PkixPolicyNode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixPolicyNode::HasExpectedPolicy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixPolicyNode::RemoveChild(Org.BouncyCastle.Pkix.PkixPolicyNode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.PkixPolicyNode::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.PkixPolicyNode::ToString(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Pkix.PkixPolicyNode::Clone()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixPolicyNode Org.BouncyCastle.Pkix.PkixPolicyNode::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.ReasonsMask::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.ReasonsMask::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.ReasonsMask::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.ReasonsMask::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.ReasonsMask::AddReasons(Org.BouncyCastle.Pkix.ReasonsMask)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.ReasonsMask::get_IsAllReasons()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.ReasonsMask Org.BouncyCastle.Pkix.ReasonsMask::Intersect(Org.BouncyCastle.Pkix.ReasonsMask)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.ReasonsMask::HasNewReasons(Org.BouncyCastle.Pkix.ReasonsMask)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ReasonFlags Org.BouncyCastle.Pkix.ReasonsMask::get_Reasons()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.ReasonsMask::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCrlB2(Org.BouncyCastle.Asn1.X509.DistributionPoint,System.Object,Org.BouncyCastle.X509.X509Crl)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCertBC(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,Org.BouncyCastle.Pkix.PkixNameConstraintValidator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareNextCertA(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixPolicyNode Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCertD(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,System.Collections.Generic.HashSet`1,Org.BouncyCastle.Pkix.PkixPolicyNode,System.Collections.Generic.List`1[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCrlB1(Org.BouncyCastle.Asn1.X509.DistributionPoint,System.Object,Org.BouncyCastle.X509.X509Crl)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.ReasonsMask Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCrlD(Org.BouncyCastle.X509.X509Crl,Org.BouncyCastle.Asn1.X509.DistributionPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCrlF(Org.BouncyCastle.X509.X509Crl,System.Object,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Pkix.PkixParameters,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCrlG(Org.BouncyCastle.X509.X509Crl,System.Collections.Generic.HashSet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Crl Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCrlH(System.Collections.Generic.HashSet`1,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::CheckCrls(Org.BouncyCastle.Pkix.PkixParameters,Org.BouncyCastle.X509.X509Certificate,System.DateTime,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixPolicyNode Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareCertB(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,System.Collections.Generic.List`1[],Org.BouncyCastle.Pkix.PkixPolicyNode,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1[] Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCrlA1ii(System.DateTime,Org.BouncyCastle.Pkix.PkixParameters,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.X509.X509Crl)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCrlA1i(System.DateTime,Org.BouncyCastle.Pkix.PkixParameters,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.X509.X509Crl)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCertF(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,Org.BouncyCastle.Pkix.PkixPolicyNode,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCertA(Org.BouncyCastle.Pkix.PkixCertPath,Org.BouncyCastle.Pkix.PkixParameters,System.Int32,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareNextCertI1(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareNextCertI2(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareNextCertG(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,Org.BouncyCastle.Pkix.PkixNameConstraintValidator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareNextCertJ(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareNextCertK(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareNextCertL(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareNextCertM(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareNextCertN(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareNextCertO(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,System.Collections.Generic.ISet`1,System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareNextCertH1(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareNextCertH2(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::PrepareNextCertH3(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::WrapupCertA(System.Int32,Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::WrapupCertB(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::WrapupCertF(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,System.Collections.Generic.IEnumerable`1,System.Collections.Generic.ISet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixPolicyNode Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::WrapupCertG(Org.BouncyCastle.Pkix.PkixCertPath,Org.BouncyCastle.Pkix.PkixParameters,System.Collections.Generic.ISet`1,System.Int32,System.Collections.Generic.List`1[],Org.BouncyCastle.Pkix.PkixPolicyNode,System.Collections.Generic.HashSet`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCrlC(Org.BouncyCastle.X509.X509Crl,Org.BouncyCastle.X509.X509Crl,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCrlI(System.DateTime,Org.BouncyCastle.X509.X509Crl,System.Object,Org.BouncyCastle.Pkix.CertStatus,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCrlJ(System.DateTime,Org.BouncyCastle.X509.X509Crl,System.Object,Org.BouncyCastle.Pkix.CertStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixPolicyNode Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::ProcessCertE(Org.BouncyCastle.Pkix.PkixCertPath,System.Int32,Org.BouncyCastle.Pkix.PkixPolicyNode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3281CertPathUtilities::ProcessAttrCert7(Org.BouncyCastle.X509.X509V2AttributeCertificate,Org.BouncyCastle.Pkix.PkixCertPath,Org.BouncyCastle.Pkix.PkixCertPath,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3281CertPathUtilities::CheckCrls(Org.BouncyCastle.X509.X509V2AttributeCertificate,Org.BouncyCastle.Pkix.PkixParameters,Org.BouncyCastle.X509.X509Certificate,System.DateTime,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3281CertPathUtilities::AdditionalChecks(Org.BouncyCastle.X509.X509V2AttributeCertificate,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3281CertPathUtilities::ProcessAttrCert5(Org.BouncyCastle.X509.X509V2AttributeCertificate,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3281CertPathUtilities::ProcessAttrCert4(Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3281CertPathUtilities::ProcessAttrCert3(Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathValidatorResult Org.BouncyCastle.Pkix.Rfc3281CertPathUtilities::ProcessAttrCert2(Org.BouncyCastle.Pkix.PkixCertPath,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPath Org.BouncyCastle.Pkix.Rfc3281CertPathUtilities::ProcessAttrCert1(Org.BouncyCastle.X509.X509V2AttributeCertificate,Org.BouncyCastle.Pkix.PkixParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.TrustAnchor::.ctor(Org.BouncyCastle.X509.X509Certificate,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.TrustAnchor::.ctor(Org.BouncyCastle.X509.X509Certificate,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.TrustAnchor::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.TrustAnchor::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.TrustAnchor::.ctor(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.TrustAnchor::.ctor(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate Org.BouncyCastle.Pkix.TrustAnchor::get_TrustedCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Pkix.TrustAnchor::get_CA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.TrustAnchor::get_CAName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pkix.TrustAnchor::get_CAPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkix.TrustAnchor::get_GetNameConstraints()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.TrustAnchor::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.AsymmetricKeyEntry::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.AsymmetricKeyEntry::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.AsymmetricKeyEntry::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.AsymmetricKeyEntry::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pkcs.AsymmetricKeyEntry::get_Key()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.AsymmetricKeyEntry::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkcs.AsymmetricKeyEntry::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.EncryptedPrivateKeyInfoFactory::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo Org.BouncyCastle.Pkcs.EncryptedPrivateKeyInfoFactory::CreateEncryptedPrivateKeyInfo(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Char[],System.Byte[],System.Int32,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo Org.BouncyCastle.Pkcs.EncryptedPrivateKeyInfoFactory::CreateEncryptedPrivateKeyInfo(System.String,System.Char[],System.Byte[],System.Int32,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo Org.BouncyCastle.Pkcs.EncryptedPrivateKeyInfoFactory::CreateEncryptedPrivateKeyInfo(System.String,System.Char[],System.Byte[],System.Int32,Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo Org.BouncyCastle.Pkcs.EncryptedPrivateKeyInfoFactory::CreateEncryptedPrivateKeyInfo(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Char[],System.Byte[],System.Int32,Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo Org.BouncyCastle.Pkcs.EncryptedPrivateKeyInfoFactory::CreateEncryptedPrivateKeyInfo(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Char[],System.Byte[],System.Int32,Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::.ctor(Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::Verify()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::Verify(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::Verify(Org.BouncyCastle.Crypto.IVerifierFactoryProvider)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::Verify(Org.BouncyCastle.Crypto.IVerifierFactory)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::GetSignatureName(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::GetRequestedExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::GetDataToSign()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::SignRequest(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::SignRequest(Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Entry::.ctor(System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Entry::.ctor(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Pkcs.Pkcs12Entry::get_Item(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Pkcs.Pkcs12Entry::get_BagAttributeKeys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs12Entry::get_HasFriendlyName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Entry::SetFriendlyName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs12Entry::TryGetAttribute(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store/CertID::.ctor(Org.BouncyCastle.Pkcs.X509CertificateEntry)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store/CertID::.ctor(Org.BouncyCastle.Pkcs.X509CertificateEntry)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store/CertID::.ctor(Org.BouncyCastle.X509.X509Certificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store/CertID::.ctor(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store/CertID::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store/CertID::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkcs.Pkcs12Store/CertID::get_ID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs12Store/CertID::Equals(Org.BouncyCastle.Pkcs.Pkcs12Store/CertID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs12Store/CertID::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkcs.Pkcs12Store/CertID::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store/<>c__DisplayClass56_0`1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store/<>c__DisplayClass56_0`1::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs12Store/<>c__DisplayClass56_0`1::b__0(K)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store/<>c__DisplayClass57_0`1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store/<>c__DisplayClass57_0`1::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs12Store/<>c__DisplayClass57_0`1::b__0(K)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,System.Boolean,System.Boolean,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,System.Boolean,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::Load(System.IO.Stream,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.AsymmetricKeyEntry Org.BouncyCastle.Pkcs.Pkcs12Store::GetKey(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs12Store::IsCertificateEntry(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs12Store::IsKeyEntry(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Pkcs.Pkcs12Store::get_Aliases()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs12Store::ContainsAlias(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.X509CertificateEntry Org.BouncyCastle.Pkcs.Pkcs12Store::GetCertificate(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkcs.Pkcs12Store::GetCertificateAlias(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.X509CertificateEntry[] Org.BouncyCastle.Pkcs.Pkcs12Store::GetCertificateChain(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::SetCertificateEntry(System.String,Org.BouncyCastle.Pkcs.X509CertificateEntry)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::SetFriendlyName(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::SetKeyEntry(System.String,Org.BouncyCastle.Pkcs.AsymmetricKeyEntry,Org.BouncyCastle.Pkcs.X509CertificateEntry[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::DeleteEntry(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs12Store::IsEntryOfType(System.String,System.Type)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkcs.Pkcs12Store::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::Save(System.IO.Stream,System.Char[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkcs.Pkcs12Store::CalculatePbeMac(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],System.Int32,System.Char[],System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs12Store::VerifyPbeMac(Org.BouncyCastle.Asn1.Pkcs.MacData,System.Char[],System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12Store Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::SetCertAlgorithm(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::SetCertAlgorithm(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::SetEnableOracleTrustedKeyUsage(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::SetKeyAlgorithm(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::SetKeyAlgorithm(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::SetOverwriteFriendlyName(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::SetReverseCertificates(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder::SetUseDerEncoding(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkcs.Pkcs12Utilities::ConvertToDefiniteLength(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkcs.Pkcs12Utilities::ConvertToDefiniteLength(System.Byte[],System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Utilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Utilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfo::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfo::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfo::ToAsn1Structure()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfo::GetEncryptedData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfo::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfo::DecryptPrivateKeyInfo(Org.BouncyCastle.Crypto.IDecryptorBuilderProvider)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfoBuilder::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfoBuilder::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfoBuilder::.ctor(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfoBuilder::.ctor(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfo Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfoBuilder::Build(Org.BouncyCastle.Crypto.ICipherBuilder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsIOException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsIOException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsIOException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsIOException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsIOException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsIOException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PkcsIOException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo Org.BouncyCastle.Pkcs.PrivateKeyInfoFactory::CreatePrivateKeyInfo(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo Org.BouncyCastle.Pkcs.PrivateKeyInfoFactory::CreatePrivateKeyInfo(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo Org.BouncyCastle.Pkcs.PrivateKeyInfoFactory::CreatePrivateKeyInfo(System.Char[],Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo Org.BouncyCastle.Pkcs.PrivateKeyInfoFactory::CreatePrivateKeyInfo(System.Char[],System.Boolean,Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.X509CertificateEntry::.ctor(Org.BouncyCastle.X509.X509Certificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.X509CertificateEntry::.ctor(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.X509CertificateEntry::.ctor(Org.BouncyCastle.X509.X509Certificate,System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.X509CertificateEntry::.ctor(Org.BouncyCastle.X509.X509Certificate,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate Org.BouncyCastle.Pkcs.X509CertificateEntry::get_Certificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.X509CertificateEntry::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkcs.X509CertificateEntry::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Char[] Org.BouncyCastle.OpenSsl.IPasswordFinder::GetPassword()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.MiscPemGenerator::.ctor(System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.MiscPemGenerator::.ctor(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.MiscPemGenerator::.ctor(System.Object,System.String,System.Char[],Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.MiscPemGenerator::.ctor(System.Object,System.String,System.Char[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObject Org.BouncyCastle.OpenSsl.MiscPemGenerator::Generate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemReader::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemReader::.ctor(System.IO.TextReader)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemReader::.ctor(System.IO.TextReader)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemReader::.ctor(System.IO.TextReader,Org.BouncyCastle.OpenSsl.IPasswordFinder)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemReader::.ctor(System.IO.TextReader,Org.BouncyCastle.OpenSsl.IPasswordFinder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.OpenSsl.PemReader::ReadObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.OpenSsl.PemUtilities::Crypt(System.Boolean,System.Byte[],System.Char[],System.String,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemUtilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemWriter::.ctor(System.IO.TextWriter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemWriter::.ctor(System.IO.TextWriter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemWriter::WriteObject(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemWriter::WriteObject(System.Object,System.String,System.Char[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.Pkcs8Generator::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.Pkcs8Generator::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.Pkcs8Generator::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.Pkcs8Generator::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.Pkcs8Generator::set_SecureRandom(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.Pkcs8Generator::set_Password(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.Pkcs8Generator::set_IterationCount(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObject Org.BouncyCastle.OpenSsl.Pkcs8Generator::Generate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.Pkcs8Generator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.EncryptionException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.EncryptionException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.EncryptionException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.EncryptionException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.EncryptionException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.EncryptionException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.EncryptionException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.PasswordException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.PasswordException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.PasswordException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.PasswordException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.PasswordException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.PasswordException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.PasswordException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.AgreementUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.AgreementUtilities::GetAlgorithmName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBasicAgreement Org.BouncyCastle.Security.AgreementUtilities::GetBasicAgreement(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBasicAgreement Org.BouncyCastle.Security.AgreementUtilities::GetBasicAgreement(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBasicAgreement Org.BouncyCastle.Security.AgreementUtilities::GetBasicAgreementWithKdf(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBasicAgreement Org.BouncyCastle.Security.AgreementUtilities::GetBasicAgreementWithKdf(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBasicAgreement Org.BouncyCastle.Security.AgreementUtilities::GetBasicAgreementWithKdf(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IRawAgreement Org.BouncyCastle.Security.AgreementUtilities::GetRawAgreement(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IRawAgreement Org.BouncyCastle.Security.AgreementUtilities::GetRawAgreement(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.CipherUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.CipherUtilities::GetAlgorithmName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBufferedCipher Org.BouncyCastle.Security.CipherUtilities::GetCipher(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBufferedCipher Org.BouncyCastle.Security.CipherUtilities::GetCipher(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.DigestUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.DigestUtilities::CalculateDigest(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.DigestUtilities::CalculateDigest(System.String,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.DigestUtilities::CalculateDigest(System.String,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.DigestUtilities::DoFinal(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.DigestUtilities::DoFinal(Org.BouncyCastle.Crypto.IDigest,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.DigestUtilities::DoFinal(Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.DigestUtilities::GetAlgorithmName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Security.DigestUtilities::GetDigest(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Security.DigestUtilities::GetDigest(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Security.DigestUtilities::GetObjectIdentifier(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Security.Cryptography.X509Certificates.X509Certificate Org.BouncyCastle.Security.DotNetUtilities::ToX509Certificate(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Security.Cryptography.X509Certificates.X509Certificate Org.BouncyCastle.Security.DotNetUtilities::ToX509Certificate(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate Org.BouncyCastle.Security.DotNetUtilities::FromX509Certificate(System.Security.Cryptography.X509Certificates.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Security.DotNetUtilities::GetDsaKeyPair(System.Security.Cryptography.DSA)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Security.DotNetUtilities::GetDsaKeyPair(System.Security.Cryptography.DSAParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters Org.BouncyCastle.Security.DotNetUtilities::GetDsaPublicKey(System.Security.Cryptography.DSA)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters Org.BouncyCastle.Security.DotNetUtilities::GetDsaPublicKey(System.Security.Cryptography.DSAParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Security.DotNetUtilities::GetECDsaKeyPair(System.Security.Cryptography.ECDsa)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters Org.BouncyCastle.Security.DotNetUtilities::GetECDsaPublicKey(System.Security.Cryptography.ECDsa)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Security.DotNetUtilities::GetECKeyPair(System.String,System.Security.Cryptography.ECParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters Org.BouncyCastle.Security.DotNetUtilities::GetECPublicKey(System.String,System.Security.Cryptography.ECParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Security.DotNetUtilities::GetRsaKeyPair(System.Security.Cryptography.RSA)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Security.DotNetUtilities::GetRsaKeyPair(System.Security.Cryptography.RSAParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters Org.BouncyCastle.Security.DotNetUtilities::GetRsaPublicKey(System.Security.Cryptography.RSA)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters Org.BouncyCastle.Security.DotNetUtilities::GetRsaPublicKey(System.Security.Cryptography.RSAParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Security.DotNetUtilities::GetKeyPair(System.Security.Cryptography.AsymmetricAlgorithm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Security.Cryptography.RSA Org.BouncyCastle.Security.DotNetUtilities::ToRSA(Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Security.Cryptography.RSA Org.BouncyCastle.Security.DotNetUtilities::ToRSA(Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters,System.Security.Cryptography.CspParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Security.Cryptography.RSA Org.BouncyCastle.Security.DotNetUtilities::ToRSA(Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Security.Cryptography.RSA Org.BouncyCastle.Security.DotNetUtilities::ToRSA(Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters,System.Security.Cryptography.CspParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Security.Cryptography.RSA Org.BouncyCastle.Security.DotNetUtilities::ToRSA(Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Security.Cryptography.RSA Org.BouncyCastle.Security.DotNetUtilities::ToRSA(Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure,System.Security.Cryptography.CspParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Security.Cryptography.RSAParameters Org.BouncyCastle.Security.DotNetUtilities::ToRSAParameters(Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Security.Cryptography.RSAParameters Org.BouncyCastle.Security.DotNetUtilities::ToRSAParameters(Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Security.Cryptography.RSAParameters Org.BouncyCastle.Security.DotNetUtilities::ToRSAParameters(Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.GeneralSecurityException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.GeneralSecurityException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.GeneralSecurityException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.GeneralSecurityException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.GeneralSecurityException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.GeneralSecurityException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.GeneralSecurityException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.GeneratorUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.GeneratorUtilities::GetCanonicalKeyGeneratorAlgorithm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.GeneratorUtilities::GetCanonicalKeyPairGeneratorAlgorithm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.CipherKeyGenerator Org.BouncyCastle.Security.GeneratorUtilities::GetKeyGenerator(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.CipherKeyGenerator Org.BouncyCastle.Security.GeneratorUtilities::GetKeyGenerator(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IAsymmetricCipherKeyPairGenerator Org.BouncyCastle.Security.GeneratorUtilities::GetKeyPairGenerator(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IAsymmetricCipherKeyPairGenerator Org.BouncyCastle.Security.GeneratorUtilities::GetKeyPairGenerator(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.GeneratorUtilities::GetDefaultKeySize(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.GeneratorUtilities::GetDefaultKeySize(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidKeyException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidKeyException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidKeyException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidKeyException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidKeyException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidKeyException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidKeyException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidParameterException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidParameterException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidParameterException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidParameterException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidParameterException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidParameterException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.InvalidParameterException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore/JksTrustedCertEntry::.ctor(System.DateTime,Org.BouncyCastle.X509.X509Certificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore/JksTrustedCertEntry::.ctor(System.DateTime,Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore/JksKeyEntry::.ctor(System.DateTime,System.Byte[],Org.BouncyCastle.X509.X509Certificate[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore/JksKeyEntry::.ctor(System.DateTime,System.Byte[],Org.BouncyCastle.X509.X509Certificate[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore/JksKeyEntry::.ctor(System.DateTime,Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo,Org.BouncyCastle.X509.X509Certificate[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore/JksKeyEntry::.ctor(System.DateTime,Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo,Org.BouncyCastle.X509.X509Certificate[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore/ErasableByteStream::.ctor(System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore/ErasableByteStream::.ctor(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.JksStore::Probe(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Security.JksStore::GetKey(System.String,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate[] Org.BouncyCastle.Security.JksStore::GetCertificateChain(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate Org.BouncyCastle.Security.JksStore::GetCertificate(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Nullable`1 Org.BouncyCastle.Security.JksStore::GetCreationDate(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::SetKeyEntry(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Char[],Org.BouncyCastle.X509.X509Certificate[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::SetKeyEntry(System.String,System.Byte[],Org.BouncyCastle.X509.X509Certificate[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::SetCertificateEntry(System.String,Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::DeleteEntry(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Security.JksStore::get_Aliases()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.JksStore::ContainsAlias(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.JksStore::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.JksStore::IsKeyEntry(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.JksStore::IsCertificateEntry(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.JksStore::GetCertificateAlias(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::Save(System.IO.Stream,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::Load(System.IO.Stream,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::LoadUnchecked(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.KemUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.KemUtilities::Decapsulate(Org.BouncyCastle.Crypto.IKemDecapsulator,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Tuple`2 Org.BouncyCastle.Security.KemUtilities::Encapsulate(Org.BouncyCastle.Crypto.IKemEncapsulator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IKemDecapsulator Org.BouncyCastle.Security.KemUtilities::GetDecapsulator(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IKemDecapsulator Org.BouncyCastle.Security.KemUtilities::GetDecapsulator(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IKemEncapsulator Org.BouncyCastle.Security.KemUtilities::GetEncapsulator(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IKemEncapsulator Org.BouncyCastle.Security.KemUtilities::GetEncapsulator(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.KemUtilities::TryGetDecapsulator(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Crypto.IKemDecapsulator&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.KemUtilities::TryGetDecapsulator(System.String,Org.BouncyCastle.Crypto.IKemDecapsulator&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.KemUtilities::TryGetEncapsulator(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Crypto.IKemEncapsulator&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.KemUtilities::TryGetEncapsulator(System.String,Org.BouncyCastle.Crypto.IKemEncapsulator&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.KeyException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.KeyException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.KeyException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.KeyException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.KeyException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.KeyException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.KeyException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.MacUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.MacUtilities::CalculateMac(System.String,Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.MacUtilities::DoFinal(Org.BouncyCastle.Crypto.IMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.MacUtilities::DoFinal(Org.BouncyCastle.Crypto.IMac,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.MacUtilities::GetAlgorithmName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMac Org.BouncyCastle.Security.MacUtilities::GetMac(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMac Org.BouncyCastle.Security.MacUtilities::GetMac(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.ParameterUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.ParameterUtilities::GetCanonicalAlgorithmName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Security.ParameterUtilities::CreateKeyParameter(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Security.ParameterUtilities::CreateKeyParameter(System.String,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Security.ParameterUtilities::CreateKeyParameter(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Security.ParameterUtilities::CreateKeyParameter(System.String,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Security.ParameterUtilities::GetCipherParameters(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Security.ParameterUtilities::GetCipherParameters(System.String,Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Security.ParameterUtilities::GenerateParameters(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Security.ParameterUtilities::GenerateParameters(System.String,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Security.ParameterUtilities::IgnoreRandom(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Security.ParameterUtilities::WithContext(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Security.ParameterUtilities::WithRandom(Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.PbeUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Security.PbeUtilities::GetObjectIdentifier(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.PbeUtilities::IsPkcs12(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.PbeUtilities::IsPkcs5Scheme1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.PbeUtilities::IsPkcs5Scheme2(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.PbeUtilities::IsOpenSsl(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.PbeUtilities::IsPbeAlgorithm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Security.PbeUtilities::GenerateAlgorithmParameters(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Security.PbeUtilities::GenerateAlgorithmParameters(System.String,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Security.PbeUtilities::GenerateAlgorithmParameters(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Byte[],System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Security.PbeUtilities::GenerateCipherParameters(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Char[],Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Security.PbeUtilities::GenerateCipherParameters(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Char[],System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Security.PbeUtilities::GenerateCipherParameters(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Security.PbeUtilities::GenerateCipherParameters(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Char[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Security.PbeUtilities::GenerateCipherParameters(System.String,System.Char[],Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Security.PbeUtilities::GenerateCipherParameters(System.String,System.Char[],System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Security.PbeUtilities::CreateEngine(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Security.PbeUtilities::CreateEngine(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Security.PbeUtilities::CreateEngine(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.PbeUtilities::GetEncodingName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Security.PrivateKeyFactory::CreateKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Security.PrivateKeyFactory::CreateKey(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Security.PrivateKeyFactory::CreateKey(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Security.PrivateKeyFactory::DecryptKey(System.Char[],Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Security.PrivateKeyFactory::DecryptKey(System.Char[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Security.PrivateKeyFactory::DecryptKey(System.Char[],System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.PrivateKeyFactory::EncryptKey(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Char[],System.Byte[],System.Int32,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.PrivateKeyFactory::EncryptKey(System.String,System.Char[],System.Byte[],System.Int32,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Security.PublicKeyFactory::CreateKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Security.PublicKeyFactory::CreateKey(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Security.PublicKeyFactory::CreateKey(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPublicKeyParameters Org.BouncyCastle.Security.PublicKeyFactory::GetMLDsaPublicKey(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPublicKeyParameters Org.BouncyCastle.Security.PublicKeyFactory::GetMLKemPublicKey(Org.BouncyCastle.Crypto.Parameters.MLKemParameters,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaPublicKeyParameters Org.BouncyCastle.Security.PublicKeyFactory::GetSlhDsaPublicKey(Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.SecureRandom::GetNextBytes(Org.BouncyCastle.Security.SecureRandom,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Security.SecureRandom::GetInstance(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Security.SecureRandom::GetInstance(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecureRandom::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecureRandom::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecureRandom::.ctor(Org.BouncyCastle.Crypto.Prng.IRandomGenerator)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecureRandom::.ctor(Org.BouncyCastle.Crypto.Prng.IRandomGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecureRandom::.ctor(Org.BouncyCastle.Crypto.Prng.IRandomGenerator,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecureRandom::.ctor(Org.BouncyCastle.Crypto.Prng.IRandomGenerator,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.SecureRandom::GenerateSeed(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecureRandom::SetSeed(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecureRandom::SetSeed(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.SecureRandom::Next()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.SecureRandom::Next(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.SecureRandom::Next(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecureRandom::NextBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecureRandom::NextBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Double Org.BouncyCastle.Security.SecureRandom::NextDouble()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.SecureRandom::NextInt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Security.SecureRandom::NextLong()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecureRandom::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecurityUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecurityUtilityException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecurityUtilityException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecurityUtilityException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecurityUtilityException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecurityUtilityException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecurityUtilityException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecurityUtilityException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SignatureException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SignatureException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SignatureException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SignatureException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SignatureException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SignatureException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SignatureException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SignerUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Security.SignerUtilities::get_Algorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Security.SignerUtilities::GetDefaultX509Parameters(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Security.SignerUtilities::GetDefaultX509Parameters(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.SignerUtilities::GetEncodingName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Security.SignerUtilities::GetObjectIdentifier(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISigner Org.BouncyCastle.Security.SignerUtilities::GetSigner(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISigner Org.BouncyCastle.Security.SignerUtilities::GetSigner(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISigner Org.BouncyCastle.Security.SignerUtilities::InitSigner(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISigner Org.BouncyCastle.Security.SignerUtilities::InitSigner(System.String,System.Boolean,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.WrapperUtilities/BufferedCipherWrapper::.ctor(Org.BouncyCastle.Crypto.IBufferedCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.WrapperUtilities/BufferedCipherWrapper::.ctor(Org.BouncyCastle.Crypto.IBufferedCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.WrapperUtilities/BufferedCipherWrapper::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.WrapperUtilities/BufferedCipherWrapper::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.WrapperUtilities/BufferedCipherWrapper::Wrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.WrapperUtilities/BufferedCipherWrapper::Unwrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.WrapperUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IWrapper Org.BouncyCastle.Security.WrapperUtilities::GetWrapper(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IWrapper Org.BouncyCastle.Security.WrapperUtilities::GetWrapper(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.WrapperUtilities::GetAlgorithmName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateEncodingException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateEncodingException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateEncodingException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateEncodingException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateEncodingException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateEncodingException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateEncodingException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateExpiredException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateExpiredException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateExpiredException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateExpiredException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateExpiredException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateExpiredException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateExpiredException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateNotYetValidException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateNotYetValidException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateNotYetValidException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateNotYetValidException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateNotYetValidException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateNotYetValidException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateNotYetValidException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateParsingException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateParsingException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateParsingException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateParsingException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateParsingException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateParsingException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CertificateParsingException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CrlException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CrlException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CrlException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CrlException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CrlException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CrlException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.Certificates.CrlException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspResp/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspResp/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspResp/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.SingleResp Org.BouncyCastle.Ocsp.BasicOcspResp/<>c::b__11_0(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspResp::.ctor(Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspResp::.ctor(Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Ocsp.BasicOcspResp::GetTbsResponseData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.BasicOcspResp::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.RespID Org.BouncyCastle.Ocsp.BasicOcspResp::get_ResponderId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Ocsp.BasicOcspResp::get_ProducedAt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.SingleResp[] Org.BouncyCastle.Ocsp.BasicOcspResp::get_Responses()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Ocsp.BasicOcspResp::get_ResponseExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Ocsp.BasicOcspResp::get_SignatureAlgName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Ocsp.BasicOcspResp::get_SignatureAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Ocsp.BasicOcspResp::GetSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate[] Org.BouncyCastle.Ocsp.BasicOcspResp::GetCerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Ocsp.BasicOcspResp::GetCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Ocsp.BasicOcspResp::Verify(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Ocsp.BasicOcspResp::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Ocsp.BasicOcspResp::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.BasicOcspResp::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspRespGenerator/ResponseObject::.ctor(Org.BouncyCastle.Ocsp.CertificateID,Org.BouncyCastle.Ocsp.CertificateStatus,System.DateTime,System.Nullable`1,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspRespGenerator/ResponseObject::.ctor(Org.BouncyCastle.Ocsp.CertificateID,Org.BouncyCastle.Ocsp.CertificateStatus,System.DateTime,System.Nullable`1,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.SingleResponse Org.BouncyCastle.Ocsp.BasicOcspRespGenerator/ResponseObject::ToResponse()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::.ctor(Org.BouncyCastle.Ocsp.RespID)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::.ctor(Org.BouncyCastle.Ocsp.RespID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::AddResponse(Org.BouncyCastle.Ocsp.CertificateID,Org.BouncyCastle.Ocsp.CertificateStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::AddResponse(Org.BouncyCastle.Ocsp.CertificateID,Org.BouncyCastle.Ocsp.CertificateStatus,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::AddResponse(Org.BouncyCastle.Ocsp.CertificateID,Org.BouncyCastle.Ocsp.CertificateStatus,System.Nullable`1,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::AddResponse(Org.BouncyCastle.Ocsp.CertificateID,Org.BouncyCastle.Ocsp.CertificateStatus,System.DateTime,System.Nullable`1,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::SetResponseExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.BasicOcspResp Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::Generate(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate[],System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.BasicOcspResp Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::Generate(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate[],System.DateTime,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.BasicOcspResp Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::Generate(Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.X509.X509Certificate[],System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::get_SignatureAlgNames()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.CertificateID::.ctor(Org.BouncyCastle.Asn1.Ocsp.CertID)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.CertificateID::.ctor(Org.BouncyCastle.Asn1.Ocsp.CertID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.CertificateID::.ctor(System.String,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.CertificateID::.ctor(System.String,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.CertificateID::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.CertificateID::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.CertificateID::.ctor(Org.BouncyCastle.Crypto.IDigestFactory,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.CertificateID::.ctor(Org.BouncyCastle.Crypto.IDigestFactory,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Ocsp.CertificateID::get_HashAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Ocsp.CertificateID::GetIssuerNameHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Ocsp.CertificateID::GetIssuerKeyHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Ocsp.CertificateID::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Ocsp.CertificateID::MatchesIssuer(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Ocsp.CertificateID::MatchesIssuer(Org.BouncyCastle.Crypto.IDigestFactory,Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertID Org.BouncyCastle.Ocsp.CertificateID::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Ocsp.CertificateID::Equals(Org.BouncyCastle.Ocsp.CertificateID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Ocsp.CertificateID::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.CertificateID::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.CertificateID Org.BouncyCastle.Ocsp.CertificateID::DeriveCertificateID(Org.BouncyCastle.Ocsp.CertificateID,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.CertificateID::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.CertificateStatus::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReq/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReq/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReq/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.Req Org.BouncyCastle.Ocsp.OcspReq/<>c::b__10_0(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReq::.ctor(Org.BouncyCastle.Asn1.Ocsp.OcspRequest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReq::.ctor(Org.BouncyCastle.Asn1.Ocsp.OcspRequest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReq::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReq::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReq::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReq::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReq::.ctor(Org.BouncyCastle.Asn1.Asn1InputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Ocsp.OcspReq::GetTbsRequest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OcspReq::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Ocsp.OcspReq::get_RequestorName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.Req[] Org.BouncyCastle.Ocsp.OcspReq::GetRequestList()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Ocsp.OcspReq::get_RequestExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Ocsp.OcspReq::get_SignatureAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Ocsp.OcspReq::GetSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate[] Org.BouncyCastle.Ocsp.OcspReq::GetCerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Ocsp.OcspReq::GetCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Ocsp.OcspReq::get_IsSigned()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Ocsp.OcspReq::Verify(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Ocsp.OcspReq::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReqGenerator/RequestObject::.ctor(Org.BouncyCastle.Ocsp.CertificateID,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReqGenerator/RequestObject::.ctor(Org.BouncyCastle.Ocsp.CertificateID,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.Request Org.BouncyCastle.Ocsp.OcspReqGenerator/RequestObject::ToRequest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReqGenerator/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReqGenerator/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReqGenerator/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Ocsp.OcspReqGenerator/<>c::b__9_0(Org.BouncyCastle.Ocsp.OcspReqGenerator/RequestObject)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReqGenerator::AddRequest(Org.BouncyCastle.Ocsp.CertificateID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReqGenerator::AddRequest(Org.BouncyCastle.Ocsp.CertificateID,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReqGenerator::SetRequestorName(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReqGenerator::SetRequestorName(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReqGenerator::SetRequestExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspReq Org.BouncyCastle.Ocsp.OcspReqGenerator::Generate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspReq Org.BouncyCastle.Ocsp.OcspReqGenerator::Generate(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspReq Org.BouncyCastle.Ocsp.OcspReqGenerator::Generate(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Ocsp.OcspReqGenerator::get_SignatureAlgNames()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReqGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspReqGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspResp::.ctor(Org.BouncyCastle.Asn1.Ocsp.OcspResponse)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspResp::.ctor(Org.BouncyCastle.Asn1.Ocsp.OcspResponse)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspResp::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspResp::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspResp::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspResp::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspResp::.ctor(Org.BouncyCastle.Asn1.Asn1InputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OcspResp::get_Status()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Ocsp.OcspResp::GetResponseObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Ocsp.OcspResp::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Ocsp.OcspResp::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OcspResp::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspResp Org.BouncyCastle.Ocsp.OCSPRespGenerator::Generate(System.Int32,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OCSPRespGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OCSPRespGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspRespStatus::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Ocsp.OcspUtilities::GetAlgorithmOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Ocsp.OcspUtilities::GetAlgorithmName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Ocsp.OcspUtilities::GetSigAlgID(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Ocsp.OcspUtilities::get_AlgNames()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.OcspUtilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.Req::.ctor(Org.BouncyCastle.Asn1.Ocsp.Request)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.Req::.ctor(Org.BouncyCastle.Asn1.Ocsp.Request)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.CertificateID Org.BouncyCastle.Ocsp.Req::GetCertID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Ocsp.Req::get_SingleRequestExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RespData/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RespData/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RespData/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.SingleResp Org.BouncyCastle.Ocsp.RespData/<>c::b__7_0(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RespData::.ctor(Org.BouncyCastle.Asn1.Ocsp.ResponseData)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RespData::.ctor(Org.BouncyCastle.Asn1.Ocsp.ResponseData)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.RespData::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.RespID Org.BouncyCastle.Ocsp.RespData::GetResponderId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Ocsp.RespData::get_ProducedAt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.SingleResp[] Org.BouncyCastle.Ocsp.RespData::GetResponses()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Ocsp.RespData::get_ResponseExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RespID::.ctor(Org.BouncyCastle.Asn1.Ocsp.ResponderID)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RespID::.ctor(Org.BouncyCastle.Asn1.Ocsp.ResponderID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RespID::.ctor(Org.BouncyCastle.Asn1.X509.X509Name)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RespID::.ctor(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RespID::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RespID::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponderID Org.BouncyCastle.Ocsp.RespID::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Ocsp.RespID::Equals(Org.BouncyCastle.Ocsp.RespID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Ocsp.RespID::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.RespID::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RevokedStatus::.ctor(Org.BouncyCastle.Asn1.Ocsp.RevokedInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RevokedStatus::.ctor(Org.BouncyCastle.Asn1.Ocsp.RevokedInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RevokedStatus::.ctor(System.DateTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RevokedStatus::.ctor(System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RevokedStatus::.ctor(System.DateTime,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.RevokedStatus::.ctor(System.DateTime,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Ocsp.RevokedStatus::get_RevocationTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Ocsp.RevokedStatus::get_HasRevocationReason()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.RevokedStatus::get_RevocationReason()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.SingleResp::.ctor(Org.BouncyCastle.Asn1.Ocsp.SingleResponse)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.SingleResp::.ctor(Org.BouncyCastle.Asn1.Ocsp.SingleResponse)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.CertificateID Org.BouncyCastle.Ocsp.SingleResp::GetCertID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Ocsp.SingleResp::GetCertStatus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Ocsp.SingleResp::get_ThisUpdate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Nullable`1 Org.BouncyCastle.Ocsp.SingleResp::get_NextUpdate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Ocsp.SingleResp::get_SingleExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.UnknownStatus::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Ocsp.UnknownStatus::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Mozilla.SignedPublicKeyAndChallenge::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Mozilla.SignedPublicKeyAndChallenge::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Mozilla.SignedPublicKeyAndChallenge::.ctor(Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Mozilla.SignedPublicKeyAndChallenge::.ctor(Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Mozilla.SignedPublicKeyAndChallenge::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Mozilla.SignedPublicKeyAndChallenge::IsSignatureValid(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Mozilla.SignedPublicKeyAndChallenge::IsSignatureValid(Org.BouncyCastle.Crypto.IVerifierFactoryProvider)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge Org.BouncyCastle.Mozilla.SignedPublicKeyAndChallenge::ToAsn1Structure()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Mozilla.SignedPublicKeyAndChallenge::Verify(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Mozilla.SignedPublicKeyAndChallenge::Verify(Org.BouncyCastle.Crypto.IVerifierFactoryProvider)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Arbitrary(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.UInt32[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.String,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Byte[],System.Int32,System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Byte[],System.Int32,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.Byte[],System.Int32,System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.Byte[],System.Int32,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.Random)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.Random)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.Int32,System.Random)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::.ctor(System.Int32,System.Int32,System.Random)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Abs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Add(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::And(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::AndNot(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::get_BitCount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::get_BitLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::CompareTo(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::CompareTo(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Divide(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Math.BigInteger::DivideAndRemainder(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.BigInteger::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.BigInteger::Equals(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Gcd(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::get_IntValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::get_IntValueExact()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.BigInteger::IsProbablePrime(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.BigInteger::IsProbablePrime(System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.BigInteger::RabinMillerTest(System.Int32,System.Random)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.BigInteger::RabinMillerTest(System.Int32,System.Random,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Math.BigInteger::get_LongValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Math.BigInteger::get_LongValueExact()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Max(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Min(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Mod(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ModDivide(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ModInverse(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ModMultiply(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ModSquare(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ModPow(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Multiply(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::NextProbablePrime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Not()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Pow(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ProbablePrime(System.Int32,System.Random)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Remainder(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ShiftLeft(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ShiftRight(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::get_SignValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Subtract(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::GetLengthofByteArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::GetLengthofByteArrayUnsigned()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.BigInteger::ToByteArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.BigInteger::ToByteArrayUnsigned()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.BigInteger::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.BigInteger::ToString(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ValueOf(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ValueOf(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::GetLowestSetBit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.BigInteger::TestBit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Or(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Xor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::SetBit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ClearBit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::FlipBit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Primes/MROutput Org.BouncyCastle.Math.Primes/MROutput::ProbablyPrime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Primes/MROutput Org.BouncyCastle.Math.Primes/MROutput::ProvablyCompositeWithFactor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Primes/MROutput Org.BouncyCastle.Math.Primes/MROutput::ProvablyCompositeNotPrimePower()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Primes/MROutput::.ctor(System.Boolean,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Primes/MROutput::get_Factor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Primes/MROutput::get_IsProvablyComposite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Primes/MROutput::get_IsNotPrimePower()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Primes/STOutput::.ctor(Org.BouncyCastle.Math.BigInteger,System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Primes/STOutput::.ctor(Org.BouncyCastle.Math.BigInteger,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Primes/STOutput::get_Prime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.Primes/STOutput::get_PrimeSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Primes/STOutput::get_PrimeGenCounter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Primes/STOutput Org.BouncyCastle.Math.Primes::GenerateSTRandomPrime(Org.BouncyCastle.Crypto.IDigest,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Primes/MROutput Org.BouncyCastle.Math.Primes::EnhancedMRProbablePrimeTest(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Primes::HasAnySmallFactors(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Primes::IsMRProbablePrime(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Primes::IsMRProbablePrimeToBase(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Primes::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Bits::BitPermuteStep(System.UInt32,System.UInt32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Bits::BitPermuteStep(System.UInt64,System.UInt64,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Bits::BitPermuteStep2(System.UInt32&,System.UInt32&,System.UInt32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Bits::BitPermuteStep2(System.UInt64&,System.UInt64&,System.UInt64,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Bits::BitPermuteStepSimple(System.UInt32,System.UInt32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Bits::BitPermuteStepSimple(System.UInt64,System.UInt64,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Interleave::Expand8to16(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Interleave::Expand16to32(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Interleave::Expand32to64(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Interleave::Expand64To128(System.UInt64,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Interleave::Expand64To128(System.UInt64[],System.Int32,System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Interleave::Expand64To128Rev(System.UInt64,System.UInt64&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Interleave::Shuffle(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Interleave::Shuffle(System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Interleave::Shuffle2(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Interleave::Shuffle2(System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Interleave::Unshuffle(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Interleave::Unshuffle(System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Interleave::Unshuffle(System.UInt64,System.UInt64&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Interleave::Unshuffle(System.UInt64,System.UInt64,System.UInt64&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Interleave::Unshuffle2(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Interleave::Unshuffle2(System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Interleave::Transpose(System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Mod::CheckedModOddInverse(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Mod::CheckedModOddInverseVar(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Mod::Inverse32(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Mod::Inverse64(System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Mod::ModOddInverse(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Mod::ModOddInverseVar(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Mod::ModOddIsCoprime(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Mod::ModOddIsCoprimeVar(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Mod::Random(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Mod::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::Add(System.Int32,System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::Add33At(System.Int32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::Add33At(System.Int32,System.UInt32,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::Add33To(System.Int32,System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::Add33To(System.Int32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddBothTo(System.Int32,System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddBothTo(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddDWordAt(System.Int32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddDWordAt(System.Int32,System.UInt64,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddDWordTo(System.Int32,System.UInt64,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddDWordTo(System.Int32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddTo(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddTo(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddTo(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddToEachOther(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddWordAt(System.Int32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddWordAt(System.Int32,System.UInt32,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddWordTo(System.Int32,System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::AddWordTo(System.Int32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::CAdd(System.Int32,System.Int32,System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::CAddTo(System.Int32,System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::CMov(System.Int32,System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::Compare(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::Compare(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Nat::Copy(System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Copy(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Copy(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat::Copy64(System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Copy64(System.Int32,System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Copy64(System.Int32,System.UInt64[],System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Nat::Create(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat::Create64(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::CSub(System.Int32,System.Int32,System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::CSub(System.Int32,System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::Dec(System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::Dec(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::DecAt(System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::DecAt(System.Int32,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat::Eq(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::EqualTo(System.Int32,System.UInt32[],System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::EqualTo(System.Int32,System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::EqualTo(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::EqualTo(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::EqualToZero(System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::EqualToZero(System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Nat::FromBigInteger(System.Int32,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat::FromBigInteger64(System.Int32,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::GetBit(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::GetBitLength(System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::GetBitLength(System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::GetLengthForBits(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::GetLengthForBits64(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat::Gte(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::Inc(System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::Inc(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::IncAt(System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::IncAt(System.Int32,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat::IsOne(System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat::IsZero(System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::LessThan(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::LessThan(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Mul(System.Int32,System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Mul(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Mul(System.UInt32[],System.Int32,System.Int32,System.UInt32[],System.Int32,System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::MulAddTo(System.Int32,System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::MulAddTo(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::Mul31BothAdd(System.Int32,System.UInt32,System.UInt32[],System.UInt32,System.UInt32[],System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::MulWord(System.Int32,System.UInt32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::MulWord(System.Int32,System.UInt32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::MulWordAddTo(System.Int32,System.UInt32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::MulWordDwordAddAt(System.Int32,System.UInt32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::Negate(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftDownBit(System.Int32,System.UInt32[],System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftDownBit(System.Int32,System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftDownBit(System.Int32,System.UInt32[],System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftDownBit(System.Int32,System.UInt32[],System.Int32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftDownBits(System.Int32,System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftDownBits(System.Int32,System.UInt32[],System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftDownBits(System.Int32,System.UInt32[],System.Int32,System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftDownBits(System.Int32,System.UInt32[],System.Int32,System.Int32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Nat::ShiftDownBits64(System.Int32,System.UInt64[],System.Int32,System.Int32,System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftDownWord(System.Int32,System.UInt32[],System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBit(System.Int32,System.UInt32[],System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBit(System.Int32,System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBit(System.Int32,System.UInt32[],System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBit(System.Int32,System.UInt32[],System.Int32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBit64(System.Int32,System.UInt64[],System.UInt64,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBit64(System.Int32,System.UInt64[],System.Int32,System.UInt64,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBits(System.Int32,System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBits(System.Int32,System.UInt32[],System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBits(System.Int32,System.UInt32[],System.Int32,System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBits(System.Int32,System.UInt32[],System.Int32,System.Int32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBits64(System.Int32,System.UInt64[],System.Int32,System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBits64(System.Int32,System.UInt64[],System.Int32,System.Int32,System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBits64(System.Int32,System.UInt64[],System.Int32,System.UInt64,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Nat::ShiftUpBits64(System.Int32,System.UInt64[],System.Int32,System.Int32,System.UInt64,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Square(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Square(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::SquareWordAddTo(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat::SquareWordAddTo(System.UInt32[],System.Int32,System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::Sub(System.Int32,System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::Sub(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::Sub33At(System.Int32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::Sub33At(System.Int32,System.UInt32,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::Sub33From(System.Int32,System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::Sub33From(System.Int32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::SubBothFrom(System.Int32,System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::SubBothFrom(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::SubDWordAt(System.Int32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::SubDWordAt(System.Int32,System.UInt64,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::SubDWordFrom(System.Int32,System.UInt64,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::SubDWordFrom(System.Int32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::SubFrom(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::SubFrom(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::SubWordAt(System.Int32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::SubWordAt(System.Int32,System.UInt32,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::SubWordFrom(System.Int32,System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat::SubWordFrom(System.Int32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Raw.Nat::ToBigInteger(System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Xor(System.Int32,System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Xor(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Xor64(System.Int32,System.UInt64[],System.UInt64,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Xor64(System.Int32,System.UInt64[],System.Int32,System.UInt64,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Xor64(System.Int32,System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Xor64(System.Int32,System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::XorBothTo(System.Int32,System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::XorBothTo(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::XorBothTo64(System.Int32,System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::XorBothTo64(System.Int32,System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::XorTo(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::XorTo(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::XorTo64(System.Int32,System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::XorTo64(System.Int32,System.UInt64[],System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Zero(System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat::Zero64(System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::AddBothTo(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::AddTo(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::AddTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::AddToEachOther(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat128::Copy(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat128::Copy(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat128::Copy64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat128::Copy64(System.UInt64[],System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Nat128::Create()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat128::Create64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Nat128::CreateExt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat128::CreateExt64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat128::Diff(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat128::Eq(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat128::Eq64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::GetBit(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat128::Gte(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat128::Gte(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat128::IsOne(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat128::IsOne64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat128::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat128::IsZero64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat128::Mul(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat128::Mul(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::MulAddTo(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::MulAddTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Nat128::Mul33Add(System.UInt32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::MulWordAddExt(System.UInt32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::Mul33DWordAdd(System.UInt32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::Mul33WordAdd(System.UInt32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::MulWordDwordAdd(System.UInt32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::MulWordsAdd(System.UInt32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat128::MulWord(System.UInt32,System.UInt32[],System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat128::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat128::Square(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat128::Sub(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat128::Sub(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat128::SubBothFrom(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat128::SubFrom(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat128::SubFrom(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Raw.Nat128::ToBigInteger(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Raw.Nat128::ToBigInteger64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat128::Zero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::AddBothTo(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::AddTo(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::AddTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::AddToEachOther(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat160::Copy(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat160::Copy(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Nat160::Create()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Nat160::CreateExt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat160::Diff(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat160::Eq(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::GetBit(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat160::Gte(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat160::Gte(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat160::IsOne(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat160::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat160::Mul(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat160::Mul(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::MulAddTo(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::MulAddTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Nat160::Mul33Add(System.UInt32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::MulWordAddExt(System.UInt32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::Mul33DWordAdd(System.UInt32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::Mul33WordAdd(System.UInt32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::MulWordDwordAdd(System.UInt32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::MulWordsAdd(System.UInt32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat160::MulWord(System.UInt32,System.UInt32[],System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat160::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat160::Square(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat160::Sub(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat160::Sub(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat160::SubBothFrom(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat160::SubFrom(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat160::SubFrom(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Raw.Nat160::ToBigInteger(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat160::Zero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat192::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat192::AddBothTo(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat192::AddTo(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat192::AddTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat192::AddToEachOther(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat192::Copy(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat192::Copy(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat192::Copy64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat192::Copy64(System.UInt64[],System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Nat192::Create()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat192::Create64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Nat192::CreateExt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat192::CreateExt64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat192::Diff(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat192::Eq(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat192::Eq64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat192::GetBit(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat192::Gte(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat192::Gte(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat192::IsOne(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat192::IsOne64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat192::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat192::IsZero64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat192::Mul(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat192::Mul(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat192::MulAddTo(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat192::MulAddTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Nat192::Mul33Add(System.UInt32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat192::MulWordAddExt(System.UInt32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat192::Mul33DWordAdd(System.UInt32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat192::Mul33WordAdd(System.UInt32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat192::MulWordDwordAdd(System.UInt32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat192::MulWord(System.UInt32,System.UInt32[],System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat192::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat192::Square(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat192::Sub(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat192::Sub(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat192::SubBothFrom(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat192::SubFrom(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat192::SubFrom(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Raw.Nat192::ToBigInteger(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Raw.Nat192::ToBigInteger64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat192::Zero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::Add(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::AddBothTo(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::AddBothTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::AddTo(System.UInt32[],System.UInt32[],System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::AddTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::AddToEachOther(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat224::Copy(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat224::Copy(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Nat224::Create()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Nat224::CreateExt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat224::Diff(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat224::Eq(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::GetBit(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat224::Gte(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat224::Gte(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat224::IsOne(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat224::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat224::Mul(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat224::Mul(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::MulAddTo(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::MulAddTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Nat224::Mul33Add(System.UInt32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::MulByWord(System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::MulByWordAddTo(System.UInt32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::MulWordAddTo(System.UInt32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::Mul33DWordAdd(System.UInt32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::Mul33WordAdd(System.UInt32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::MulWordDwordAdd(System.UInt32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat224::MulWord(System.UInt32,System.UInt32[],System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat224::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat224::Square(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat224::Sub(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat224::Sub(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat224::SubBothFrom(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat224::SubFrom(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat224::SubFrom(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Raw.Nat224::ToBigInteger(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat224::Zero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::Add(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::AddBothTo(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::AddBothTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::AddTo(System.UInt32[],System.UInt32[],System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::AddTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::AddToEachOther(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat256::Copy(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat256::Copy(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat256::Copy64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat256::Copy64(System.UInt64[],System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Nat256::Create()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat256::Create64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.Raw.Nat256::CreateExt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat256::CreateExt64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat256::Diff(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat256::Eq(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat256::Eq64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::GetBit(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat256::Gte(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat256::Gte(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat256::IsOne(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat256::IsOne64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat256::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat256::IsZero64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat256::Mul(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat256::Mul(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat256::Mul128(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::MulAddTo(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::MulAddTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.Raw.Nat256::Mul33Add(System.UInt32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::MulByWord(System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::MulByWordAddTo(System.UInt32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::MulWordAddTo(System.UInt32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::Mul33DWordAdd(System.UInt32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::Mul33WordAdd(System.UInt32,System.UInt32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::MulWordDwordAdd(System.UInt32,System.UInt64,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.Raw.Nat256::MulWord(System.UInt32,System.UInt32[],System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat256::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat256::Square(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat256::Sub(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat256::Sub(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat256::SubBothFrom(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat256::SubFrom(System.UInt32[],System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Nat256::SubFrom(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Raw.Nat256::ToBigInteger(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Raw.Nat256::ToBigInteger64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat256::Xor(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat256::Zero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat320::Copy64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat320::Copy64(System.UInt64[],System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat320::Create64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat320::CreateExt64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat320::Eq64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat320::IsOne64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat320::IsZero64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Raw.Nat320::ToBigInteger64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat384::Mul(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat384::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat448::Copy64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat448::Copy64(System.UInt64[],System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat448::Create64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat448::CreateExt64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat448::Eq64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat448::IsOne64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat448::IsZero64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat448::Mul(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat448::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Raw.Nat448::ToBigInteger64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::Mul(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::Xor(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::Xor(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::Xor64(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::Xor64(System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::XorBothTo(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::XorBothTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::XorBothTo64(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::XorBothTo64(System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::XorTo(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::XorTo(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::XorTo64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat512::XorTo64(System.UInt64[],System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat576::Copy64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Nat576::Copy64(System.UInt64[],System.Int32,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat576::Create64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.Raw.Nat576::CreateExt64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat576::Eq64(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat576::IsOne64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Nat576::IsZero64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Raw.Nat576::ToBigInteger64(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.IPolynomialExtensionField Org.BouncyCastle.Math.Field.FiniteFields::GetBinaryExtensionField(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.IFiniteField Org.BouncyCastle.Math.Field.FiniteFields::GetPrimeField(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Field.FiniteFields::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Field.FiniteFields::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Field.GenericPolynomialExtensionField::.ctor(Org.BouncyCastle.Math.Field.IFiniteField,Org.BouncyCastle.Math.Field.IPolynomial)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Field.GenericPolynomialExtensionField::.ctor(Org.BouncyCastle.Math.Field.IFiniteField,Org.BouncyCastle.Math.Field.IPolynomial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Field.GenericPolynomialExtensionField::get_Characteristic()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Field.GenericPolynomialExtensionField::get_Dimension()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.IFiniteField Org.BouncyCastle.Math.Field.GenericPolynomialExtensionField::get_Subfield()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Field.GenericPolynomialExtensionField::get_Degree()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.IPolynomial Org.BouncyCastle.Math.Field.GenericPolynomialExtensionField::get_MinimalPolynomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Field.GenericPolynomialExtensionField::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Field.GenericPolynomialExtensionField::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Field.GF2Polynomial::.ctor(System.Int32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Field.GF2Polynomial::.ctor(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Field.GF2Polynomial::get_Degree()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Math.Field.GF2Polynomial::GetExponentsPresent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Field.GF2Polynomial::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Field.GF2Polynomial::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.IFiniteField Org.BouncyCastle.Math.Field.IExtensionField::get_Subfield()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Field.IExtensionField::get_Degree()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Field.IFiniteField::get_Characteristic()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Field.IFiniteField::get_Dimension()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Field.IPolynomial::get_Degree()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Math.Field.IPolynomial::GetExponentsPresent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.IPolynomial Org.BouncyCastle.Math.Field.IPolynomialExtensionField::get_MinimalPolynomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Field.PrimeField::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Field.PrimeField::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Field.PrimeField::get_Characteristic()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Field.PrimeField::get_Dimension()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Field.PrimeField::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Field.PrimeField::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.AbstractECLookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.AbstractECLookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.AbstractECLookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractECLookupTable::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECAlgorithms::IsF2mCurve(Org.BouncyCastle.Math.EC.ECCurve)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECAlgorithms::IsF2mField(Org.BouncyCastle.Math.Field.IFiniteField)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECAlgorithms::IsFpCurve(Org.BouncyCastle.Math.EC.ECCurve)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECAlgorithms::IsFpField(Org.BouncyCastle.Math.Field.IFiniteField)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::SumOfMultiplies(Org.BouncyCastle.Math.EC.ECPoint[],Org.BouncyCastle.Math.BigInteger[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::SumOfTwoMultiplies(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ShamirsTrick(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ImportPoint(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECAlgorithms::MontgomeryTrick(Org.BouncyCastle.Math.EC.ECFieldElement[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECAlgorithms::MontgomeryTrick(Org.BouncyCastle.Math.EC.ECFieldElement[],System.Int32,System.Int32,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ReferenceMultiply(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ValidatePoint(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::CleanPoint(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ImplCheckResult(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ImplShamirsTrickJsf(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ImplShamirsTrickWNaf(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ImplShamirsTrickWNaf(Org.BouncyCastle.Math.EC.Endo.ECEndomorphism,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ImplSumOfMultiplies(Org.BouncyCastle.Math.EC.ECPoint[],Org.BouncyCastle.Math.BigInteger[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ImplSumOfMultipliesGlv(Org.BouncyCastle.Math.EC.ECPoint[],Org.BouncyCastle.Math.BigInteger[],Org.BouncyCastle.Math.EC.Endo.GlvEndomorphism)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ImplSumOfMultiplies(Org.BouncyCastle.Math.EC.Endo.ECEndomorphism,Org.BouncyCastle.Math.EC.ECPoint[],Org.BouncyCastle.Math.BigInteger[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECAlgorithms::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECAlgorithms::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECCurve/Config::.ctor(Org.BouncyCastle.Math.EC.ECCurve,System.Int32,Org.BouncyCastle.Math.EC.Endo.ECEndomorphism,Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECCurve/Config::.ctor(Org.BouncyCastle.Math.EC.ECCurve,System.Int32,Org.BouncyCastle.Math.EC.Endo.ECEndomorphism,Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve/Config Org.BouncyCastle.Math.EC.ECCurve/Config::SetCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve/Config Org.BouncyCastle.Math.EC.ECCurve/Config::SetEndomorphism(Org.BouncyCastle.Math.EC.Endo.ECEndomorphism)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve/Config Org.BouncyCastle.Math.EC.ECCurve/Config::SetMultiplier(Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.ECCurve/Config::Create()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECCurve/DefaultLookupTable::.ctor(Org.BouncyCastle.Math.EC.ECCurve,System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECCurve/DefaultLookupTable::.ctor(Org.BouncyCastle.Math.EC.ECCurve,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve/DefaultLookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECCurve/DefaultLookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECCurve/DefaultLookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Math.EC.ECCurve::GetAllCoordinateSystems()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECCurve::.ctor(Org.BouncyCastle.Math.Field.IFiniteField)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECCurve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECCurve::IsValidFieldElement(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECCurve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECCurve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve/Config Org.BouncyCastle.Math.EC.ECCurve::Configure()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::get_FieldElementEncodingLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::GetAffinePointEncodingLength(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECCurve::ValidatePoint(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECCurve::CreatePoint(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECCurve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECCurve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECCurve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo Org.BouncyCastle.Math.EC.ECCurve::GetPreCompInfo(Org.BouncyCastle.Math.EC.ECPoint,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo Org.BouncyCastle.Math.EC.ECCurve::Precompute(System.String,Org.BouncyCastle.Math.EC.Multiplier.IPreCompCallback)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo Org.BouncyCastle.Math.EC.ECCurve::Precompute(Org.BouncyCastle.Math.EC.ECPoint,System.String,Org.BouncyCastle.Math.EC.Multiplier.IPreCompCallback)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECCurve::ImportPoint(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECCurve::NormalizeAll(Org.BouncyCastle.Math.EC.ECPoint[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECCurve::NormalizeAll(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECCurve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.IFiniteField Org.BouncyCastle.Math.EC.ECCurve::get_Field()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECCurve::get_A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECCurve::get_B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.ECCurve::get_Order()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.ECCurve::get_Cofactor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::get_CoordinateSystem()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.ECCurve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECCurve::Equals(Org.BouncyCastle.Math.EC.ECCurve)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECCurve::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.ECEndomorphism Org.BouncyCastle.Math.EC.ECCurve::GetEndomorphism()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Math.EC.ECCurve::GetMultiplier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECCurve::DecodePoint(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::ImplGetInteger(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractFpCurve/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractFpCurve/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractFpCurve/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.AbstractFpCurve/<>c::<.ctor>b__2_0(Org.BouncyCastle.Math.BigInteger,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractFpCurve::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractFpCurve::.ctor(Org.BouncyCastle.Math.BigInteger,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractFpCurve::.ctor(Org.BouncyCastle.Math.BigInteger,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.AbstractFpCurve::IsValidFieldElement(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.AbstractFpCurve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.AbstractFpCurve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractFpCurve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpCurve::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpCurve::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpCurve::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpCurve::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpCurve::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpCurve::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpCurve::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpCurve::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.FpCurve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.FpCurve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.FpCurve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.FpCurve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpCurve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.FpCurve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.FpCurve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.FpCurve::ImportPoint(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.AbstractF2mCurve::Inverse(System.Int32,System.Int32[],Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractF2mCurve::.ctor(System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.AbstractF2mCurve::CreatePoint(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.AbstractF2mCurve::IsValidFieldElement(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.AbstractF2mCurve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.AbstractF2mCurve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.AbstractF2mCurve::SolveQuadraticEquation(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.AbstractF2mCurve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mCurve/DefaultF2mLookupTable::.ctor(Org.BouncyCastle.Math.EC.F2mCurve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mCurve/DefaultF2mLookupTable::.ctor(Org.BouncyCastle.Math.EC.F2mCurve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mCurve/DefaultF2mLookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.F2mCurve/DefaultF2mLookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.F2mCurve/DefaultF2mLookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mCurve::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mCurve::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mCurve::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mCurve::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mCurve::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mCurve::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mCurve::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mCurve::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mCurve::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mCurve::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.F2mCurve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mCurve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mCurve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.F2mCurve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.F2mCurve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.F2mCurve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mCurve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.F2mCurve::IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mCurve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mCurve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mCurve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.F2mCurve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.ECFieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.ECFieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECFieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECFieldElement::get_BitLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECFieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECFieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::MultiplyMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::MultiplyPlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::SquareMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::SquarePlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECFieldElement::SquarePow(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECFieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECFieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECFieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECFieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.ECFieldElement::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.ECFieldElement::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECFieldElement::GetEncodedLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECFieldElement::EncodeTo(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECFieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractFpFieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.FpFieldElement::CalculateResidue(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpFieldElement::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpFieldElement::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.FpFieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.FpFieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.FpFieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.FpFieldElement::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::MultiplyMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::MultiplyPlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::SquareMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::SquarePlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.FpFieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.FpFieldElement::Equals(Org.BouncyCastle.Math.EC.FpFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.FpFieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.AbstractF2mFieldElement::HalfTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.AbstractF2mFieldElement::get_HasFastTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.AbstractF2mFieldElement::Trace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractF2mFieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mFieldElement::.ctor(System.Int32,System.Int32[],Org.BouncyCastle.Math.EC.LongArray)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mFieldElement::.ctor(System.Int32,System.Int32[],Org.BouncyCastle.Math.EC.LongArray)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mFieldElement::get_BitLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.F2mFieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.F2mFieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.F2mFieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.F2mFieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.F2mFieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mFieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mFieldElement::CheckFieldElements(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::MultiplyMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::MultiplyPlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::SquareMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::SquarePlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::SquarePow(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mFieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mFieldElement::get_Representation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mFieldElement::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mFieldElement::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mFieldElement::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mFieldElement::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.F2mFieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.F2mFieldElement::Equals(Org.BouncyCastle.Math.EC.F2mFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mFieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECLookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECLookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECLookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECPoint/ValidityCallback::.ctor(Org.BouncyCastle.Math.EC.ECPoint,System.Boolean,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECPoint/ValidityCallback::.ctor(Org.BouncyCastle.Math.EC.ECPoint,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo Org.BouncyCastle.Math.EC.ECPoint/ValidityCallback::Precompute(Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::GetDetachedPoint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.ECPoint::get_Curve()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECPoint::get_AffineXCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECPoint::get_AffineYCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECPoint::get_XCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECPoint::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECPoint::GetZCoord(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement[] Org.BouncyCastle.Math.EC.ECPoint::GetZCoords()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECPoint::get_RawXCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.ECPoint::get_RawYCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement[] Org.BouncyCastle.Math.EC.ECPoint::get_RawZCoords()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECPoint::IsNormalized()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::Normalize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::Normalize(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECPoint::get_IsInfinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECPoint::IsValid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECPoint::IsValidPartial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECPoint::ImplIsValid(System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::ScaleX(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::ScaleXNegateY(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::ScaleY(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::ScaleYNegateX(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECPoint::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECPoint::Equals(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECPoint::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.ECPoint::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.ECPoint::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.ECPoint::GetEncoded(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECPoint::GetEncodedLength(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECPoint::EncodeTo(System.Boolean,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECPoint::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::Subtract(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::TimesPow2(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::Multiply(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECPoint::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECPointBase::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECPointBase::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECPointBase::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECPointBase::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.ECPointBase::GetEncoded(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECPointBase::GetEncodedLength(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECPointBase::EncodeTo(System.Boolean,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPointBase::Multiply(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractFpPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractFpPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.AbstractFpPoint::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.AbstractFpPoint::Subtract(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.FpPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpPoint::GetZCoord(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.FpPoint::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.FpPoint::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.FpPoint::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.FpPoint::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.FpPoint::TimesPow2(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.FpPoint::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractF2mPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractF2mPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.AbstractF2mPoint::ScaleX(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.AbstractF2mPoint::ScaleXNegateY(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.AbstractF2mPoint::ScaleY(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.AbstractF2mPoint::ScaleYNegateX(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.AbstractF2mPoint::Subtract(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractF2mPoint Org.BouncyCastle.Math.EC.AbstractF2mPoint::Tau()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractF2mPoint Org.BouncyCastle.Math.EC.AbstractF2mPoint::TauPow(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.F2mPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.F2mPoint::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.F2mPoint::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.F2mPoint::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.F2mPoint::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.F2mPoint::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.F2mPoint::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPointMap::Map(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.LongArray::AreAliased(Org.BouncyCastle.Math.EC.LongArray&,Org.BouncyCastle.Math.EC.LongArray&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::.ctor(System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::.ctor(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::.ctor(System.UInt64[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::.ctor(System.UInt64[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::CopyTo(System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.LongArray::IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.LongArray::IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.LongArray::GetUsedLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.LongArray::GetUsedLengthFrom(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.LongArray::Degree()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.LongArray::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.LongArray Org.BouncyCastle.Math.EC.LongArray::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::AddShiftedByWords(Org.BouncyCastle.Math.EC.LongArray,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.LongArray::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.LongArray Org.BouncyCastle.Math.EC.LongArray::ModMultiplyLD(Org.BouncyCastle.Math.EC.LongArray,System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.LongArray Org.BouncyCastle.Math.EC.LongArray::ModMultiply(Org.BouncyCastle.Math.EC.LongArray,System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.LongArray Org.BouncyCastle.Math.EC.LongArray::Multiply(Org.BouncyCastle.Math.EC.LongArray,System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::Reduce(System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.LongArray Org.BouncyCastle.Math.EC.LongArray::ModSquare(System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.LongArray Org.BouncyCastle.Math.EC.LongArray::ModSquareN(System.Int32,System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.LongArray Org.BouncyCastle.Math.EC.LongArray::Square(System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.LongArray Org.BouncyCastle.Math.EC.LongArray::ModInverse(System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.LongArray::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.LongArray::Equals(Org.BouncyCastle.Math.EC.LongArray&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.LongArray::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.LongArray Org.BouncyCastle.Math.EC.LongArray::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.LongArray::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ScaleXNegateYPointMap::.ctor(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ScaleXNegateYPointMap::.ctor(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ScaleXNegateYPointMap::Map(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ScaleXPointMap::.ctor(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ScaleXPointMap::.ctor(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ScaleXPointMap::Map(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ScaleYNegateXPointMap::.ctor(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ScaleYNegateXPointMap::.ctor(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ScaleYNegateXPointMap::Map(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ScaleYPointMap::.ctor(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ScaleYPointMap::.ctor(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ScaleYPointMap::Map(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.SimpleLookupTable::.ctor(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.SimpleLookupTable::.ctor(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.SimpleLookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.SimpleLookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.SimpleLookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Rfc8032.Codec::Decode16(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Rfc8032.Codec::Decode24(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Rfc8032.Codec::Decode32(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Codec::Decode32(System.Byte[],System.Int32,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Codec::Encode24(System.UInt32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Codec::Encode32(System.UInt32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Codec::Encode32(System.UInt32[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Codec::Encode56(System.UInt64,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint::.ctor(System.Int32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint::.ctor(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::CreatePrehash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::EncodePublicPoint(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::GeneratePrivateKey(Org.BouncyCastle.Security.SecureRandom,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::GeneratePublicKey(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::GeneratePublicKey(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Precompute()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ScalarMultBaseYZ(System.Byte[],System.Int32,System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Sign(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Sign(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Sign(System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Sign(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::SignPrehash(System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::SignPrehash(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::SignPrehash(System.Byte[],System.Int32,System.Byte[],Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::SignPrehash(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ValidatePublicKeyFull(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ValidatePublicKeyFullExport(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ValidatePublicKeyPartial(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ValidatePublicKeyPartialExport(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Verify(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Verify(System.Byte[],System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Verify(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Verify(System.Byte[],System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint,System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::VerifyPrehash(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::VerifyPrehash(System.Byte[],System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint,System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::VerifyPrehash(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::VerifyPrehash(System.Byte[],System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint,System.Byte[],Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint::.ctor(System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint::.ctor(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IXof Org.BouncyCastle.Math.EC.Rfc8032.Ed448::CreatePrehash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::EncodePublicPoint(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::GeneratePrivateKey(Org.BouncyCastle.Security.SecureRandom,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::GeneratePublicKey(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint Org.BouncyCastle.Math.EC.Rfc8032.Ed448::GeneratePublicKey(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::Precompute()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ScalarMultBaseXY(System.Byte[],System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::Sign(System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::Sign(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::SignPrehash(System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::SignPrehash(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::SignPrehash(System.Byte[],System.Int32,System.Byte[],Org.BouncyCastle.Crypto.IXof,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::SignPrehash(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],Org.BouncyCastle.Crypto.IXof,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ValidatePublicKeyFull(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ValidatePublicKeyFullExport(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ValidatePublicKeyPartial(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ValidatePublicKeyPartialExport(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::Verify(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::Verify(System.Byte[],System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint,System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::VerifyPrehash(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::VerifyPrehash(System.Byte[],System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint,System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::VerifyPrehash(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],Org.BouncyCastle.Crypto.IXof)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::VerifyPrehash(System.Byte[],System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint,System.Byte[],Org.BouncyCastle.Crypto.IXof)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Scalar25519::CheckVar(System.Byte[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Scalar25519::Decode(System.Byte[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Scalar25519::GetOrderWnafVar(System.Int32,System.SByte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Scalar25519::Multiply128Var(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.Rfc8032.Scalar25519::Reduce384(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.Rfc8032.Scalar25519::Reduce512(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Scalar25519::ReduceBasisVar(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Scalar25519::ToSignedDigits(System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Scalar25519::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Scalar448::CheckVar(System.Byte[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Scalar448::Decode(System.Byte[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Scalar448::GetOrderWnafVar(System.Int32,System.SByte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Scalar448::Multiply225Var(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.Rfc8032.Scalar448::Reduce704(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.Rfc8032.Scalar448::Reduce912(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Scalar448::ReduceBasisVar(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Scalar448::ToSignedDigits(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Scalar448::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.ScalarUtilities::AddShifted_NP(System.Int32,System.Int32,System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.ScalarUtilities::AddShifted_UV(System.Int32,System.Int32,System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.ScalarUtilities::GetBitLength(System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.ScalarUtilities::GetBitLengthPositive(System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.ScalarUtilities::LessThan(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.ScalarUtilities::SubShifted_NP(System.Int32,System.Int32,System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.ScalarUtilities::SubShifted_UV(System.Int32,System.Int32,System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.ScalarUtilities::Swap(System.UInt32[]&,System.UInt32[]&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Wnaf::GetSignedVar(System.UInt32[],System.Int32,System.SByte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc7748.X25519::CalculateAgreement(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519::ClampPrivateKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519::GeneratePrivateKey(Org.BouncyCastle.Security.SecureRandom,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519::GeneratePublicKey(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519::Precompute()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519::ScalarMult(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519::ScalarMultBase(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Add(System.Int32[],System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::AddOne(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::AddOne(System.Int32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Apm(System.Int32[],System.Int32[],System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::AreEqual(System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::AreEqualVar(System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Carry(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::CMov(System.Int32,System.Int32[],System.Int32,System.Int32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::CNegate(System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Copy(System.Int32[],System.Int32,System.Int32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Create()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::CreateTable(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::CSwap(System.Int32,System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Decode(System.UInt32[],System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Decode(System.Byte[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Decode(System.Byte[],System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Decode(System.Byte[],System.Int32,System.Int32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Encode(System.Int32[],System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Encode(System.Int32[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Encode(System.Int32[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Encode(System.Int32[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Inv(System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::InvVar(System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::IsOne(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::IsOneVar(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::IsZero(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::IsZeroVar(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Mul(System.Int32[],System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Mul(System.Int32[],System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Negate(System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Normalize(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::One(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Sqr(System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Sqr(System.Int32[],System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::SqrtRatioVar(System.Int32[],System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Sub(System.Int32[],System.Int32[],System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::SubOne(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Zero(System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc7748.X448::CalculateAgreement(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448::ClampPrivateKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448::GeneratePrivateKey(Org.BouncyCastle.Security.SecureRandom,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448::GeneratePublicKey(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448::Precompute()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448::ScalarMult(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448::ScalarMultBase(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::AddOne(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::AddOne(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc7748.X448Field::AreEqual(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc7748.X448Field::AreEqualVar(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Carry(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::CMov(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::CNegate(System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Copy(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Create()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Rfc7748.X448Field::CreateTable(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::CSwap(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Decode(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Decode(System.Byte[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Decode(System.Byte[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Decode(System.Byte[],System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Encode(System.UInt32[],System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Encode(System.UInt32[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Encode(System.UInt32[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Encode(System.UInt32[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Inv(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::InvVar(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc7748.X448Field::IsOne(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc7748.X448Field::IsOneVar(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc7748.X448Field::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc7748.X448Field::IsZeroVar(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Mul(System.UInt32[],System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Mul(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Negate(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Normalize(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::One(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Sqr(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Sqr(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc7748.X448Field::SqrtRatioVar(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Sub(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::SubOne(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Zero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Multiplier.AbstractECMultiplier::Multiply(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.AbstractECMultiplier::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier::Multiply(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.FixedPointCombMultiplier::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.FixedPointCombMultiplier::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Multiplier.FixedPointPreCompInfo::get_LookupTable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.FixedPointPreCompInfo::set_LookupTable(Org.BouncyCastle.Math.EC.ECLookupTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Multiplier.FixedPointPreCompInfo::get_Offset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.FixedPointPreCompInfo::set_Offset(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Multiplier.FixedPointPreCompInfo::get_Width()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.FixedPointPreCompInfo::set_Width(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.FixedPointPreCompInfo::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.FixedPointPreCompInfo::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities/FixedPointCallback::.ctor(Org.BouncyCastle.Math.EC.ECPoint)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities/FixedPointCallback::.ctor(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities/FixedPointCallback::Precompute(Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities::GetCombSize(Org.BouncyCastle.Math.EC.ECCurve)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.FixedPointPreCompInfo Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities::GetFixedPointPreCompInfo(Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.FixedPointPreCompInfo Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities::Precompute(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.GlvMultiplier::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.Endo.GlvEndomorphism)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.GlvMultiplier::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.Endo.GlvEndomorphism)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo Org.BouncyCastle.Math.EC.Multiplier.IPreCompCallback::Precompute(Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Multiplier.ValidityPreCompInfo::HasFailed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.ValidityPreCompInfo::ReportFailed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Multiplier.ValidityPreCompInfo::HasCurveEquationPassed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.ValidityPreCompInfo::ReportCurveEquationPassed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Multiplier.ValidityPreCompInfo::HasOrderPassed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.ValidityPreCompInfo::ReportOrderPassed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.ValidityPreCompInfo::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.ValidityPreCompInfo::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.ValidityPreCompInfo::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafL2RMultiplier::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafL2RMultiplier::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::DecrementPromotionCountdown()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::get_PromotionCountdown()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::set_PromotionCountdown(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::get_IsPromoted()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::get_ConfWidth()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::set_ConfWidth(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint[] Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::get_PreComp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::set_PreComp(Org.BouncyCastle.Math.EC.ECPoint[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint[] Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::get_PreCompNeg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::set_PreCompNeg(Org.BouncyCastle.Math.EC.ECPoint[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::get_Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::set_Twice(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::get_Width()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::set_Width(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/ConfigureBasepointCallback::.ctor(Org.BouncyCastle.Math.EC.ECCurve,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/ConfigureBasepointCallback::.ctor(Org.BouncyCastle.Math.EC.ECCurve,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/ConfigureBasepointCallback::Precompute(Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/MapPointCallback::.ctor(Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo,System.Boolean,Org.BouncyCastle.Math.EC.ECPointMap)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/MapPointCallback::.ctor(Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo,System.Boolean,Org.BouncyCastle.Math.EC.ECPointMap)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/MapPointCallback::Precompute(Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/PrecomputeCallback::.ctor(Org.BouncyCastle.Math.EC.ECPoint,System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/PrecomputeCallback::.ctor(Org.BouncyCastle.Math.EC.ECPoint,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/PrecomputeCallback::Precompute(Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/PrecomputeWithPointMapCallback::.ctor(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.EC.ECPointMap,Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/PrecomputeWithPointMapCallback::.ctor(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.EC.ECPointMap,Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/PrecomputeWithPointMapCallback::Precompute(Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::ConfigureBasepoint(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::GenerateCompactNaf(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::GenerateCompactWindowNaf(System.Int32,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::GenerateJsf(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::GenerateNaf(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::GenerateWindowNaf(System.Int32,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::GetNafWeight(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::GetWNafPreCompInfo(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::GetWNafPreCompInfo(Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::GetWindowSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::GetWindowSize(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::GetWindowSize(System.Int32,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::GetWindowSize(System.Int32,System.Int32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::Precompute(Org.BouncyCastle.Math.EC.ECPoint,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::PrecomputeWithPointMap(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.EC.ECPointMap,Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WTauNafMultiplier/WTauNafCallback::.ctor(Org.BouncyCastle.Math.EC.AbstractF2mPoint,System.SByte)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WTauNafMultiplier/WTauNafCallback::.ctor(Org.BouncyCastle.Math.EC.AbstractF2mPoint,System.SByte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo Org.BouncyCastle.Math.EC.Multiplier.WTauNafMultiplier/WTauNafCallback::Precompute(Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WTauNafMultiplier::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WTauNafMultiplier::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WTauNafMultiplier::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractF2mPoint[] Org.BouncyCastle.Math.EC.Multiplier.WTauNafPreCompInfo::get_PreComp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WTauNafPreCompInfo::set_PreComp(Org.BouncyCastle.Math.EC.AbstractF2mPoint[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WTauNafPreCompInfo::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Multiplier.WTauNafPreCompInfo::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPointMap Org.BouncyCastle.Math.EC.Endo.ECEndomorphism::get_PointMap()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Endo.ECEndomorphism::get_HasEfficientPointMap()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.ECEndomorphism Org.BouncyCastle.Math.EC.Endo.EndoPreCompInfo::get_Endomorphism()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.EndoPreCompInfo::set_Endomorphism(Org.BouncyCastle.Math.EC.Endo.ECEndomorphism)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Endo.EndoPreCompInfo::get_MappedPoint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.EndoPreCompInfo::set_MappedPoint(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.EndoPreCompInfo::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.EndoPreCompInfo::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.EndoUtilities/MapPointCallback::.ctor(Org.BouncyCastle.Math.EC.Endo.ECEndomorphism,Org.BouncyCastle.Math.EC.ECPoint)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.EndoUtilities/MapPointCallback::.ctor(Org.BouncyCastle.Math.EC.Endo.ECEndomorphism,Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo Org.BouncyCastle.Math.EC.Endo.EndoUtilities/MapPointCallback::Precompute(Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Math.EC.Endo.EndoUtilities::DecomposeScalar(Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Endo.EndoUtilities::MapPoint(Org.BouncyCastle.Math.EC.Endo.ECEndomorphism,Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.EndoUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.EndoUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Math.EC.Endo.GlvEndomorphism::DecomposeScalar(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.GlvTypeAEndomorphism::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.Endo.GlvTypeAParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.GlvTypeAEndomorphism::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.Endo.GlvTypeAParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Math.EC.Endo.GlvTypeAEndomorphism::DecomposeScalar(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPointMap Org.BouncyCastle.Math.EC.Endo.GlvTypeAEndomorphism::get_PointMap()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Endo.GlvTypeAEndomorphism::get_HasEfficientPointMap()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.GlvTypeAParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.GlvTypeAParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Endo.GlvTypeAParameters::get_I()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Endo.GlvTypeAParameters::get_Lambda()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters Org.BouncyCastle.Math.EC.Endo.GlvTypeAParameters::get_SplitParams()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.GlvTypeBEndomorphism::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.Endo.GlvTypeBParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.GlvTypeBEndomorphism::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.Endo.GlvTypeBParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Math.EC.Endo.GlvTypeBEndomorphism::DecomposeScalar(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPointMap Org.BouncyCastle.Math.EC.Endo.GlvTypeBEndomorphism::get_PointMap()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Endo.GlvTypeBEndomorphism::get_HasEfficientPointMap()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.GlvTypeBParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.GlvTypeBParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Endo.GlvTypeBParameters::get_Beta()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Endo.GlvTypeBParameters::get_Lambda()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters Org.BouncyCastle.Math.EC.Endo.GlvTypeBParameters::get_SplitParams()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters::.ctor(Org.BouncyCastle.Math.BigInteger[],Org.BouncyCastle.Math.BigInteger[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters::.ctor(Org.BouncyCastle.Math.BigInteger[],Org.BouncyCastle.Math.BigInteger[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters::get_V1A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters::get_V1B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters::get_V2A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters::get_V2B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters::get_G1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters::get_G2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters::get_Bits()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve/SecP128R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve,System.UInt32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve/SecP128R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve/SecP128R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve/SecP128R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve/SecP128R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::AddExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::AddOne(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::Half(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::Inv(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::MultiplyAddToExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::Negate(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::Random(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::RandomMult(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::Reduce(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::Reduce32(System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::Subtract(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::SubtractExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::Twice(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::.ctor(System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::.ctor(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Point::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve/SecP160K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve,System.UInt32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve/SecP160K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve/SecP160K1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve/SecP160K1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve/SecP160K1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Point::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve/SecP160R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve,System.UInt32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve/SecP160R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve/SecP160R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve/SecP160R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve/SecP160R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::AddExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::AddOne(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::Half(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::Inv(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::MultiplyAddToExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::Negate(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::Random(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::RandomMult(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::Reduce(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::Reduce32(System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::Subtract(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::SubtractExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::Twice(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::.ctor(System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::.ctor(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Point::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve/SecP160R2LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve,System.UInt32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve/SecP160R2LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve/SecP160R2LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve/SecP160R2LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve/SecP160R2LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::AddExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::AddOne(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::Half(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::Inv(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::MultiplyAddToExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::Negate(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::Random(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::RandomMult(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::Reduce(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::Reduce32(System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::SquareN(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::Subtract(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::SubtractExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::Twice(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::.ctor(System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::.ctor(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Point::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve/SecP192K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve,System.UInt32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve/SecP192K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve/SecP192K1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve/SecP192K1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve/SecP192K1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::AddExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::AddOne(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::Half(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::Inv(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::MultiplyAddToExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::Negate(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::Random(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::RandomMult(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::Reduce(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::Reduce32(System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::Subtract(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::SubtractExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::Twice(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::.ctor(System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::.ctor(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Point::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve/SecP192R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve,System.UInt32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve/SecP192R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve/SecP192R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve/SecP192R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve/SecP192R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::AddExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::AddOne(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::Half(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::Inv(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::MultiplyAddToExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::Negate(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::Random(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::RandomMult(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::Reduce(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::Reduce32(System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::Subtract(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::SubtractExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::Twice(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::.ctor(System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::.ctor(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Point::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve/SecP224K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve,System.UInt32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve/SecP224K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve/SecP224K1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve/SecP224K1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve/SecP224K1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::AddExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::AddOne(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::Half(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::Inv(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::MultiplyAddToExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::Negate(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::Random(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::RandomMult(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::Reduce(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::Reduce32(System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::Subtract(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::SubtractExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::Twice(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::.ctor(System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::.ctor(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Point::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve/SecP224R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve,System.UInt32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve/SecP224R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve/SecP224R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve/SecP224R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve/SecP224R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::AddExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::AddOne(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::Half(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::Inv(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::MultiplyAddToExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::Negate(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::Random(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::RandomMult(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::Reduce(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::Reduce32(System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::Subtract(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::SubtractExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::Twice(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::.ctor(System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::.ctor(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Point::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve/SecP256K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve,System.UInt32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve/SecP256K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve/SecP256K1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve/SecP256K1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve/SecP256K1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::AddExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::AddOne(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::Half(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::Inv(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::MultiplyAddToExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::Negate(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::Random(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::RandomMult(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::Reduce(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::Reduce32(System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::Square(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::Subtract(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::SubtractExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::Twice(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::.ctor(System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::.ctor(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Point::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve/SecP256R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve,System.UInt32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve/SecP256R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve/SecP256R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve/SecP256R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve/SecP256R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::AddExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::AddOne(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::Half(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::Inv(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::MultiplyAddToExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::Negate(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::Random(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::RandomMult(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::Reduce(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::Reduce32(System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::Square(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::Subtract(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::SubtractExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::Twice(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::.ctor(System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::.ctor(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Point::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve/SecP384R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve,System.UInt32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve/SecP384R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve/SecP384R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve/SecP384R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve/SecP384R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::AddExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::AddOne(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::Half(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::Inv(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::Negate(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::Random(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::RandomMult(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::Reduce(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::Reduce32(System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::Square(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::Subtract(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::SubtractExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::Twice(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::.ctor(System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::.ctor(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Point::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve/SecP521R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve,System.UInt32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve/SecP521R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve/SecP521R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve/SecP521R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve/SecP521R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::AddOne(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::Half(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::Inv(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::Negate(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::Random(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::RandomMult(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::Reduce(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::Reduce23(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::Square(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::Subtract(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::Twice(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::.ctor(System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::.ctor(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Point::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::Add(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::AddBothTo(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::AddExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::AddOne(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::AddTo(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::HalfTrace(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::Invert(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::Multiply(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::MultiplyAddToExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::MultiplyExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::Reduce(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::Reduce15(System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::Sqrt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::Square(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::SquareAddToExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::SquareExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::SquareN(System.UInt64[],System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::Trace(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::.ctor(System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::.ctor(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::MultiplyMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::MultiplyPlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::SquareMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::SquarePlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::SquarePow(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::HalfTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::get_HasFastTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::Trace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::get_Representation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve/SecT113R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve/SecT113R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve/SecT113R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve/SecT113R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve/SecT113R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve/SecT113R2LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve/SecT113R2LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve/SecT113R2LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve/SecT113R2LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve/SecT113R2LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::Add(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::AddBothTo(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::AddExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::AddOne(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::AddTo(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::HalfTrace(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::Invert(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::Multiply(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::MultiplyAddToExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::MultiplyExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::Reduce(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::Reduce61(System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::Sqrt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::Square(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::SquareAddToExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::SquareExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::SquareN(System.UInt64[],System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::Trace(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::.ctor(System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::.ctor(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::MultiplyMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::MultiplyPlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::SquareMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::SquarePlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::SquarePow(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::HalfTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::get_HasFastTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::Trace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::get_Representation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve/SecT131R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve/SecT131R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve/SecT131R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve/SecT131R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve/SecT131R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve/SecT131R2LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve/SecT131R2LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve/SecT131R2LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve/SecT131R2LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve/SecT131R2LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::Add(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::AddBothTo(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::AddExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::AddOne(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::AddTo(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::HalfTrace(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::Invert(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::Multiply(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::MultiplyAddToExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::MultiplyExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::Reduce(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::Reduce29(System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::Sqrt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::Square(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::SquareAddToExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::SquareExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::SquareN(System.UInt64[],System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::Trace(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::.ctor(System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::.ctor(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::MultiplyMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::MultiplyPlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::SquareMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::SquarePlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::SquarePow(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::HalfTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::get_HasFastTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::Trace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::get_Representation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve/SecT163K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve/SecT163K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve/SecT163K1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve/SecT163K1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve/SecT163K1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve/SecT163R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve/SecT163R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve/SecT163R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve/SecT163R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve/SecT163R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve/SecT163R2LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve/SecT163R2LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve/SecT163R2LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve/SecT163R2LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve/SecT163R2LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::Add(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::AddBothTo(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::AddExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::AddOne(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::AddTo(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::HalfTrace(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::Invert(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::Multiply(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::MultiplyAddToExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::MultiplyExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::Reduce(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::Reduce63(System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::Sqrt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::Square(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::SquareAddToExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::SquareExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::SquareN(System.UInt64[],System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::Trace(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::.ctor(System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::.ctor(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::MultiplyMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::MultiplyPlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::SquareMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::SquarePlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::SquarePow(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::HalfTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::get_HasFastTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::Trace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::get_Representation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve/SecT193R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve/SecT193R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve/SecT193R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve/SecT193R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve/SecT193R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve/SecT193R2LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve/SecT193R2LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve/SecT193R2LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve/SecT193R2LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve/SecT193R2LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::Add(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::AddBothTo(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::AddExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::AddOne(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::AddTo(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::HalfTrace(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::Invert(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::Multiply(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::MultiplyAddToExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::MultiplyExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::Reduce(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::Reduce23(System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::Sqrt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::Square(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::SquareAddToExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::SquareExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::SquareN(System.UInt64[],System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::Trace(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::.ctor(System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::.ctor(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::MultiplyMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::MultiplyPlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::SquareMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::SquarePlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::SquarePow(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::HalfTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::get_HasFastTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::Trace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::get_Representation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve/SecT233K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve/SecT233K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve/SecT233K1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve/SecT233K1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve/SecT233K1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve/SecT233R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve/SecT233R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve/SecT233R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve/SecT233R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve/SecT233R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::Add(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::AddBothTo(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::AddExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::AddOne(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::AddTo(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::HalfTrace(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::Invert(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::Multiply(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::MultiplyAddToExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::MultiplyExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::Reduce(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::Reduce17(System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::Sqrt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::Square(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::SquareAddToExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::SquareExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::SquareN(System.UInt64[],System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::Trace(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::.ctor(System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::.ctor(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::MultiplyMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::MultiplyPlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::SquareMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::SquarePlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::SquarePow(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::HalfTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::get_HasFastTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::Trace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::get_Representation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve/SecT239K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve/SecT239K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve/SecT239K1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve/SecT239K1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve/SecT239K1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::Add(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::AddBothTo(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::AddExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::AddOne(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::AddTo(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::HalfTrace(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::Invert(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::Multiply(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::MultiplyAddToExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::MultiplyExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::Reduce(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::Reduce37(System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::Sqrt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::Square(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::SquareAddToExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::SquareExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::SquareN(System.UInt64[],System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::Trace(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::.ctor(System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::.ctor(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::MultiplyMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::MultiplyPlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::SquareMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::SquarePlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::SquarePow(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::HalfTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::get_HasFastTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::Trace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::get_Representation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve/SecT283K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve/SecT283K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve/SecT283K1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve/SecT283K1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve/SecT283K1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve/SecT283R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve/SecT283R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve/SecT283R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve/SecT283R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve/SecT283R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::Add(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::AddBothTo(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::AddExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::AddOne(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::AddTo(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::HalfTrace(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::Invert(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::Multiply(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::MultiplyAddToExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::MultiplyExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::Reduce(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::Reduce39(System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::Sqrt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::Square(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::SquareAddToExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::SquareExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::SquareN(System.UInt64[],System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::Trace(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::.ctor(System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::.ctor(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::MultiplyMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::MultiplyPlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::SquareMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::SquarePlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::SquarePow(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::HalfTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::get_HasFastTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::Trace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::get_Representation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve/SecT409K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve/SecT409K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve/SecT409K1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve/SecT409K1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve/SecT409K1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve/SecT409R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve/SecT409R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve/SecT409R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve/SecT409R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve/SecT409R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::Add(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::AddBothTo(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::AddExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::AddOne(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::AddTo(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::HalfTrace(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::Invert(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::Multiply(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::MultiplyAddToExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::MultiplyExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::MultiplyPrecomp(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::MultiplyPrecompAddToExt(System.UInt64[],System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::PrecompMultiplicand(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::Reduce(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::Reduce5(System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::Sqrt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::Square(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::SquareAddToExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::SquareExt(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::SquareN(System.UInt64[],System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::Trace(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::.ctor(System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::.ctor(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::MultiplyMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::MultiplyPlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::SquareMinusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::SquarePlusProduct(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::SquarePow(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::HalfTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::get_HasFastTrace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::Trace()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::get_Representation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve/SecT571K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve/SecT571K1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve/SecT571K1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve/SecT571K1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve/SecT571K1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve/SecT571R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve,System.UInt64[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve/SecT571R1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve,System.UInt64[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve/SecT571R1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve/SecT571R1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve/SecT571R1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::get_IsKoblitz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::get_IsTrinomial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::get_K1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::get_K2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::get_K3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Point::get_YCoord()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Point::get_CompressionYTilde()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve/SM2P256V1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve,System.UInt32[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve/SM2P256V1LookupTable::.ctor(Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve/SM2P256V1LookupTable::get_Size()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve/SM2P256V1LookupTable::Lookup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve/SM2P256V1LookupTable::LookupVar(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::SupportsCoordinateSystem(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::get_Infinity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::CreateRawPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::CreateCacheSafeLookupTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::RandomFieldElement(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::RandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::Add(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::AddExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::AddOne(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::FromBigInteger(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::Inv(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::Half(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::IsZero(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::Multiply(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::MultiplyAddToExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::Negate(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::Random(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::RandomMult(Org.BouncyCastle.Security.SecureRandom,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::Reduce(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::Reduce32(System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::Square(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::SquareN(System.UInt32[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::Subtract(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::SubtractExt(System.UInt32[],System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::Twice(System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::.ctor(System.UInt32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::.ctor(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::get_IsZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::get_IsOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::TestBitZero()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::ToBigInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::get_FieldName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::get_FieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::Add(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::AddOne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::Subtract(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::Multiply(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::Divide(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::Square()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::Invert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::Sqrt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::Equals(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::Equals(Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Point::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Point::Add(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Point::Twice()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Point::TwicePlus(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Point::ThreeTimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Point::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::GetInstance(Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::.ctor(Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::.ctor(Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::.ctor(Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::AdjustScale(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::Add(Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::Add(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::Negate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::Subtract(Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::Subtract(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::Multiply(Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::Multiply(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::Divide(Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::Divide(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::ShiftLeft(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::CompareTo(Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::CompareTo(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::Floor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::Round()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::get_IntValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::get_LongValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::get_Scale()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Abc.Tnaf/PartModPreCompCallback::.ctor(Org.BouncyCastle.Math.EC.AbstractF2mCurve,System.SByte,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Abc.Tnaf/PartModPreCompCallback::.ctor(Org.BouncyCastle.Math.EC.AbstractF2mCurve,System.SByte,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo Org.BouncyCastle.Math.EC.Abc.Tnaf/PartModPreCompCallback::Precompute(Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Abc.Tnaf/PartModPreCompInfo::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Abc.Tnaf/PartModPreCompInfo::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Abc.Tnaf/PartModPreCompInfo::get_Lucas()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Abc.Tnaf/PartModPreCompInfo::get_S0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Abc.Tnaf/PartModPreCompInfo::get_S1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Abc.Tnaf::Norm(System.SByte,Org.BouncyCastle.Math.EC.Abc.ZTauElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.Tnaf::Norm(System.SByte,Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal,Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.ZTauElement Org.BouncyCastle.Math.EC.Abc.Tnaf::Round(Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal,Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal,System.SByte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal Org.BouncyCastle.Math.EC.Abc.Tnaf::ApproximateDivisionByN(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.SByte,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.SByte[] Org.BouncyCastle.Math.EC.Abc.Tnaf::TauAdicNaf(System.SByte,Org.BouncyCastle.Math.EC.Abc.ZTauElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractF2mPoint Org.BouncyCastle.Math.EC.Abc.Tnaf::Tau(Org.BouncyCastle.Math.EC.AbstractF2mPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.SByte Org.BouncyCastle.Math.EC.Abc.Tnaf::GetMu(Org.BouncyCastle.Math.EC.AbstractF2mCurve)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.SByte Org.BouncyCastle.Math.EC.Abc.Tnaf::GetMu(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.SByte Org.BouncyCastle.Math.EC.Abc.Tnaf::GetMu(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Math.EC.Abc.Tnaf::GetLucas(System.SByte,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Abc.Tnaf::GetTw(System.SByte,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Math.EC.Abc.Tnaf::GetSi(Org.BouncyCastle.Math.EC.AbstractF2mCurve)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Math.EC.Abc.Tnaf::GetSi(System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.ZTauElement Org.BouncyCastle.Math.EC.Abc.Tnaf::PartModReduction(Org.BouncyCastle.Math.EC.AbstractF2mCurve,Org.BouncyCastle.Math.BigInteger,System.SByte,System.SByte,System.SByte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractF2mPoint Org.BouncyCastle.Math.EC.Abc.Tnaf::MultiplyRTnaf(Org.BouncyCastle.Math.EC.AbstractF2mPoint,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractF2mPoint Org.BouncyCastle.Math.EC.Abc.Tnaf::MultiplyTnaf(Org.BouncyCastle.Math.EC.AbstractF2mPoint,Org.BouncyCastle.Math.EC.Abc.ZTauElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractF2mPoint Org.BouncyCastle.Math.EC.Abc.Tnaf::MultiplyFromTnaf(Org.BouncyCastle.Math.EC.AbstractF2mPoint,Org.BouncyCastle.Math.EC.AbstractF2mPoint,System.SByte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.SByte[] Org.BouncyCastle.Math.EC.Abc.Tnaf::TauAdicWNaf(System.SByte,Org.BouncyCastle.Math.EC.Abc.ZTauElement,System.Int32,System.Int32,Org.BouncyCastle.Math.EC.Abc.ZTauElement[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractF2mPoint[] Org.BouncyCastle.Math.EC.Abc.Tnaf::GetPreComp(Org.BouncyCastle.Math.EC.AbstractF2mPoint,System.SByte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Abc.Tnaf::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Abc.ZTauElement::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Abc.ZTauElement::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.CmsContentEncryptorBuilder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.CmsContentEncryptorBuilder::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.CmsContentEncryptorBuilder::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.CmsContentEncryptorBuilder::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.CmsContentEncryptorBuilder::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherBuilderWithKey Org.BouncyCastle.Operators.CmsContentEncryptorBuilder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.CmsKeyTransRecipientInfoGenerator::.ctor(Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Crypto.IKeyWrapper)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.CmsKeyTransRecipientInfoGenerator::.ctor(Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Crypto.IKeyWrapper)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.CmsKeyTransRecipientInfoGenerator::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber,Org.BouncyCastle.Crypto.IKeyWrapper)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.CmsKeyTransRecipientInfoGenerator::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber,Org.BouncyCastle.Crypto.IKeyWrapper)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.CmsKeyTransRecipientInfoGenerator::.ctor(System.Byte[],Org.BouncyCastle.Crypto.IKeyWrapper)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.CmsKeyTransRecipientInfoGenerator::.ctor(System.Byte[],Org.BouncyCastle.Crypto.IKeyWrapper)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.Utilities.DefaultDigestAlgorithmFinder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.Utilities.DefaultDigestAlgorithmFinder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Operators.Utilities.DefaultDigestAlgorithmFinder::Find(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Operators.Utilities.DefaultDigestAlgorithmFinder::Find(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Operators.Utilities.DefaultDigestAlgorithmFinder::Find(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.Utilities.DefaultMacAlgorithmFinder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.Utilities.DefaultMacAlgorithmFinder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Operators.Utilities.DefaultMacAlgorithmFinder::Find(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.Utilities.DefaultSignatureAlgorithmFinder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.Utilities.DefaultSignatureAlgorithmFinder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Operators.Utilities.DefaultSignatureAlgorithmFinder::Find(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder::Find(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder::Find(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder::Find(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Operators.Utilities.IMacAlgorithmFinder::Find(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Operators.Utilities.ISignatureAlgorithmFinder::Find(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.AesUtilities::CreateEngine()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.AesUtilities::get_IsHardwareAccelerated()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair::get_Public()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair::get_Private()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.AsymmetricKeyParameter::.ctor(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.AsymmetricKeyParameter::get_IsPrivate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.AsymmetricKeyParameter::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.AsymmetricKeyParameter::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IAeadBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IAeadBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::ProcessByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::DoFinal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::DoFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedAeadBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedAeadCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IAeadCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedAeadCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IAeadCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.BufferedAeadCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedAeadCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAeadCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAeadCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAeadCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAeadCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedAeadCipher::ProcessByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedAeadCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAeadCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedAeadCipher::DoFinal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedAeadCipher::DoFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAeadCipher::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedAeadCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::GetBufferPosition()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::ProcessByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::DoFinal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::DoFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedBlockCipher::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedBlockCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IBlockCipherMode)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedBlockCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IBlockCipherMode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.BufferedBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedBlockCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedBlockCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedBlockCipher::ProcessByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedBlockCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedBlockCipher::DoFinal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedBlockCipher::DoFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedBlockCipher::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.BufferedCipherBase::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedCipherBase::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedCipherBase::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedCipherBase::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedCipherBase::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedCipherBase::ProcessByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedCipherBase::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedCipherBase::ProcessBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedCipherBase::ProcessBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedCipherBase::ProcessBytes(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedCipherBase::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedCipherBase::DoFinal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedCipherBase::DoFinal(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedCipherBase::DoFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedCipherBase::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedCipherBase::DoFinal(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedCipherBase::DoFinal(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedCipherBase::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedCipherBase::GetFullBlocksSize(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.BufferedCipherBase::SegmentsOverlap(System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedCipherBase::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedCipherBase::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedIesCipher::.ctor(Org.BouncyCastle.Crypto.Engines.IesEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedIesCipher::.ctor(Org.BouncyCastle.Crypto.Engines.IesEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.BufferedIesCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedIesCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedIesCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedIesCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedIesCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedIesCipher::ProcessByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedIesCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedIesCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedIesCipher::DoFinal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedIesCipher::DoFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedIesCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedStreamCipher::.ctor(Org.BouncyCastle.Crypto.IStreamCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedStreamCipher::.ctor(Org.BouncyCastle.Crypto.IStreamCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.BufferedStreamCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedStreamCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedStreamCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedStreamCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedStreamCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedStreamCipher::ProcessByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedStreamCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedStreamCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.BufferedStreamCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedStreamCipher::DoFinal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.BufferedStreamCipher::DoFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.BufferedStreamCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Check::DataLength(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Check::DataLength(System.Byte[],System.Int32,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Check::OutputLength(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Check::OutputLength(System.Byte[],System.Int32,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Check::ThrowDataLengthException(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Check::ThrowOutputLengthException(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CipherKeyGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CipherKeyGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CipherKeyGenerator::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CipherKeyGenerator::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.CipherKeyGenerator::get_DefaultStrength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CipherKeyGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.CipherKeyGenerator::GenerateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Crypto.CipherKeyGenerator::GenerateKeyParameter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CryptoException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CryptoException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CryptoException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CryptoException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CryptoException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CryptoException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CryptoException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Crypto.CryptoServicesRegistrar::GetSecureRandom()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Crypto.CryptoServicesRegistrar::GetSecureRandom(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.DataLengthException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.DataLengthException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.DataLengthException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.DataLengthException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.DataLengthException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.DataLengthException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.DataLengthException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IAlphabetMapper::get_Radix()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IAlphabetMapper::ConvertToIndexes(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Char[] Org.BouncyCastle.Crypto.IAlphabetMapper::ConvertToChars(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.IAsymmetricBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IAsymmetricBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IAsymmetricBlockCipher::GetInputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IAsymmetricBlockCipher::GetOutputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IAsymmetricBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IAsymmetricCipherKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.IAsymmetricCipherKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IBasicAgreement::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBasicAgreement::GetFieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.IBasicAgreement::CalculateAgreement(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.IBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IBlockResult::Collect()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBlockResult::Collect(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBlockResult::GetMaxResultLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.IBufferedCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IBufferedCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBufferedCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBufferedCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBufferedCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IBufferedCipher::ProcessByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBufferedCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IBufferedCipher::ProcessBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IBufferedCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBufferedCipher::ProcessBytes(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBufferedCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IBufferedCipher::DoFinal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IBufferedCipher::DoFinal(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IBufferedCipher::DoFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBufferedCipher::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBufferedCipher::DoFinal(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IBufferedCipher::DoFinal(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IBufferedCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.ICharToByteConverter::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.ICharToByteConverter::Convert(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.ICipher::GetMaxOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.ICipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Crypto.ICipher::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.ICipherBuilder::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.ICipherBuilder::GetMaxOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipher Org.BouncyCastle.Crypto.ICipherBuilder::BuildCipher(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.ICipherBuilderWithKey::get_Key()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherBuilder Org.BouncyCastle.Crypto.IDecryptorBuilderProvider::CreateDecryptorBuilder(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IDerivationFunction::Init(Org.BouncyCastle.Crypto.IDerivationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.IDerivationFunction::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IDerivationFunction::GenerateBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.IDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.IDigestFactory::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IDigestFactory::get_DigestLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IStreamCalculator`1 Org.BouncyCastle.Crypto.IDigestFactory::CreateCalculator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.IDsa::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IDsa::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.IDsa::GenerateSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.IDsa::get_Order()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IDsa::VerifySignature(System.Byte[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IEncapsulatedSecretExtractor::ExtractSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IEncapsulatedSecretExtractor::get_EncapsulationLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISecretWithEncapsulation Org.BouncyCastle.Crypto.IEncapsulatedSecretGenerator::GenerateEncapsulated(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IEntropySource::get_IsPredictionResistant()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IEntropySource::GetEntropy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IEntropySource::get_EntropySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IEntropySource Org.BouncyCastle.Crypto.IEntropySourceProvider::Get(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IKemDecapsulator::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IKemDecapsulator::get_EncapsulationLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IKemDecapsulator::get_SecretLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IKemDecapsulator::Decapsulate(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IKemEncapsulator::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IKemEncapsulator::get_EncapsulationLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IKemEncapsulator::get_SecretLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IKemEncapsulator::Encapsulate(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.IKeyUnwrapper::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockResult Org.BouncyCastle.Crypto.IKeyUnwrapper::Unwrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.IKeyWrapper::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockResult Org.BouncyCastle.Crypto.IKeyWrapper::Wrap(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IMac::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.IMac::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IMac::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IMac::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IMac::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IMac::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IMac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMac Org.BouncyCastle.Crypto.IMacDerivationFunction::get_Mac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.IMacFactory::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IStreamCalculator`1 Org.BouncyCastle.Crypto.IMacFactory::CreateCalculator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.InvalidCipherTextException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.InvalidCipherTextException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.InvalidCipherTextException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.InvalidCipherTextException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.InvalidCipherTextException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.InvalidCipherTextException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.InvalidCipherTextException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IRawAgreement::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IRawAgreement::get_AgreementSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IRawAgreement::CalculateAgreement(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IRsa::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IRsa::GetInputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IRsa::GetOutputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.IRsa::ConvertInput(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.IRsa::ProcessBlock(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IRsa::ConvertOutput(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.ISecretWithEncapsulation::GetSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.ISecretWithEncapsulation::GetEncapsulation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.ISignatureFactory::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IStreamCalculator`1 Org.BouncyCastle.Crypto.ISignatureFactory::CreateCalculator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.ISigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.ISigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.ISigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.ISigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.ISigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.ISigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.ISigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.ISigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.ISignerWithRecovery::HasFullMessage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.ISignerWithRecovery::GetRecoveredMessage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.ISignerWithRecovery::UpdateWithRecoveredMessage(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Crypto.IStreamCalculator`1::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] TResult Org.BouncyCastle.Crypto.IStreamCalculator`1::GetResult()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.IStreamCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IStreamCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.IStreamCipher::ReturnByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IStreamCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IStreamCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IVerifier::IsVerified(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IVerifier::IsVerified(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.IVerifierFactory::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IStreamCalculator`1 Org.BouncyCastle.Crypto.IVerifierFactory::CreateCalculator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IVerifierFactory Org.BouncyCastle.Crypto.IVerifierFactoryProvider::CreateVerifierFactory(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.IWrapper::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IWrapper::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IWrapper::Wrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IWrapper::Unwrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IXof::OutputFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IXof::Output(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Crypto.KeyGenerationParameters::get_Random()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.KeyGenerationParameters::get_Strength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.MaxBytesExceededException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.MaxBytesExceededException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.MaxBytesExceededException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.MaxBytesExceededException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.MaxBytesExceededException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.MaxBytesExceededException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.MaxBytesExceededException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.OutputLengthException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.OutputLengthException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.OutputLengthException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.OutputLengthException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.OutputLengthException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.OutputLengthException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.OutputLengthException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.PasswordConverter/ConverterFunction::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.PasswordConverter/ConverterFunction::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.PasswordConverter/ConverterFunction::Invoke(System.Char[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.PasswordConverter/ConverterFunction::Invoke(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IAsyncResult Org.BouncyCastle.Crypto.PasswordConverter/ConverterFunction::BeginInvoke(System.Char[],System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IAsyncResult Org.BouncyCastle.Crypto.PasswordConverter/ConverterFunction::BeginInvoke(System.Char[],System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.PasswordConverter/ConverterFunction::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.PasswordConverter/ConverterFunction::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.PasswordConverter::.ctor(System.String,Org.BouncyCastle.Crypto.PasswordConverter/ConverterFunction)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.PasswordConverter::Convert(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.PasswordConverter::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.PasswordConverter::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.PbeParametersGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.PbeParametersGenerator::Init(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.PbeParametersGenerator::get_Password()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.PbeParametersGenerator::get_Salt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.PbeParametersGenerator::get_IterationCount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.PbeParametersGenerator::GenerateDerivedParameters(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.PbeParametersGenerator::GenerateDerivedParameters(System.String,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.PbeParametersGenerator::GenerateDerivedMacParameters(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.PbeParametersGenerator::Pkcs5PasswordToBytes(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.PbeParametersGenerator::Pkcs5PasswordToUtf8Bytes(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.PbeParametersGenerator::Pkcs12PasswordToBytes(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.PbeParametersGenerator::Pkcs12PasswordToBytes(System.Char[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.SimpleBlockResult::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.SimpleBlockResult::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.SimpleBlockResult::Collect()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.SimpleBlockResult::Collect(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.SimpleBlockResult::GetMaxResultLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.StreamBlockCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IBlockCipherMode)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.StreamBlockCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IBlockCipherMode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.StreamBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.StreamBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.StreamBlockCipher::ReturnByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.StreamBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.StreamBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Crypto.Utilities.AlgorithmIdentifierFactory::GenerateEncryptionAlgID(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.AlgorithmIdentifierFactory::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.AlgorithmIdentifierFactory::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.AlgorithmIdentifierFactory::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.BasicAlphabetMapper::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.BasicAlphabetMapper::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.BasicAlphabetMapper::.ctor(System.Char[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.BasicAlphabetMapper::.ctor(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Utilities.BasicAlphabetMapper::get_Radix()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.BasicAlphabetMapper::ConvertToIndexes(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Char[] Org.BouncyCastle.Crypto.Utilities.BasicAlphabetMapper::ConvertToChars(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.CipherFactory::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.Utilities.CipherFactory::CreateContentCipher(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.CipherFactory::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.CipherKeyGenerator Org.BouncyCastle.Crypto.Utilities.CipherKeyGeneratorFactory::CreateKeyGenerator(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.DerOtherInfo/Builder::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.DerOtherInfo/Builder::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.DerOtherInfo/Builder Org.BouncyCastle.Crypto.Utilities.DerOtherInfo/Builder::WithSuppPubInfo(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.DerOtherInfo/Builder Org.BouncyCastle.Crypto.Utilities.DerOtherInfo/Builder::WithSuppPrivInfo(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.DerOtherInfo Org.BouncyCastle.Crypto.Utilities.DerOtherInfo/Builder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.DerOtherInfo::.ctor(Org.BouncyCastle.Asn1.DerSequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.DerOtherInfo::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Crypto.Utilities.DerUtilities::GetOctetString(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.DerUtilities::ToByteArray(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.DerUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.DerUtilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.OpenSshPrivateKeyUtilities::EncodePrivateKey(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Crypto.Utilities.OpenSshPrivateKeyUtilities::ParsePrivateKeyBlob(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.OpenSshPrivateKeyUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Crypto.Utilities.OpenSshPublicKeyUtilities::ParsePublicKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.OpenSshPublicKeyUtilities::EncodePublicKey(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.OpenSshPublicKeyUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_BE(System.UInt16,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_BE(System.UInt16,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_BE(System.UInt16[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_BE(System.UInt16[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_BE(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_BE(System.UInt16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_BE(System.UInt16[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt16(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt16(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt16(System.Byte[],System.Int32,System.UInt16[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt16(System.Byte[],System.Int32,System.UInt16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt16(System.Byte[],System.Int32,System.UInt16[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt16(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt24_To_BE(System.UInt32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt24_To_BE(System.UInt32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt24(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt24(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_BE(System.UInt32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_BE(System.UInt32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_BE(System.UInt32[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_BE(System.UInt32[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_BE(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_BE(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_BE(System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_BE_High(System.UInt32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_BE_Low(System.UInt32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt32(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt32(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt32(System.Byte[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt32(System.Byte[],System.Int32,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt32(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt32_High(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt32_Low(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_BE(System.UInt64,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_BE(System.UInt64,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_BE(System.UInt64[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_BE(System.UInt64[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_BE(System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_BE(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_BE(System.UInt64[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_BE_High(System.UInt64,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_BE_Low(System.UInt64,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt64(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt64(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt64(System.Byte[],System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt64(System.Byte[],System.Int32,System.UInt64[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt64(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt64_High(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Utilities.Pack::BE_To_UInt64_Low(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_LE(System.UInt16,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_LE(System.UInt16,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_LE(System.UInt16[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_LE(System.UInt16[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_LE(System.UInt16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_LE(System.UInt16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt16_To_LE(System.UInt16[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt16(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt16(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt16(System.Byte[],System.Int32,System.UInt16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt16(System.Byte[],System.Int32,System.UInt16[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt16(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_LE(System.UInt32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_LE(System.UInt32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_LE(System.UInt32[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_LE(System.UInt32[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_LE(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_LE(System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_LE(System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_LE_High(System.UInt32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt32_To_LE_Low(System.UInt32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt24(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt32(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt32(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt32(System.Byte[],System.Int32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt32(System.Byte[],System.Int32,System.UInt32[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt32(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt32_High(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt32_Low(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_LE(System.UInt64,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_LE(System.UInt64,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_LE(System.UInt64[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_LE(System.UInt64[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_LE(System.UInt64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_LE(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_LE(System.UInt64[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_LE_High(System.UInt64,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::UInt64_To_LE_Low(System.UInt64,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt64(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt64(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt64(System.Byte[],System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt64(System.Byte[],System.Int32,System.UInt64[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt64(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt64_High(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Utilities.Pack::LE_To_UInt64_Low(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshBuffer::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshBuffer::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshBuffer::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshBuffer::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Utilities.SshBuffer::ReadU32()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Utilities.SshBuffer::ReadStringAscii()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Utilities.SshBuffer::ReadStringUtf8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.SshBuffer::ReadBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshBuffer::SkipBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.SshBuffer::ReadPaddedBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.SshBuffer::ReadPaddedBlock(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Utilities.SshBuffer::ReadMpint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Utilities.SshBuffer::ReadMpintPositive()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Utilities.SshBuffer::HasRemaining()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshBuilder::U32(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshBuilder::WriteMpint(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshBuilder::WriteBlock(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshBuilder::WriteBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshBuilder::WriteStringAscii(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshBuilder::WriteStringUtf8(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.SshBuilder::GetBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.SshBuilder::GetPaddedBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Utilities.SshBuilder::GetPaddedBytes(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshBuilder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshBuilder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshNamedCurves::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.Utilities.SshNamedCurves::GetByName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Crypto.Utilities.SshNamedCurves::GetByNameLazy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.Utilities.SshNamedCurves::GetByOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Crypto.Utilities.SshNamedCurves::GetByOidLazy(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Utilities.SshNamedCurves::GetName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Utilities.SshNamedCurves::GetOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Crypto.Utilities.SshNamedCurves::get_Names()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Tls.TlsRsaKeyExchange::DecryptPreMasterSecret(System.Byte[],System.Int32,System.Int32,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters,System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Tls.TlsRsaKeyExchange::GetInputLimit(Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.DsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IDsa,Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.DsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IDsa,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.DsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IDsa,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.Signers.IDsaEncoding)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.DsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IDsa,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.Signers.IDsaEncoding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.DsaDigestSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.DsaDigestSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.DsaDigestSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.DsaDigestSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.DsaDigestSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.DsaDigestSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.DsaDigestSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.DsaDigestSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.DsaSigner::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.DsaSigner::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.DsaSigner::.ctor(Org.BouncyCastle.Crypto.Signers.IDsaKCalculator)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.DsaSigner::.ctor(Org.BouncyCastle.Crypto.Signers.IDsaKCalculator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.DsaSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.DsaSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.DsaSigner::get_Order()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Signers.DsaSigner::GenerateSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.DsaSigner::VerifySignature(System.Byte[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.ECDsaSigner::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.ECDsaSigner::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.ECDsaSigner::.ctor(Org.BouncyCastle.Crypto.Signers.IDsaKCalculator)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.ECDsaSigner::.ctor(Org.BouncyCastle.Crypto.Signers.IDsaKCalculator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.ECDsaSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.ECDsaSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.ECDsaSigner::get_Order()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Signers.ECDsaSigner::GenerateSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.ECDsaSigner::VerifySignature(System.Byte[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.ECDsaSigner::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.ECGost3410Signer::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.ECGost3410Signer::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.ECGost3410Signer::get_Order()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Signers.ECGost3410Signer::GenerateSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.ECGost3410Signer::VerifySignature(System.Byte[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.ECGost3410Signer::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.ECGost3410Signer::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.ECNRSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.ECNRSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.ECNRSigner::get_Order()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Signers.ECNRSigner::GenerateSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.ECNRSigner::VerifySignature(System.Byte[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.ECNRSigner::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.ECNRSigner::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner/Buffer::GenerateSignature(Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner/Buffer::VerifySignature(Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner/Buffer::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner/Buffer::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner/Buffer::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519phSigner::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519phSigner::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.Ed25519phSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519phSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519phSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519phSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.Ed25519phSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Ed25519phSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Ed25519phSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519phSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Ed25519Signer/Buffer::GenerateSignature(Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Ed25519Signer/Buffer::VerifySignature(Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519Signer/Buffer::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519Signer/Buffer::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519Signer/Buffer::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519Signer::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519Signer::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.Ed25519Signer::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519Signer::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519Signer::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519Signer::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.Ed25519Signer::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Ed25519Signer::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Ed25519Signer::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed25519Signer::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448phSigner::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448phSigner::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.Ed448phSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448phSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448phSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448phSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.Ed448phSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Ed448phSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Ed448phSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448phSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Ed448Signer/Buffer::GenerateSignature(Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Ed448Signer/Buffer::VerifySignature(Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448Signer/Buffer::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448Signer/Buffer::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448Signer/Buffer::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448Signer::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448Signer::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.Ed448Signer::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448Signer::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448Signer::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448Signer::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.Ed448Signer::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Ed448Signer::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Ed448Signer::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Ed448Signer::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.GenericSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.GenericSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.GenericSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.GenericSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.GenericSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.GenericSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.GenericSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.GenericSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.GenericSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.GenericSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Gost3410DigestSigner::.ctor(Org.BouncyCastle.Crypto.IDsa,Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Gost3410DigestSigner::.ctor(Org.BouncyCastle.Crypto.IDsa,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.Gost3410DigestSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Gost3410DigestSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Gost3410DigestSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Gost3410DigestSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.Gost3410DigestSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Gost3410DigestSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Gost3410DigestSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Gost3410DigestSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.Gost3410Signer::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Gost3410Signer::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.Gost3410Signer::get_Order()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Signers.Gost3410Signer::GenerateSignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Gost3410Signer::VerifySignature(System.Byte[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Gost3410Signer::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Gost3410Signer::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashMLDsaSigner::.ctor(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashMLDsaSigner::.ctor(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.HashMLDsaSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashMLDsaSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashMLDsaSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashMLDsaSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.HashMLDsaSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.HashMLDsaSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.HashMLDsaSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashMLDsaSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner/Buffer::Init(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner/Buffer::GenerateSignature(Org.BouncyCastle.Crypto.Parameters.SlhDsaPrivateKeyParameters,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner/Buffer::VerifySignature(Org.BouncyCastle.Crypto.Parameters.SlhDsaPublicKeyParameters,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner/Buffer::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner/Buffer::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner/Buffer::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner::.ctor(Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner::.ctor(Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HMacDsaKCalculator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HMacDsaKCalculator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.HMacDsaKCalculator::get_IsDeterministic()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HMacDsaKCalculator::Init(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HMacDsaKCalculator::Init(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.HMacDsaKCalculator::NextK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Signers.IDsaEncoding::Decode(Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.IDsaEncoding::Encode(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.IDsaEncoding::GetMaxEncodingSize(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.IDsaKCalculator::get_IsDeterministic()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.IDsaKCalculator::Init(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.IDsaKCalculator::Init(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.IDsaKCalculator::NextK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::GetRecoveredMessage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::UpdateWithRecoveredMessage(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::HasFullMessage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::GetRecoveredMessage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::UpdateWithRecoveredMessage(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::HasFullMessage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.IsoTrailers::GetTrailer(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.IsoTrailers::NoTrailerAvailable(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.IsoTrailers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.IsoTrailers::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.IsoTrailers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.MLDsaSigner::.ctor(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.MLDsaSigner::.ctor(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.MLDsaSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.MLDsaSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.MLDsaSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.MLDsaSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.MLDsaSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.MLDsaSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.MLDsaSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.MLDsaSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Signers.PlainDsaEncoding::Decode(Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.PlainDsaEncoding::Encode(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.PlainDsaEncoding::GetMaxEncodingSize(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PlainDsaEncoding::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PlainDsaEncoding::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PlainDsaEncoding::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.PssSigner Org.BouncyCastle.Crypto.Signers.PssSigner::CreateRawSigner(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.PssSigner Org.BouncyCastle.Crypto.Signers.PssSigner::CreateRawSigner(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.PssSigner Org.BouncyCastle.Crypto.Signers.PssSigner::CreateRawSigner(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest,System.Int32,System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.PssSigner Org.BouncyCastle.Crypto.Signers.PssSigner::CreateRawSigner(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Int32,System.Byte)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Int32,System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest,System.Int32,System.Byte)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest,System.Int32,System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest,System.Int32,System.Byte[],System.Byte)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.PssSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.PssSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.PssSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.PssSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.RandomDsaKCalculator::get_IsDeterministic()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RandomDsaKCalculator::Init(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RandomDsaKCalculator::Init(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.RandomDsaKCalculator::NextK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RandomDsaKCalculator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RandomDsaKCalculator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IRsa,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IRsa,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IRsa,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IRsa,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SlhDsaSigner/Buffer::Init(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.SlhDsaSigner/Buffer::GenerateSignature(Org.BouncyCastle.Crypto.Parameters.SlhDsaPrivateKeyParameters,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.SlhDsaSigner/Buffer::VerifySignature(Org.BouncyCastle.Crypto.Parameters.SlhDsaPublicKeyParameters,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SlhDsaSigner/Buffer::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SlhDsaSigner/Buffer::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SlhDsaSigner/Buffer::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SlhDsaSigner::.ctor(Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SlhDsaSigner::.ctor(Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.SlhDsaSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SlhDsaSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SlhDsaSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SlhDsaSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.SlhDsaSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.SlhDsaSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.SlhDsaSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SlhDsaSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::.ctor(Org.BouncyCastle.Crypto.Signers.IDsaEncoding)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::.ctor(Org.BouncyCastle.Crypto.Signers.IDsaEncoding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::.ctor(Org.BouncyCastle.Crypto.Signers.IDsaEncoding,Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::.ctor(Org.BouncyCastle.Crypto.Signers.IDsaEncoding,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.SM2Signer::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.SM2Signer::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.SM2Signer::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.SM2Signer::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Signers.StandardDsaEncoding::Decode(Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.StandardDsaEncoding::Encode(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.StandardDsaEncoding::GetMaxEncodingSize(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.StandardDsaEncoding::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.StandardDsaEncoding::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.StandardDsaEncoding::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.X931Signer::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.X931Signer::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.X931Signer::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.X931Signer::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Signers.X931Signer::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.X931Signer::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.X931Signer::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.X931Signer::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.X931Signer::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.X931Signer::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.X931Signer::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.X931Signer::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider/BasicEntropySource::.ctor(Org.BouncyCastle.Security.SecureRandom,System.Boolean,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider/BasicEntropySource::.ctor(Org.BouncyCastle.Security.SecureRandom,System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider::.ctor(Org.BouncyCastle.Security.SecureRandom,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider::.ctor(Org.BouncyCastle.Security.SecureRandom,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IEntropySource Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider::Get(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiEntropySourceProvider/CryptoApiEntropySource::.ctor(System.Security.Cryptography.RandomNumberGenerator,System.Boolean,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiEntropySourceProvider/CryptoApiEntropySource::.ctor(System.Security.Cryptography.RandomNumberGenerator,System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiEntropySourceProvider::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiEntropySourceProvider::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiEntropySourceProvider::.ctor(System.Security.Cryptography.RandomNumberGenerator,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiEntropySourceProvider::.ctor(System.Security.Cryptography.RandomNumberGenerator,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IEntropySource Org.BouncyCastle.Crypto.Prng.CryptoApiEntropySourceProvider::Get(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiRandomGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiRandomGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiRandomGenerator::.ctor(System.Security.Cryptography.RandomNumberGenerator)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiRandomGenerator::.ctor(System.Security.Cryptography.RandomNumberGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiRandomGenerator::AddSeedMaterial(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiRandomGenerator::AddSeedMaterial(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiRandomGenerator::NextBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiRandomGenerator::NextBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.CryptoApiRandomGenerator::Dispose()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.DigestRandomGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.DigestRandomGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.DigestRandomGenerator::AddSeedMaterial(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.DigestRandomGenerator::AddSeedMaterial(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.DigestRandomGenerator::NextBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.DigestRandomGenerator::NextBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Prng.EntropyUtilities::GenerateSeed(Org.BouncyCastle.Crypto.IEntropySource,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.EntropyUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.Drbg.ISP80090Drbg Org.BouncyCastle.Crypto.Prng.IDrbgProvider::Get(Org.BouncyCastle.Crypto.IEntropySource)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.IRandomGenerator::AddSeedMaterial(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.IRandomGenerator::AddSeedMaterial(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.IRandomGenerator::NextBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.IRandomGenerator::NextBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandom::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.IEntropySource,Org.BouncyCastle.Crypto.Prng.IDrbgProvider,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandom::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.IEntropySource,Org.BouncyCastle.Crypto.Prng.IDrbgProvider,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandom::SetSeed(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandom::SetSeed(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandom::NextBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandom::NextBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Prng.SP800SecureRandom::GenerateSeed(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandom::Reseed(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder/HashDrbgProvider::.ctor(Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder/HashDrbgProvider::.ctor(Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.Drbg.ISP80090Drbg Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder/HashDrbgProvider::Get(Org.BouncyCastle.Crypto.IEntropySource)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder/HMacDrbgProvider::.ctor(Org.BouncyCastle.Crypto.IMac,System.Byte[],System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder/HMacDrbgProvider::.ctor(Org.BouncyCastle.Crypto.IMac,System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.Drbg.ISP80090Drbg Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder/HMacDrbgProvider::Get(Org.BouncyCastle.Crypto.IEntropySource)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder/CtrDrbgProvider::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder/CtrDrbgProvider::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.Drbg.ISP80090Drbg Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder/CtrDrbgProvider::Get(Org.BouncyCastle.Crypto.IEntropySource)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder::.ctor(Org.BouncyCastle.Security.SecureRandom,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder::.ctor(Org.BouncyCastle.Security.SecureRandom,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder::.ctor(Org.BouncyCastle.Crypto.IEntropySourceProvider)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder::.ctor(Org.BouncyCastle.Crypto.IEntropySourceProvider)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder::SetPersonalizationString(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder::SetSecurityStrength(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder::SetEntropyBitsRequired(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.SP800SecureRandom Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder::BuildHash(Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.SP800SecureRandom Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder::BuildCtr(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.SP800SecureRandom Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder::BuildHMac(Org.BouncyCastle.Crypto.IMac,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.VmpcRandomGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.VmpcRandomGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.VmpcRandomGenerator::AddSeedMaterial(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.VmpcRandomGenerator::AddSeedMaterial(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.VmpcRandomGenerator::NextBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.VmpcRandomGenerator::NextBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931Rng::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Byte[],Org.BouncyCastle.Crypto.IEntropySource)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931Rng::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Byte[],Org.BouncyCastle.Crypto.IEntropySource)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.X931Rng::Generate(System.Byte[],System.Int32,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931Rng::Reseed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IEntropySource Org.BouncyCastle.Crypto.Prng.X931Rng::get_EntropySource()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931SecureRandom::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Prng.X931Rng,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931SecureRandom::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Prng.X931Rng,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931SecureRandom::SetSeed(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931SecureRandom::SetSeed(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931SecureRandom::NextBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931SecureRandom::NextBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Prng.X931SecureRandom::GenerateSeed(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::.ctor(Org.BouncyCastle.Security.SecureRandom,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::.ctor(Org.BouncyCastle.Security.SecureRandom,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::.ctor(Org.BouncyCastle.Crypto.IEntropySourceProvider)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::.ctor(Org.BouncyCastle.Crypto.IEntropySourceProvider)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::SetDateTimeVector(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.X931SecureRandom Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder::Build(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Int32,Org.BouncyCastle.Crypto.IEntropySource,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Int32,Org.BouncyCastle.Crypto.IEntropySource,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::get_BlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::Generate(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::Reseed(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.DrbgUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.Drbg.DrbgUtilities::GetMaxSecurityStrength(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.Drbg.DrbgUtilities::GetMaxSecurityStrength(Org.BouncyCastle.Crypto.IMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.DrbgUtilities::HashDF(Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.DrbgUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.DrbgUtilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.HashSP800Drbg::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.HashSP800Drbg::.ctor(Org.BouncyCastle.Crypto.IDigest,System.Int32,Org.BouncyCastle.Crypto.IEntropySource,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.HashSP800Drbg::.ctor(Org.BouncyCastle.Crypto.IDigest,System.Int32,Org.BouncyCastle.Crypto.IEntropySource,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.Drbg.HashSP800Drbg::get_BlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.Drbg.HashSP800Drbg::Generate(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.HashSP800Drbg::Reseed(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::.ctor(Org.BouncyCastle.Crypto.IMac,System.Int32,Org.BouncyCastle.Crypto.IEntropySource,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::.ctor(Org.BouncyCastle.Crypto.IMac,System.Int32,Org.BouncyCastle.Crypto.IEntropySource,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::get_BlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::Generate(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::Reseed(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.Drbg.ISP80090Drbg::get_BlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.Drbg.ISP80090Drbg::Generate(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.ISP80090Drbg::Reseed(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.AeadParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.AeadParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.AeadParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Int32,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.AeadParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Int32,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Crypto.Parameters.AeadParameters::get_Key()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.AeadParameters::get_MacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.AeadParameters::GetAssociatedText()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.AeadParameters::GetNonce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::WithParallelism(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::WithSalt(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::WithSecret(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::WithAdditional(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::WithIterations(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::WithMemoryAsKB(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::WithMemoryPowOfTwo(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::WithVersion(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::WithCharToByteConverter(Org.BouncyCastle.Crypto.ICharToByteConverter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::Clear()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::.ctor(System.Int32,System.Byte[],System.Byte[],System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Crypto.ICharToByteConverter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICharToByteConverter Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::get_CharToByteConverter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::GetSalt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::GetSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::GetAdditional()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::get_Iterations()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::get_Parallelism()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::get_Memory()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::get_Additional()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::get_Salt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::get_Secret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Blake3Parameters Org.BouncyCastle.Crypto.Parameters.Blake3Parameters::Context(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Blake3Parameters Org.BouncyCastle.Crypto.Parameters.Blake3Parameters::Key(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Blake3Parameters::GetKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Blake3Parameters::ClearKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Blake3Parameters::GetContext()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Blake3Parameters::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Blake3Parameters::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DesEdeParameters::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DesEdeParameters::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DesEdeParameters::.ctor(System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DesEdeParameters::.ctor(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DesEdeParameters::IsWeakKey(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DesEdeParameters::IsWeakKey(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DesEdeParameters::IsWeakKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DesEdeParameters::IsRealEdeKey(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DesEdeParameters::IsReal2Key(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DesEdeParameters::IsReal3Key(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DesParameters::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DesParameters::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DesParameters::.ctor(System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DesParameters::.ctor(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DesParameters::IsWeakKey(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DesParameters::IsWeakKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Parameters.DesParameters::SetOddParity(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DesParameters::SetOddParity(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DesParameters::SetOddParity(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DesParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.DHParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.DHParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Parameters.DHKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DHKeyGenerationParameters::GetStrength(Org.BouncyCastle.Crypto.Parameters.DHParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Crypto.Parameters.DHParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Crypto.Parameters.DHParameters,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Parameters.DHKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.DHKeyParameters::get_AlgorithmOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DHKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DHKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DHValidationParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DHValidationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DHValidationParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DHValidationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.DHParameters::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.DHParameters::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.DHParameters::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.DHParameters::get_J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DHParameters::get_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DHParameters::get_L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHValidationParameters Org.BouncyCastle.Crypto.Parameters.DHParameters::get_ValidationParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DHParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DHParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DHParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DHParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DHParameters,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DHParameters,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters::get_X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DHParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DHParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DHParameters,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DHParameters,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters::get_Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHValidationParameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DHValidationParameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.DHValidationParameters::GetSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DHValidationParameters::get_Counter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DHValidationParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DHValidationParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.DsaParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.DsaParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaParameters Org.BouncyCastle.Crypto.Parameters.DsaKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Crypto.Parameters.DsaParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaParameters Org.BouncyCastle.Crypto.Parameters.DsaKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DsaKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DsaKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaParameterGenerationParameters::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaParameterGenerationParameters::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaParameterGenerationParameters::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Security.SecureRandom,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaParameterGenerationParameters::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Security.SecureRandom,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DsaParameterGenerationParameters::get_L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DsaParameterGenerationParameters::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DsaParameterGenerationParameters::get_UsageIndex()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DsaParameterGenerationParameters::get_Certainty()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Crypto.Parameters.DsaParameterGenerationParameters::get_Random()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.DsaParameters::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.DsaParameters::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.DsaParameters::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters Org.BouncyCastle.Crypto.Parameters.DsaParameters::get_ValidationParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DsaParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DsaParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaPrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DsaParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaPrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DsaParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.DsaPrivateKeyParameters::get_X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DsaPrivateKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DsaPrivateKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DsaParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DsaParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters::get_Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters::.ctor(System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters::.ctor(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters::GetSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters::get_Counter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters::get_UsageIndex()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECDomainParameters/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECDomainParameters/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECDomainParameters/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.ECDomainParameters/<>c::b__23_0(Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECDomainParameters Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::FromX962Parameters(Org.BouncyCastle.Asn1.X9.X962Parameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECDomainParameters Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::FromX9ECParameters(Org.BouncyCastle.Asn1.X9.X9ECParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECDomainParameters Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::LookupName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::.ctor(Org.BouncyCastle.Asn1.X9.X9ECParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::.ctor(Org.BouncyCastle.Asn1.X9.X9ECParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::get_Curve()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::get_H()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::get_HInv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::GetSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::get_Seed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962Parameters Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::ToX962Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::ToX9ECParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::ValidatePrivateScalar(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::ValidatePublicPoint(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::ValidatePublicPoint(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECGost3410Parameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECGost3410Parameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECGost3410Parameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECDomainParameters,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECGost3410Parameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECDomainParameters,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.ECGost3410Parameters::get_PublicKeyParamSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.ECGost3410Parameters::get_DigestParamSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.ECGost3410Parameters::get_EncryptionParamSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECKeyGenerationParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECDomainParameters,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECKeyGenerationParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECDomainParameters,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECKeyGenerationParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECKeyGenerationParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECDomainParameters Org.BouncyCastle.Crypto.Parameters.ECKeyGenerationParameters::get_DomainParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.ECKeyGenerationParameters::get_PublicKeyParamSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::.ctor(System.String,System.Boolean,Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::.ctor(System.String,System.Boolean,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECDomainParameters Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::get_PublicKeyParamSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECKeyGenerationParameters Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::CreateKeyGenerationParameters(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::VerifyAlgorithmName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters::LookupOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X9.X9ECParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X9.X9ECParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962Parameters Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters::ToX962Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters::.ctor(System.String,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters::.ctor(System.String,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters::.ctor(System.String,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters::.ctor(System.String,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters::get_D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters::.ctor(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters::.ctor(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters::.ctor(System.String,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters::.ctor(System.String,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters::.ctor(System.String,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters::.ctor(System.String,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::Encode(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::GeneratePublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::Sign(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm,System.Byte[],System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::.ctor(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::.ctor(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::Encode(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::Verify(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm,System.Byte[],System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::Encode(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::GeneratePublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::Sign(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm,System.Byte[],System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::.ctor(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::.ctor(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::Encode(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::Verify(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm,System.Byte[],System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ElGamalKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.ElGamalParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ElGamalKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.ElGamalParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ElGamalParameters Org.BouncyCastle.Crypto.Parameters.ElGamalKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ElGamalKeyGenerationParameters::GetStrength(Org.BouncyCastle.Crypto.Parameters.ElGamalParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ElGamalKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Crypto.Parameters.ElGamalParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ElGamalParameters Org.BouncyCastle.Crypto.Parameters.ElGamalKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ElGamalKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ElGamalKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ElGamalParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ElGamalParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ElGamalParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ElGamalParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.ElGamalParameters::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.ElGamalParameters::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ElGamalParameters::get_L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ElGamalParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ElGamalParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ElGamalPrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.ElGamalParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ElGamalPrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.ElGamalParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.ElGamalPrivateKeyParameters::get_X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ElGamalPrivateKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ElGamalPrivateKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ElGamalPublicKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.ElGamalParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ElGamalPublicKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.ElGamalParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.ElGamalPublicKeyParameters::get_Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ElGamalPublicKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ElGamalPublicKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.FpeParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.FpeParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.FpeParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Int32,System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.FpeParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Int32,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Crypto.Parameters.FpeParameters::get_Key()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.FpeParameters::get_Radix()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.FpeParameters::get_UseInverseFunction()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.FpeParameters::GetTweak()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters Org.BouncyCastle.Crypto.Parameters.Gost3410KeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.Gost3410KeyGenerationParameters::get_PublicKeyParamSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410KeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410KeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters Org.BouncyCastle.Crypto.Parameters.Gost3410KeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.Gost3410KeyParameters::get_PublicKeyParamSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters::get_A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters::get_ValidationParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410PrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410PrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410PrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410PrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.Gost3410PrivateKeyParameters::get_X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410PublicKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410PublicKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410PublicKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410PublicKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.Gost3410PublicKeyParameters::get_Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters::.ctor(System.Int64,System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters::.ctor(System.Int64,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters::get_C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters::get_X0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters::get_CL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters::get_X0L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.HkdfParameters::.ctor(System.Byte[],System.Boolean,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.HkdfParameters::.ctor(System.Byte[],System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.HkdfParameters::.ctor(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.HkdfParameters Org.BouncyCastle.Crypto.Parameters.HkdfParameters::SkipExtractParameters(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.HkdfParameters Org.BouncyCastle.Crypto.Parameters.HkdfParameters::DefaultParameters(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.HkdfParameters::GetIkm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.HkdfParameters::get_SkipExtract()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.HkdfParameters::GetSalt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.HkdfParameters::GetInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.IesParameters::.ctor(System.Byte[],System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.IesParameters::.ctor(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.IesParameters::GetDerivationV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.IesParameters::GetEncodingV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.IesParameters::get_MacKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.IesWithCipherParameters::.ctor(System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.IesWithCipherParameters::.ctor(System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.IesWithCipherParameters::get_CipherKeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Iso18033KdfParameters::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Iso18033KdfParameters::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Iso18033KdfParameters::GetSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KdfCounterParameters::.ctor(System.Byte[],System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KdfCounterParameters::.ctor(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KdfCounterParameters::.ctor(System.Byte[],System.Byte[],System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KdfCounterParameters::.ctor(System.Byte[],System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.KdfCounterParameters::get_Ki()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.KdfCounterParameters::get_FixedInputData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.KdfCounterParameters::get_FixedInputDataCounterPrefix()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.KdfCounterParameters::get_FixedInputDataCounterSuffix()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.KdfCounterParameters::get_R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KdfDoublePipelineIterationParameters::.ctor(System.Byte[],System.Byte[],System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KdfDoublePipelineIterationParameters Org.BouncyCastle.Crypto.Parameters.KdfDoublePipelineIterationParameters::CreateWithCounter(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KdfDoublePipelineIterationParameters Org.BouncyCastle.Crypto.Parameters.KdfDoublePipelineIterationParameters::CreateWithoutCounter(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.KdfDoublePipelineIterationParameters::get_Ki()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.KdfDoublePipelineIterationParameters::get_UseCounter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.KdfDoublePipelineIterationParameters::get_R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.KdfDoublePipelineIterationParameters::get_FixedInputData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KdfDoublePipelineIterationParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KdfFeedbackParameters::.ctor(System.Byte[],System.Byte[],System.Byte[],System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KdfFeedbackParameters Org.BouncyCastle.Crypto.Parameters.KdfFeedbackParameters::CreateWithCounter(System.Byte[],System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KdfFeedbackParameters Org.BouncyCastle.Crypto.Parameters.KdfFeedbackParameters::CreateWithoutCounter(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.KdfFeedbackParameters::get_Ki()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.KdfFeedbackParameters::get_Iv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.KdfFeedbackParameters::get_UseCounter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.KdfFeedbackParameters::get_R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.KdfFeedbackParameters::get_FixedInputData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KdfFeedbackParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KdfParameters::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KdfParameters::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.KdfParameters::GetSharedSecret()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.KdfParameters::GetIV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KeyParameter::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KeyParameter::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KeyParameter::.ctor(System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KeyParameter::.ctor(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KeyParameter::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.KeyParameter::CopyTo(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.KeyParameter::GetKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.KeyParameter::get_KeyLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.KeyParameter::FixedTimeEquals(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Crypto.Parameters.KeyParameter::Reverse()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MgfParameters::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MgfParameters::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MgfParameters::.ctor(System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MgfParameters::.ctor(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MgfParameters::GetSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MgfParameters::GetSeed(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MgfParameters::get_SeedLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.MLDsaParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.MLDsaParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameters Org.BouncyCastle.Crypto.Parameters.MLDsaKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Crypto.Parameters.MLDsaParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Crypto.Parameters.MLDsaParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameters Org.BouncyCastle.Crypto.Parameters.MLDsaKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::.ctor(System.String,Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::get_IsPreHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::get_Oid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::get_PreHashOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::get_ParameterSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet::FromName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet::.ctor(System.String,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet::GetEngine(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet::get_PrivateKeyLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet::get_PublicKeyLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet::get_SeedLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::FromEncoding(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::FromSeed(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::FromSeed(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,System.Byte[],Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPublicKeyParameters Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::GetPublicKeyEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::GetSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::get_PreferredFormat()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::get_Seed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::SignInternal(System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::WithPreferredFormat(Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPublicKeyParameters Org.BouncyCastle.Crypto.Parameters.MLDsaPublicKeyParameters::FromEncoding(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaPublicKeyParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLDsaPublicKeyParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MLDsaPublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MLDsaPublicKeyParameters::GetPublicKeyHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.MLDsaPublicKeyParameters::VerifyInternal(System.Byte[],System.Int32,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.MLKemParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.MLKemParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemParameters Org.BouncyCastle.Crypto.Parameters.MLKemKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Crypto.Parameters.MLKemParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Crypto.Parameters.MLKemParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemParameters Org.BouncyCastle.Crypto.Parameters.MLKemKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemParameters::.ctor(System.String,Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.MLKemParameters::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.MLKemParameters::get_Oid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet Org.BouncyCastle.Crypto.Parameters.MLKemParameters::get_ParameterSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.MLKemParameters::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet::FromName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet::.ctor(System.String,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet::GetEngine(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet::get_K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet::get_PrivateKeyLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet::get_PublicKeyLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet::get_SeedLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters::FromEncoding(Org.BouncyCastle.Crypto.Parameters.MLKemParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters::FromSeed(Org.BouncyCastle.Crypto.Parameters.MLKemParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters::FromSeed(Org.BouncyCastle.Crypto.Parameters.MLKemParameters,System.Byte[],Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.MLKemParameters,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.MLKemParameters,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPublicKeyParameters Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters::GetPublicKeyEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters::GetSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters::get_PreferredFormat()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters::get_Seed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters::WithPreferredFormat(Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPublicKeyParameters Org.BouncyCastle.Crypto.Parameters.MLKemPublicKeyParameters::FromEncoding(Org.BouncyCastle.Crypto.Parameters.MLKemParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemPublicKeyParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.MLKemParameters,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MLKemPublicKeyParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.MLKemParameters,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MLKemPublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Tuple`2 Org.BouncyCastle.Crypto.Parameters.MLKemPublicKeyParameters::InternalEncapsulate(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters::get_StaticPrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters::get_EphemeralPrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters::get_EphemeralPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MqvPublicParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.MqvPublicParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters Org.BouncyCastle.Crypto.Parameters.MqvPublicParameters::get_StaticPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters Org.BouncyCastle.Crypto.Parameters.MqvPublicParameters::get_EphemeralPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.NaccacheSternKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.NaccacheSternKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.NaccacheSternKeyGenerationParameters::get_Certainty()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.NaccacheSternKeyGenerationParameters::get_CountSmallPrimes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.NaccacheSternKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.NaccacheSternKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.NaccacheSternKeyParameters::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.NaccacheSternKeyParameters::get_LowerSigmaBound()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.NaccacheSternKeyParameters::get_Modulus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.NaccacheSternPrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32,System.Collections.Generic.IList`1,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.NaccacheSternPrivateKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32,System.Collections.Generic.IList`1,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.NaccacheSternPrivateKeyParameters::get_PhiN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Crypto.Parameters.NaccacheSternPrivateKeyParameters::get_SmallPrimesList()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Parameters.ParametersWithContext::ApplyOptionalContext(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithContext::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithContext::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithContext::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithContext::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithContext::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithContext::CopyContextTo(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.ParametersWithContext::GetContext()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ParametersWithContext::get_ContextLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Parameters.ParametersWithContext::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Parameters.ParametersWithID::ApplyOptionalID(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithID::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithID::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithID::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithID::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithID::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithID::CopyIDTo(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.ParametersWithID::GetID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ParametersWithID::get_IDLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Parameters.ParametersWithID::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::ApplyOptionalIV(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::CopyIVTo(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::GetIV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::get_IVLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Parameters.ParametersWithIV::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom::.ctor(Org.BouncyCastle.Crypto.ICipherParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom::.ctor(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom::get_Random()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithSalt::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithSalt::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithSalt::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithSalt::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.ParametersWithSalt::GetSalt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Parameters.ParametersWithSalt::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithSBox::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.ParametersWithSBox::.ctor(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.ParametersWithSBox::GetSBox()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Parameters.ParametersWithSBox::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RC2Parameters::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RC2Parameters::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RC2Parameters::.ctor(System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RC2Parameters::.ctor(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RC2Parameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RC2Parameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RC2Parameters::.ctor(System.Byte[],System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RC2Parameters::.ctor(System.Byte[],System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.RC2Parameters::get_EffectiveKeyBits()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RC5Parameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RC5Parameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.RC5Parameters::get_Rounds()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RsaBlindingParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RsaBlindingParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters Org.BouncyCastle.Crypto.Parameters.RsaBlindingParameters::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.RsaBlindingParameters::get_BlindingFactor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RsaKeyGenerationParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RsaKeyGenerationParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.RsaKeyGenerationParameters::get_PublicExponent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.RsaKeyGenerationParameters::get_Certainty()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.RsaKeyGenerationParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.RsaKeyGenerationParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::get_Modulus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::get_Exponent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::.ctor(Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::.ctor(Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::get_PublicExponent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::get_DP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::get_DQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::get_QInv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::.ctor(System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::.ctor(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::.ctor(Org.BouncyCastle.Crypto.Parameters.SkeinParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::.ctor(Org.BouncyCastle.Crypto.Parameters.SkeinParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::Set(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::SetKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::SetPersonalisation(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::SetPersonalisation(System.DateTime,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::SetPublicKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::SetKeyIdentifier(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::SetNonce(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SkeinParameters Org.BouncyCastle.Crypto.Parameters.SkeinParameters/Builder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SkeinParameters::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SkeinParameters::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SkeinParameters::.ctor(System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Crypto.Parameters.SkeinParameters::GetParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.SkeinParameters::GetKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.SkeinParameters::GetPersonalisation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.SkeinParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.SkeinParameters::GetKeyIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.SkeinParameters::GetNonce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaKeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaKeyGenerationParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaKeyParameters::.ctor(System.Boolean,Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaKeyParameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::.ctor(System.String,Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::get_IsPreHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::get_Oid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::get_PreHashOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::get_ParameterSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.ISphincsPlusEngineProvider::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine Org.BouncyCastle.Crypto.Parameters.ISphincsPlusEngineProvider::Get()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::FromName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::.ctor(System.String,Org.BouncyCastle.Crypto.Parameters.ISphincsPlusEngineProvider)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::get_PrivateKeyLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::get_PublicKeyLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::GetEngine()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Sha2EngineProvider::.ctor(System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Sha2EngineProvider::.ctor(System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Sha2EngineProvider::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine Org.BouncyCastle.Crypto.Parameters.Sha2EngineProvider::Get()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Shake256EngineProvider::.ctor(System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Shake256EngineProvider::.ctor(System.Int32,System.UInt32,System.UInt32,System.Int32,System.Int32,System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Shake256EngineProvider::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine Org.BouncyCastle.Crypto.Parameters.Shake256EngineProvider::Get()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaPrivateKeyParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaPrivateKeyParameters::FromEncoding(Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaPrivateKeyParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SK,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.PK)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaPrivateKeyParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SK,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.PK)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.SlhDsaPrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaPublicKeyParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaPrivateKeyParameters::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.SlhDsaPrivateKeyParameters::GetPublicKeyEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.PK Org.BouncyCastle.Crypto.Parameters.SlhDsaPrivateKeyParameters::get_PK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SK Org.BouncyCastle.Crypto.Parameters.SlhDsaPrivateKeyParameters::get_SK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.SlhDsaPrivateKeyParameters::SignInternal(System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaPublicKeyParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaPublicKeyParameters::FromEncoding(Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaPublicKeyParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.PK)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SlhDsaPublicKeyParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.PK)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.SlhDsaPublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.PK Org.BouncyCastle.Crypto.Parameters.SlhDsaPublicKeyParameters::get_PK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.SlhDsaPublicKeyParameters::VerifyInternal(System.Byte[],System.Int32,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePrivateParameters::.ctor(System.Boolean,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePrivateParameters::.ctor(System.Boolean,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePrivateParameters::get_IsInitiator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePrivateParameters::get_StaticPrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePrivateParameters::get_StaticPublicPoint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePrivateParameters::get_EphemeralPrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePrivateParameters::get_EphemeralPublicPoint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePublicParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePublicParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePublicParameters::get_StaticPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePublicParameters::get_EphemeralPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.TweakableBlockCipherParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.TweakableBlockCipherParameters::.ctor(Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Crypto.Parameters.TweakableBlockCipherParameters::get_Key()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.TweakableBlockCipherParameters::get_Tweak()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::Encode(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::GeneratePublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::GenerateSecret(Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters::Encode(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448KeyGenerationParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::Encode(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::GeneratePublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::GenerateSecret(Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters::Encode(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding::Init(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding::get_PaddingName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding::AddPadding(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding::PadCount(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.ISO10126d2Padding::Init(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Paddings.ISO10126d2Padding::get_PaddingName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.ISO10126d2Padding::AddPadding(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.ISO10126d2Padding::PadCount(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.ISO10126d2Padding::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.ISO10126d2Padding::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.ISO7816d4Padding::Init(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Paddings.ISO7816d4Padding::get_PaddingName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.ISO7816d4Padding::AddPadding(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.ISO7816d4Padding::PadCount(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.ISO7816d4Padding::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.ISO7816d4Padding::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IBlockCipherMode,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IBlockCipherMode,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IBlockCipherMode)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IBlockCipherMode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.Pkcs7Padding::Init(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Paddings.Pkcs7Padding::get_PaddingName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.Pkcs7Padding::AddPadding(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.Pkcs7Padding::PadCount(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.Pkcs7Padding::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.Pkcs7Padding::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.TbcPadding::Init(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Paddings.TbcPadding::get_PaddingName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.TbcPadding::AddPadding(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.TbcPadding::PadCount(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.TbcPadding::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.TbcPadding::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.X923Padding::Init(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Paddings.X923Padding::get_PaddingName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.X923Padding::AddPadding(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.X923Padding::PadCount(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.X923Padding::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.X923Padding::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Paddings.ZeroBytePadding::get_PaddingName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.ZeroBytePadding::Init(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.ZeroBytePadding::AddPadding(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Paddings.ZeroBytePadding::PadCount(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.ZeroBytePadding::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Paddings.ZeroBytePadding::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1CipherBuilderWithKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1CipherBuilderWithKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.Operators.Asn1CipherBuilderWithKey::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Operators.Asn1CipherBuilderWithKey::GetMaxOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipher Org.BouncyCastle.Crypto.Operators.Asn1CipherBuilderWithKey::BuildCipher(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Operators.Asn1CipherBuilderWithKey::get_Key()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.BufferedCipherWrapper::.ctor(Org.BouncyCastle.Crypto.IBufferedCipher,System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.BufferedCipherWrapper::.ctor(Org.BouncyCastle.Crypto.IBufferedCipher,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Operators.BufferedCipherWrapper::GetMaxOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Operators.BufferedCipherWrapper::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Crypto.Operators.BufferedCipherWrapper::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.Asn1DigestFactory Org.BouncyCastle.Crypto.Operators.Asn1DigestFactory::Get(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.Asn1DigestFactory Org.BouncyCastle.Crypto.Operators.Asn1DigestFactory::Get(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1DigestFactory::.ctor(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1DigestFactory::.ctor(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.Operators.Asn1DigestFactory::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Operators.Asn1DigestFactory::get_DigestLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IStreamCalculator`1 Org.BouncyCastle.Crypto.Operators.Asn1DigestFactory::CreateCalculator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(System.String,Org.BouncyCastle.X509.X509Certificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(System.String,Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(System.String,Org.BouncyCastle.Crypto.ICipherParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(System.String,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.X509.X509Certificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Crypto.ICipherParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.X509.X509Certificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.X509.X509Certificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Crypto.ICipherParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Crypto.ICipherParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockResult Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper::Wrap(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyUnwrapper::.ctor(System.String,Org.BouncyCastle.Crypto.ICipherParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyUnwrapper::.ctor(System.String,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyUnwrapper::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Crypto.ICipherParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyUnwrapper::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyUnwrapper::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Crypto.ICipherParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1KeyUnwrapper::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.Operators.Asn1KeyUnwrapper::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockResult Org.BouncyCastle.Crypto.Operators.Asn1KeyUnwrapper::Unwrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.KeyWrapperUtil::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IKeyWrapper Org.BouncyCastle.Crypto.Operators.KeyWrapperUtil::WrapperForName(System.String,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IKeyUnwrapper Org.BouncyCastle.Crypto.Operators.KeyWrapperUtil::UnwrapperForName(System.String,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.KeyWrapperUtil::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.KeyWrapperUtil::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.Operators.WrapperProvider::CreateWrapper(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.RsaPkcs1Wrapper::.ctor(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.RsaPkcs1Wrapper::.ctor(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.Operators.RsaPkcs1Wrapper::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockResult Org.BouncyCastle.Crypto.Operators.RsaPkcs1Wrapper::Unwrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockResult Org.BouncyCastle.Crypto.Operators.RsaPkcs1Wrapper::Wrap(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.RsaPkcs1WrapperProvider::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.RsaPkcs1WrapperProvider::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.RsaOaepWrapper::.ctor(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.RsaOaepWrapper::.ctor(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.RsaOaepWrapper::.ctor(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.RsaOaepWrapper::.ctor(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.Operators.RsaOaepWrapper::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockResult Org.BouncyCastle.Crypto.Operators.RsaOaepWrapper::Unwrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockResult Org.BouncyCastle.Crypto.Operators.RsaOaepWrapper::Wrap(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.RsaOaepWrapperProvider::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.RsaOaepWrapperProvider::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.RsaOaepWrapperProvider::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.RsaOaepWrapperProvider::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.X509Utilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Operators.X509Utilities::GetSigOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Crypto.Operators.X509Utilities::GetSigAlgID(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Crypto.Operators.X509Utilities::GetSigNames()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.X509Utilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.X509Utilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::.ctor(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::.ctor(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::.ctor(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::.ctor(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IStreamCalculator`1 Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::CreateCalculator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory::get_SignatureAlgNames()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactory::.ctor(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactory::.ctor(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactory::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactory::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactory::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IStreamCalculator`1 Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactory::CreateCalculator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactoryProvider::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactoryProvider::.ctor(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IVerifierFactory Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactoryProvider::CreateVerifierFactory(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactoryProvider::get_SignatureAlgNames()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultDigestCalculator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultDigestCalculator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Crypto.Operators.DefaultDigestCalculator::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockResult Org.BouncyCastle.Crypto.Operators.DefaultDigestCalculator::GetResult()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultDigestResult::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultDigestResult::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Operators.DefaultDigestResult::Collect()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Operators.DefaultDigestResult::Collect(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Operators.DefaultDigestResult::GetMaxResultLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultMacCalculator::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultMacCalculator::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Crypto.Operators.DefaultMacCalculator::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockResult Org.BouncyCastle.Crypto.Operators.DefaultMacCalculator::GetResult()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultMacResult::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultMacResult::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Operators.DefaultMacResult::Collect()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Operators.DefaultMacResult::Collect(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Operators.DefaultMacResult::GetMaxResultLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultSignatureCalculator::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultSignatureCalculator::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Crypto.Operators.DefaultSignatureCalculator::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockResult Org.BouncyCastle.Crypto.Operators.DefaultSignatureCalculator::GetResult()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultSignatureResult::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultSignatureResult::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Operators.DefaultSignatureResult::Collect()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Operators.DefaultSignatureResult::Collect(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Operators.DefaultSignatureResult::GetMaxResultLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultVerifierCalculator::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultVerifierCalculator::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Crypto.Operators.DefaultVerifierCalculator::get_Stream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IVerifier Org.BouncyCastle.Crypto.Operators.DefaultVerifierCalculator::GetResult()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultVerifierResult::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.DefaultVerifierResult::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Operators.DefaultVerifierResult::IsVerified(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Operators.DefaultVerifierResult::IsVerified(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.GenericKey::.ctor(System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.GenericKey::.ctor(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.GenericKey::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.GenericKey::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.GenericKey::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.GenericKey::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Crypto.Operators.GenericKey::get_AlgorithmIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.Operators.GenericKey::get_Representation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.AsconAead128::GetKeyBytesSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.AsconAead128::GetIVBytesSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.AsconAead128::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::ProcessAadByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::ProcessAadBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.AsconAead128::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.AsconAead128::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.AsconAead128::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.AsconAead128::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.AsconAead128::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.AsconAead128::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CbcBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CbcBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.CbcBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CbcBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.CbcBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Modes.CbcBlockCipher::get_IsPartialBlockOkay()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CbcBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CbcBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CbcBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::ProcessAadByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::ProcessAadBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::ProcessPacket(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::ProcessPacket(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CfbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CfbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.CfbBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CfbBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.CfbBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Modes.CfbBlockCipher::get_IsPartialBlockOkay()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CfbBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CfbBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CfbBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::ProcessAadByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::ProcessAadBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CtsBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CtsBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CtsBlockCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IBlockCipherMode)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.CtsBlockCipher::.ctor(Org.BouncyCastle.Crypto.Modes.IBlockCipherMode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CtsBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CtsBlockCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CtsBlockCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CtsBlockCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CtsBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CtsBlockCipher::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::ProcessAadByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::ProcessAadBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.IBlockCipherMode Org.BouncyCastle.Crypto.Modes.EcbBlockCipher::GetBlockCipherMode(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.EcbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.EcbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Modes.EcbBlockCipher::get_IsPartialBlockOkay()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.EcbBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.EcbBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.EcbBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.EcbBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.EcbBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.EcbBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.Gcm.IGcmMultiplier Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::CreateGcmMultiplier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.Modes.Gcm.IGcmMultiplier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.Modes.Gcm.IGcmMultiplier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::ProcessAadByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::ProcessAadBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher/GcmSivCache::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher/GcmSivCache::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher/GcmSivHasher::.ctor(Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher/GcmSivHasher::.ctor(Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher/GcmSivHasher::getBytesProcessed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher/GcmSivHasher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher/GcmSivHasher::UpdateHash(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher/GcmSivHasher::UpdateHash(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher/GcmSivHasher::completeHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.Modes.Gcm.IGcmMultiplier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.Modes.Gcm.IGcmMultiplier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::ProcessAadByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::ProcessAadBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GOfbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GOfbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.GOfbBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GOfbBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.GOfbBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Modes.GOfbBlockCipher::get_IsPartialBlockOkay()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GOfbBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GOfbBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GOfbBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.IAeadBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.IAeadBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.IAeadCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.IAeadCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.IAeadCipher::ProcessAadByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.IAeadCipher::ProcessAadBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.IAeadCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.IAeadCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.IAeadCipher::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.IAeadCipher::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.IAeadCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.IAeadCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.IAeadCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.IBlockCipherMode::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Modes.IBlockCipherMode::get_IsPartialBlockOkay()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.IBlockCipherMode::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessAadByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessAadBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessPacket(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::get_IsPartialBlockOkay()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::ReturnByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::ProcessAadByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::ProcessAadBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OfbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OfbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.OfbBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OfbBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.OfbBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Modes.OfbBlockCipher::get_IsPartialBlockOkay()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OfbBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OfbBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OfbBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OpenPgpCfbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OpenPgpCfbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.OpenPgpCfbBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.OpenPgpCfbBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Modes.OpenPgpCfbBlockCipher::get_IsPartialBlockOkay()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OpenPgpCfbBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OpenPgpCfbBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OpenPgpCfbBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OpenPgpCfbBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.SicBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.SicBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Modes.SicBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.SicBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Modes.SicBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Modes.SicBlockCipher::get_IsPartialBlockOkay()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.SicBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.SicBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.SicBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.BasicGcmExponentiator::Init(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.BasicGcmExponentiator::ExponentiateX(System.Int64,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.BasicGcmExponentiator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.BasicGcmExponentiator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Modes.Gcm.BasicGcmMultiplier::get_IsHardwareAccelerated()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.BasicGcmMultiplier::Init(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.BasicGcmMultiplier::MultiplyH(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.BasicGcmMultiplier::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.BasicGcmMultiplier::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::One(Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::AsBytes(System.UInt64,System.UInt64,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::AsBytes(Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::AsFieldElement(System.Byte[],Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::DivideP(Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&,Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::Multiply(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::Multiply(Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&,Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::MultiplyP7(Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::MultiplyP8(Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::MultiplyP8(Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&,Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::MultiplyP16(Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::Square(Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::Xor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::Xor(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::Xor(System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::Xor(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::Xor(Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&,Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::Xor(Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&,Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&,Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities/FieldElement&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.IGcmExponentiator::Init(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.IGcmExponentiator::ExponentiateX(System.Int64,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.IGcmMultiplier::Init(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.IGcmMultiplier::MultiplyH(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables1kGcmExponentiator::Init(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables1kGcmExponentiator::ExponentiateX(System.Int64,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables1kGcmExponentiator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables1kGcmExponentiator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables4kGcmMultiplier::Init(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables4kGcmMultiplier::MultiplyH(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables4kGcmMultiplier::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables4kGcmMultiplier::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables64kGcmMultiplier::Init(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables64kGcmMultiplier::MultiplyH(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables64kGcmMultiplier::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables64kGcmMultiplier::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables8kGcmMultiplier::Init(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables8kGcmMultiplier::MultiplyH(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables8kGcmMultiplier::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables8kGcmMultiplier::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.MacCfbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.MacCfbBlockCipher::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.MacCfbBlockCipher::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.MacCfbBlockCipher::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Crypto.Macs.MacCfbBlockCipher::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Macs.MacCfbBlockCipher::get_IsPartialBlockOkay()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.MacCfbBlockCipher::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.MacCfbBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.MacCfbBlockCipher::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.MacCfbBlockCipher::GetMacBlock(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Int32,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Int32,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CMac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.CMac::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CMac::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.CMac::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CMac::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CMac::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.CMac::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.CMac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.Dstu7564Mac::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7564Mac::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7564Mac::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7564Mac::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.Dstu7564Mac::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7564Mac::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7564Mac::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.Dstu7564Mac::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7564Mac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7624Mac::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7624Mac::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7624Mac::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.Dstu7624Mac::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.Dstu7624Mac::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7624Mac::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7624Mac::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.Dstu7624Mac::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7624Mac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.GMac::.ctor(Org.BouncyCastle.Crypto.Modes.GcmBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.GMac::.ctor(Org.BouncyCastle.Crypto.Modes.GcmBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.GMac::.ctor(Org.BouncyCastle.Crypto.Modes.GcmBlockCipher,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.GMac::.ctor(Org.BouncyCastle.Crypto.Modes.GcmBlockCipher,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.GMac::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.GMac::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.GMac::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.GMac::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.GMac::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.GMac::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.GMac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Gost28147Mac::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Gost28147Mac::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Gost28147Mac::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.Gost28147Mac::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.Gost28147Mac::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Gost28147Mac::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Gost28147Mac::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.Gost28147Mac::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Gost28147Mac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.HMac::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.HMac::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.HMac::.ctor(Org.BouncyCastle.Crypto.IDigest,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.HMac::.ctor(Org.BouncyCastle.Crypto.IDigest,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.HMac::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.Macs.HMac::GetUnderlyingDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.HMac::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.HMac::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.HMac::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.HMac::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.HMac::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.HMac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.KMac::.ctor(System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.KMac::.ctor(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.KMac::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.KMac::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.KMac::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.KMac::OutputFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.KMac::Output(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.KMac::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.KMac::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.KMac::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.KMac::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.KMac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.KMac::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.KMac::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Poly1305::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Poly1305::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Poly1305::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Poly1305::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Poly1305::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.Poly1305::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.Poly1305::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Poly1305::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Poly1305::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.Poly1305::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Poly1305::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SipHash::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SipHash::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SipHash::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SipHash::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.SipHash::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.SipHash::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SipHash::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SipHash::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SipHash::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.Macs.SipHash::DoFinal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.SipHash::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SipHash::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SkeinMac::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SkeinMac::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SkeinMac::.ctor(Org.BouncyCastle.Crypto.Macs.SkeinMac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SkeinMac::.ctor(Org.BouncyCastle.Crypto.Macs.SkeinMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.SkeinMac::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SkeinMac::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.SkeinMac::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SkeinMac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SkeinMac::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SkeinMac::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.SkeinMac::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.VmpcMac::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Macs.VmpcMac::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.VmpcMac::GetMacSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.VmpcMac::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.VmpcMac::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.VmpcMac::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.VmpcMac::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.VmpcMac::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.VmpcMac::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKemDecapsulator::.ctor(Org.BouncyCastle.Crypto.Parameters.MLKemParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKemDecapsulator::.ctor(Org.BouncyCastle.Crypto.Parameters.MLKemParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKemDecapsulator::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKemDecapsulator::get_EncapsulationLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKemDecapsulator::get_SecretLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKemDecapsulator::Decapsulate(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKemEncapsulator::.ctor(Org.BouncyCastle.Crypto.Parameters.MLKemParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKemEncapsulator::.ctor(Org.BouncyCastle.Crypto.Parameters.MLKemParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKemEncapsulator::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKemEncapsulator::get_EncapsulationLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKemEncapsulator::get_SecretLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKemEncapsulator::Encapsulate(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Cbd::Eta(Org.BouncyCastle.Crypto.Kems.MLKem.Poly,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::.ctor(Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::.ctor(Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::GenerateKeyPair(System.Byte[],System.Byte[]&,System.Byte[]&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::Encrypt(System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::Decrypt(System.Byte[],System.Byte[],System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::PackPublicKey(Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::UnpackPublicKey(Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_Symmetric()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_PolyVecBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_PolyCompressedBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_PolyVecCompressedBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_Eta1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_IndCpaPublicKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_IndCpaSecretKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_IndCpaBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_PublicKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_SecretKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_CipherTextBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_CryptoBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_CryptoSecretKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_CryptoPublicKeyBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::get_CryptoCipherTextBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::.ctor(System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::.ctor(System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::GenerateKemKeyPair(System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::GenerateKemKeyPairInternal(System.Byte[],System.Byte[],System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&,System.Byte[]&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::KemDecrypt(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::KemEncrypt(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::KemEncryptInternal(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::RandomBytes(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Ntt::NTT(System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Ntt::InvNTT(System.Int16[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Ntt::BaseMult(System.Int16[],System.Int32,System.Int16,System.Int16,System.Int16,System.Int16,System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Ntt::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::.ctor(Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::.ctor(Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Crypto.Kems.MLKem.Poly::get_Coeffs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::GetNoiseEta1(System.Byte[],System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::GetNoiseEta2(System.Byte[],System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::PolyNtt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::PolyInverseNttToMont()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::BaseMultMontgomery(Org.BouncyCastle.Crypto.Kems.MLKem.Poly,Org.BouncyCastle.Crypto.Kems.MLKem.Poly,Org.BouncyCastle.Crypto.Kems.MLKem.Poly)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::ToMont()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::Add(Org.BouncyCastle.Crypto.Kems.MLKem.Poly)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::Subtract(Org.BouncyCastle.Crypto.Kems.MLKem.Poly)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::PolyReduce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::CompressPoly(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::DecompressPoly(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::FromBytes(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::ToBytes(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::ToMsg(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::FromMsg(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Poly::CondSubQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec::.ctor(Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec::.ctor(Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec::Ntt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec::InverseNttToMont()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec::PointwiseAccountMontgomery(Org.BouncyCastle.Crypto.Kems.MLKem.Poly,Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec,Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec,Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec::Add(Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec::Reduce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec::CompressPolyVec(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec::DecompressPolyVec(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec::FromBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec::ToBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Crypto.Kems.MLKem.Reduce::MontgomeryReduce(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Crypto.Kems.MLKem.Reduce::BarrettReduce(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Crypto.Kems.MLKem.Reduce::CondSubQ(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric/ShakeSymmetric::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric/ShakeSymmetric::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric/ShakeSymmetric::Hash_h(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric/ShakeSymmetric::Hash_g(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric/ShakeSymmetric::Kdf(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric/ShakeSymmetric::Prf(System.Byte[],System.Byte,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric/ShakeSymmetric::XofAbsorb(System.Byte[],System.Byte,System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric/ShakeSymmetric::XofSqueezeBlocks(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric::Hash_h(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric::Hash_g(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric::Kdf(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric::Prf(System.Byte[],System.Byte,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric::XofAbsorb(System.Byte[],System.Byte,System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric::XofSqueezeBlocks(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric::DoDigest(Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.CipherStream::.ctor(System.IO.Stream,Org.BouncyCastle.Crypto.IBufferedCipher,Org.BouncyCastle.Crypto.IBufferedCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.CipherStream::.ctor(System.IO.Stream,Org.BouncyCastle.Crypto.IBufferedCipher,Org.BouncyCastle.Crypto.IBufferedCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBufferedCipher Org.BouncyCastle.Crypto.IO.CipherStream::get_ReadCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBufferedCipher Org.BouncyCastle.Crypto.IO.CipherStream::get_WriteCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.CipherStream::get_CanRead()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.CipherStream::get_CanSeek()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.CipherStream::get_CanWrite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Crypto.IO.CipherStream::CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.CipherStream::Flush()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.CipherStream::get_Length()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.CipherStream::get_Position()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.CipherStream::set_Position(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IO.CipherStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IO.CipherStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.CipherStream::Seek(System.Int64,System.IO.SeekOrigin)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.CipherStream::SetLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.CipherStream::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Crypto.IO.CipherStream::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.CipherStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.DigestSink::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.DigestSink::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.IO.DigestSink::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.DigestSink::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Crypto.IO.DigestSink::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.DigestSink::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.DigestStream::.ctor(System.IO.Stream,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.DigestStream::.ctor(System.IO.Stream,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.IO.DigestStream::get_ReadDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.IO.DigestStream::get_WriteDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.DigestStream::get_CanRead()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.DigestStream::get_CanSeek()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.DigestStream::get_CanWrite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Crypto.IO.DigestStream::CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.DigestStream::Flush()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.DigestStream::get_Length()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.DigestStream::get_Position()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.DigestStream::set_Position(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IO.DigestStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IO.DigestStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.DigestStream::Seek(System.Int64,System.IO.SeekOrigin)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.DigestStream::SetLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.DigestStream::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Crypto.IO.DigestStream::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.DigestStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.MacSink::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.MacSink::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMac Org.BouncyCastle.Crypto.IO.MacSink::get_Mac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.MacSink::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Crypto.IO.MacSink::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.MacSink::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.MacStream::.ctor(System.IO.Stream,Org.BouncyCastle.Crypto.IMac,Org.BouncyCastle.Crypto.IMac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.MacStream::.ctor(System.IO.Stream,Org.BouncyCastle.Crypto.IMac,Org.BouncyCastle.Crypto.IMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMac Org.BouncyCastle.Crypto.IO.MacStream::get_ReadMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMac Org.BouncyCastle.Crypto.IO.MacStream::get_WriteMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.MacStream::get_CanRead()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.MacStream::get_CanSeek()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.MacStream::get_CanWrite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Crypto.IO.MacStream::CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.MacStream::Flush()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.MacStream::get_Length()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.MacStream::get_Position()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.MacStream::set_Position(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IO.MacStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IO.MacStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.MacStream::Seek(System.Int64,System.IO.SeekOrigin)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.MacStream::SetLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.MacStream::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Crypto.IO.MacStream::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.MacStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.SignerSink::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.SignerSink::.ctor(Org.BouncyCastle.Crypto.ISigner)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISigner Org.BouncyCastle.Crypto.IO.SignerSink::get_Signer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.SignerSink::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Crypto.IO.SignerSink::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.SignerSink::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.SignerStream::.ctor(System.IO.Stream,Org.BouncyCastle.Crypto.ISigner,Org.BouncyCastle.Crypto.ISigner)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.SignerStream::.ctor(System.IO.Stream,Org.BouncyCastle.Crypto.ISigner,Org.BouncyCastle.Crypto.ISigner)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISigner Org.BouncyCastle.Crypto.IO.SignerStream::get_ReadSigner()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISigner Org.BouncyCastle.Crypto.IO.SignerStream::get_WriteSigner()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.SignerStream::get_CanRead()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.SignerStream::get_CanSeek()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.SignerStream::get_CanWrite()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Crypto.IO.SignerStream::CopyToAsync(System.IO.Stream,System.Int32,System.Threading.CancellationToken)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.SignerStream::Flush()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.SignerStream::get_Length()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.SignerStream::get_Position()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.SignerStream::set_Position(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IO.SignerStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.IO.SignerStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.SignerStream::Seek(System.Int64,System.IO.SeekOrigin)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.SignerStream::SetLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.SignerStream::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Crypto.IO.SignerStream::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.SignerStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/FillBlock::ApplyBlake()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/FillBlock::Fill(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/FillBlock::Fill(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/FillBlock::FillBlockWithXor(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/FillBlock::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/FillBlock::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block::FromBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block::ToBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block::CopyBlock(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block::Xor(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block::XorWith(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block::XorWith(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block::Clear()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Position::.ctor(System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Position::.ctor(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/<>c__DisplayClass24_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/<>c__DisplayClass24_0::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/<>c__DisplayClass24_0::b__0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::.ctor(System.Threading.Tasks.TaskFactory)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::.ctor(System.Threading.Tasks.TaskFactory)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::Init(Org.BouncyCastle.Crypto.Parameters.Argon2Parameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::GenerateBytes(System.Char[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::GenerateBytes(System.Char[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::GenerateBytes(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::GenerateBytes(System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.BaseKdfBytesGenerator::.ctor(System.Int32,Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.BaseKdfBytesGenerator::Init(Org.BouncyCastle.Crypto.IDerivationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.Generators.BaseKdfBytesGenerator::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.BaseKdfBytesGenerator::GenerateBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.BCrypt::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.BCrypt::PasswordToByteArray(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.BCrypt::Generate(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.BCrypt::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DesEdeKeyGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DesEdeKeyGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DesEdeKeyGenerator::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DesEdeKeyGenerator::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DesKeyGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DesKeyGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DesKeyGenerator::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DesKeyGenerator::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DHBasicKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.DHBasicKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DHBasicKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DHBasicKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Generators.DHKeyGeneratorHelper::CalculatePrivate(Org.BouncyCastle.Crypto.Parameters.DHParameters,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Generators.DHKeyGeneratorHelper::CalculatePublic(Org.BouncyCastle.Crypto.Parameters.DHParameters,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DHKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.DHKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DHKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DHKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DHParametersGenerator::Init(System.Int32,System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Generators.DHParametersGenerator::GenerateParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DHParametersGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DHParametersGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Generators.DHParametersHelper::GenerateSafePrimes(System.Int32,System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Generators.DHParametersHelper::SelectGenerator(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DHParametersHelper::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DHParametersHelper::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DHParametersHelper::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DsaKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.DsaKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DsaKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DsaKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DsaKeyPairGenerator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::Init(System.Int32,System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::Init(Org.BouncyCastle.Crypto.Parameters.DsaParameterGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaParameters Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::GenerateParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.ECKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.ECKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.ECKeyPairGenerator::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.ECKeyPairGenerator::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.ECKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.ECKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters Org.BouncyCastle.Crypto.Generators.ECKeyPairGenerator::GetCorrespondingPublicKey(Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Ed25519KeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.Ed25519KeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Ed25519KeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Ed25519KeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Ed448KeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.Ed448KeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Ed448KeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Ed448KeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.ElGamalKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.ElGamalKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.ElGamalKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.ElGamalKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.ElGamalParametersGenerator::Init(System.Int32,System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ElGamalParameters Org.BouncyCastle.Crypto.Generators.ElGamalParametersGenerator::GenerateParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.ElGamalParametersGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.ElGamalParametersGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Gost3410KeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.Gost3410KeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Gost3410KeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Gost3410KeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Gost3410ParametersGenerator::Init(System.Int32,System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters Org.BouncyCastle.Crypto.Generators.Gost3410ParametersGenerator::GenerateParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Gost3410ParametersGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Gost3410ParametersGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.HkdfBytesGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.HkdfBytesGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.HkdfBytesGenerator::Init(Org.BouncyCastle.Crypto.IDerivationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.Generators.HkdfBytesGenerator::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.HkdfBytesGenerator::GenerateBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Kdf1BytesGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Kdf1BytesGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Kdf2BytesGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Kdf2BytesGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.KdfCounterBytesGenerator::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.KdfCounterBytesGenerator::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.KdfCounterBytesGenerator::Init(Org.BouncyCastle.Crypto.IDerivationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMac Org.BouncyCastle.Crypto.Generators.KdfCounterBytesGenerator::get_Mac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.Generators.KdfCounterBytesGenerator::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.KdfCounterBytesGenerator::GenerateBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.KdfDoublePipelineIterationBytesGenerator::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.KdfDoublePipelineIterationBytesGenerator::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.KdfDoublePipelineIterationBytesGenerator::Init(Org.BouncyCastle.Crypto.IDerivationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMac Org.BouncyCastle.Crypto.Generators.KdfDoublePipelineIterationBytesGenerator::get_Mac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.Generators.KdfDoublePipelineIterationBytesGenerator::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.KdfDoublePipelineIterationBytesGenerator::GenerateBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.KdfFeedbackBytesGenerator::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.KdfFeedbackBytesGenerator::.ctor(Org.BouncyCastle.Crypto.IMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.KdfFeedbackBytesGenerator::Init(Org.BouncyCastle.Crypto.IDerivationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMac Org.BouncyCastle.Crypto.Generators.KdfFeedbackBytesGenerator::get_Mac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.Generators.KdfFeedbackBytesGenerator::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.KdfFeedbackBytesGenerator::GenerateBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Mgf1BytesGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Mgf1BytesGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Mgf1BytesGenerator::Init(Org.BouncyCastle.Crypto.IDerivationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.Generators.Mgf1BytesGenerator::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.Mgf1BytesGenerator::GenerateBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.MLDsaKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.MLDsaKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.MLDsaKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.MLDsaKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.MLKemKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.MLKemKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.MLKemKeyPairGenerator::InternalGenerateKeyPair(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.MLKemKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.MLKemKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.NaccacheSternKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.NaccacheSternKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.NaccacheSternKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.NaccacheSternKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.NaccacheSternKeyPairGenerator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.OpenBsdBCrypt::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.OpenBsdBCrypt::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.OpenBsdBCrypt::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Generators.OpenBsdBCrypt::Generate(System.Char[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Generators.OpenBsdBCrypt::Generate(System.String,System.Char[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Generators.OpenBsdBCrypt::CheckPassword(System.String,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.OpenSslPbeParametersGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.OpenSslPbeParametersGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.OpenSslPbeParametersGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.OpenSslPbeParametersGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.OpenSslPbeParametersGenerator::Init(System.Byte[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.OpenSslPbeParametersGenerator::Init(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Generators.OpenSslPbeParametersGenerator::GenerateDerivedParameters(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Generators.OpenSslPbeParametersGenerator::GenerateDerivedParameters(System.String,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Generators.OpenSslPbeParametersGenerator::GenerateDerivedMacParameters(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::GenerateDerivedParameters(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::GenerateDerivedParameters(System.String,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::GenerateDerivedMacParameters(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Pkcs5S1ParametersGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Pkcs5S1ParametersGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Generators.Pkcs5S1ParametersGenerator::GenerateDerivedParameters(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Generators.Pkcs5S1ParametersGenerator::GenerateDerivedParameters(System.String,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Generators.Pkcs5S1ParametersGenerator::GenerateDerivedMacParameters(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator::GenerateDerivedParameters(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator::GenerateDerivedParameters(System.String,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator::GenerateDerivedMacParameters(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Poly1305KeyGenerator::Clamp(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Poly1305KeyGenerator::CheckKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Poly1305KeyGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Poly1305KeyGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.RsaBlindingFactorGenerator::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Generators.RsaBlindingFactorGenerator::GenerateBlindingFactor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.RsaBlindingFactorGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.RsaBlindingFactorGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.RsaKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.RsaKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.RsaKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.RsaKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.RsaKeyPairGenerator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.SCrypt::Generate(System.Byte[],System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.SCrypt::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.SCrypt::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.SlhDsaKeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.SlhDsaKeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.SlhDsaKeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.SlhDsaKeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.X25519KeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.X25519KeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.X25519KeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.X25519KeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.X448KeyPairGenerator::Init(Org.BouncyCastle.Crypto.KeyGenerationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.X448KeyPairGenerator::GenerateKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.X448KeyPairGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.X448KeyPairGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.FpeEngine::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Fpe.FpeEngine::ProcessBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.FpeEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.FpeFf1Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.FpeFf1Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.FpeFf1Engine::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.FpeFf1Engine::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.FpeFf1Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.FpeFf3_1Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.FpeFf3_1Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.FpeFf3_1Engine::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.FpeFf3_1Engine::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.FpeFf3_1Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Fpe.SP80038G::DecryptFF1(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Fpe.SP80038G::DecryptFF1w(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.UInt16[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Fpe.SP80038G::DecryptFF3(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Fpe.SP80038G::DecryptFF3_1(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Fpe.SP80038G::DecryptFF3_1w(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.UInt16[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Fpe.SP80038G::EncryptFF1(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Fpe.SP80038G::EncryptFF1w(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.UInt16[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Fpe.SP80038G::EncryptFF3(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Fpe.SP80038G::EncryptFF3w(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.UInt16[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Fpe.SP80038G::EncryptFF3_1w(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.UInt16[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Fpe.SP80038G::EncryptFF3_1(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.SP80038G::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.AesEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AesEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AesEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesLightEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesLightEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesLightEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.AesLightEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AesLightEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AesLightEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesLightEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesWrapEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesWrapEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesWrapEngine::.ctor(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesWrapEngine::.ctor(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesWrapPadEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesWrapPadEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.AriaEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AriaEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AriaEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaWrapEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaWrapEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaWrapEngine::.ctor(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaWrapEngine::.ctor(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaWrapPadEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaWrapPadEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::.ctor(Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::.ctor(Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AsconEngine::GetKeyBytesSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AsconEngine::GetIVBytesSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.AsconEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::ProcessAadByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::ProcessAadBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AsconEngine::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AsconEngine::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AsconEngine::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.AsconEngine::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AsconEngine::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AsconEngine::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.BlowfishEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.BlowfishEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.BlowfishEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.BlowfishEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.BlowfishEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.BlowfishEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.BlowfishEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.CamelliaEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.CamelliaEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.CamelliaEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaWrapEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaWrapEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Cast5Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Cast5Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Cast5Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.Cast5Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Cast5Engine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Cast5Engine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Cast5Engine::SetKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Cast5Engine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Cast5Engine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.Cast5Engine::F1(System.UInt32,System.UInt32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.Cast5Engine::F2(System.UInt32,System.UInt32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.Cast5Engine::F3(System.UInt32,System.UInt32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Cast5Engine::CAST_Encipher(System.UInt32,System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Cast5Engine::CAST_Decipher(System.UInt32,System.UInt32,System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Cast5Engine::Bits32ToInts(System.UInt32,System.Int32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.Cast5Engine::IntsTo32bits(System.Int32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Cast5Engine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Cast6Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Cast6Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.Cast6Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Cast6Engine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Cast6Engine::SetKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Cast6Engine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Cast6Engine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaCha7539Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaCha7539Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.ChaCha7539Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaCha7539Engine::DoFinal(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaCha7539Engine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaCha7539Engine::ProcessBlocks2(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaCha7539Engine::ImplProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaChaEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaChaEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaChaEngine::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaChaEngine::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.ChaChaEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaChaEngine::ChachaCore(System.Int32,System.UInt32[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.DesEdeEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.DesEdeEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.DesEdeEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.DesEdeEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.DesEdeEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.DesEdeEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.DesEdeWrapEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.DesEdeWrapEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.DesEdeWrapEngine::Wrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.DesEdeWrapEngine::Unwrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.DesEdeWrapEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.DesEdeWrapEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.DesEdeWrapEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Crypto.Engines.DesEngine::GetWorkingKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.DesEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.DesEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.DesEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.DesEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.DesEngine::DesFunc(System.Int32[],System.UInt32&,System.UInt32&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.DesEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.DesEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.DesEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624WrapEngine::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624WrapEngine::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.Dstu7624WrapEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624WrapEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.Dstu7624WrapEngine::Wrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.Dstu7624WrapEngine::Unwrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.ElGamalEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ElGamalEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.ElGamalEngine::GetInputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.ElGamalEngine::GetOutputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.ElGamalEngine::ProcessBlock(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ElGamalEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ElGamalEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Gost28147Engine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Gost28147Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Gost28147Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Gost28147Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.Gost28147Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Gost28147Engine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Gost28147Engine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.Gost28147Engine::GetSBox(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.Gost28147Engine::GetSBoxName(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::ProcessAadByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::ProcessAadBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::ReturnByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.HC128Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.HC128Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.HC128Engine::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.HC128Engine::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.HC128Engine::ReturnByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.HC128Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.HC128Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.HC256Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.HC256Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.HC256Engine::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.HC256Engine::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.HC256Engine::ReturnByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.HC256Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.HC256Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IdeaEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IdeaEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IdeaEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.IdeaEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.IdeaEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.IdeaEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IdeaEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IesEngine::.ctor(Org.BouncyCastle.Crypto.IBasicAgreement,Org.BouncyCastle.Crypto.IDerivationFunction,Org.BouncyCastle.Crypto.IMac)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IesEngine::.ctor(Org.BouncyCastle.Crypto.IBasicAgreement,Org.BouncyCastle.Crypto.IDerivationFunction,Org.BouncyCastle.Crypto.IMac)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IesEngine::.ctor(Org.BouncyCastle.Crypto.IBasicAgreement,Org.BouncyCastle.Crypto.IDerivationFunction,Org.BouncyCastle.Crypto.IMac,Org.BouncyCastle.Crypto.BufferedBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IesEngine::.ctor(Org.BouncyCastle.Crypto.IBasicAgreement,Org.BouncyCastle.Crypto.IDerivationFunction,Org.BouncyCastle.Crypto.IMac,Org.BouncyCastle.Crypto.BufferedBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IesEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.IesEngine::ProcessBlock(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IsaacEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.IsaacEngine::ReturnByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IsaacEngine::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.IsaacEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IsaacEngine::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IsaacEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IsaacEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IsaacEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.NaccacheSternEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.NaccacheSternEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.NaccacheSternEngine::GetInputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.NaccacheSternEngine::GetOutputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.NaccacheSternEngine::ProcessBlock(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.NaccacheSternEngine::Encrypt(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.NaccacheSternEngine::AddCryptedBlocks(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.NaccacheSternEngine::ProcessData(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.NaccacheSternEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.NaccacheSternEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.NoekeonEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.NoekeonEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.NoekeonEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.NoekeonEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.NoekeonEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.NoekeonEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.NoekeonEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC2Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.RC2Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC2Engine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC2Engine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC2Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC2Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC2Engine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC2WrapEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.RC2WrapEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.RC2WrapEngine::Wrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.RC2WrapEngine::Unwrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC2WrapEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC2WrapEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC2WrapEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC4Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.RC4Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.RC4Engine::ReturnByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC4Engine::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC4Engine::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC4Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC4Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC4Engine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC532Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC532Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.RC532Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC532Engine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC532Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC532Engine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC532Engine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC564Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC564Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.RC564Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC564Engine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC564Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC564Engine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC564Engine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC6Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC6Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.RC6Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC6Engine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC6Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC6Engine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC6Engine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Rfc3211WrapEngine::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Rfc3211WrapEngine::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Rfc3211WrapEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.Rfc3211WrapEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.Rfc3211WrapEngine::Wrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.Rfc3211WrapEngine::Unwrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Rfc3394WrapEngine::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Rfc3394WrapEngine::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Rfc3394WrapEngine::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Rfc3394WrapEngine::.ctor(Org.BouncyCastle.Crypto.IBlockCipher,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.Rfc3394WrapEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Rfc3394WrapEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.Rfc3394WrapEngine::Wrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.Rfc3394WrapEngine::Unwrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Rfc3394WrapEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Rfc5649WrapEngine::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Rfc5649WrapEngine::.ctor(Org.BouncyCastle.Crypto.IBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.Rfc5649WrapEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Rfc5649WrapEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.Rfc5649WrapEngine::Wrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.Rfc5649WrapEngine::Unwrap(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Rfc5649WrapEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.RijndaelEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RijndaelEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RijndaelEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaBlindedEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaBlindedEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaBlindedEngine::.ctor(Org.BouncyCastle.Crypto.IRsa)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaBlindedEngine::.ctor(Org.BouncyCastle.Crypto.IRsa)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.RsaBlindedEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaBlindedEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RsaBlindedEngine::GetInputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RsaBlindedEngine::GetOutputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.RsaBlindedEngine::ProcessBlock(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaBlindingEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaBlindingEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaBlindingEngine::.ctor(Org.BouncyCastle.Crypto.IRsa)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaBlindingEngine::.ctor(Org.BouncyCastle.Crypto.IRsa)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.RsaBlindingEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaBlindingEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RsaBlindingEngine::GetInputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RsaBlindingEngine::GetOutputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.RsaBlindingEngine::ProcessBlock(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaCoreEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RsaCoreEngine::GetInputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RsaCoreEngine::GetOutputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Engines.RsaCoreEngine::ConvertInput(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.RsaCoreEngine::ConvertOutput(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Engines.RsaCoreEngine::ProcessBlock(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaCoreEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaCoreEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaEngine::.ctor(Org.BouncyCastle.Crypto.IRsa)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaEngine::.ctor(Org.BouncyCastle.Crypto.IRsa)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.RsaEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RsaEngine::GetInputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RsaEngine::GetOutputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.RsaEngine::ProcessBlock(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::PackTauOrSigma(System.Int32,System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.Salsa20Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.Salsa20Engine::ReturnByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::SalsaCore(System.Int32,System.UInt32[],System.UInt32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::ResetLimitCounter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Engines.Salsa20Engine::LimitExceeded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Engines.Salsa20Engine::LimitExceeded(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SeedEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.SeedEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SeedEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SeedEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SeedEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SeedEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SeedEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SeedWrapEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SeedWrapEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Crypto.Engines.SerpentEngine::MakeWorkingKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::MakeWorkingKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SkipjackEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.SkipjackEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SkipjackEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SkipjackEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SkipjackEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SkipjackEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SkipjackEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM2Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM2Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM2Engine::.ctor(Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM2Engine::.ctor(Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM2Engine::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM2Engine::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM2Engine::.ctor(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM2Engine::.ctor(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM2Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.SM2Engine::ProcessBlock(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM4Engine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.SM4Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SM4Engine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SM4Engine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM4Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM4Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM4Engine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::.ctor(Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::.ctor(Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SparkleEngine::GetKeyBytesSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SparkleEngine::GetIVBytesSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.SparkleEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::ProcessAadByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::ProcessAadBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SparkleEngine::ProcessByte(System.Byte,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SparkleEngine::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SparkleEngine::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.SparkleEngine::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SparkleEngine::GetUpdateOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SparkleEngine::GetOutputSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::SparkleOpt8(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::SparkleOpt12(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::SparkleOpt16(System.UInt32[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TeaEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TeaEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.TeaEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TeaEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TeaEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TeaEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/ThreefishCipher::.ctor(System.UInt64[],System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/ThreefishCipher::EncryptBlock(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/ThreefishCipher::DecryptBlock(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish256Cipher::.ctor(System.UInt64[],System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish256Cipher::.ctor(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish256Cipher::EncryptBlock(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish256Cipher::DecryptBlock(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish512Cipher::.ctor(System.UInt64[],System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish512Cipher::.ctor(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish512Cipher::EncryptBlock(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish512Cipher::DecryptBlock(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish1024Cipher::.ctor(System.UInt64[],System.UInt64[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish1024Cipher::.ctor(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish1024Cipher::EncryptBlock(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine/Threefish1024Cipher::DecryptBlock(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine::Init(System.Boolean,System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.ThreefishEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.ThreefishEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.ThreefishEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.ThreefishEngine::ProcessBlock(System.UInt64[],System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.TnepresEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Crypto.Engines.TnepresEngine::MakeWorkingKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TnepresEngine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TnepresEngine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TnepresEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TnepresEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TwofishEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TwofishEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TwofishEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.TwofishEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TwofishEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.VmpcEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.VmpcEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.VmpcEngine::ProcessBytes(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.VmpcEngine::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.VmpcEngine::ReturnByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.VmpcEngine::KsaRound(System.Byte[],System.Byte&,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.VmpcEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.VmpcEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.VmpcKsa3Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.VmpcKsa3Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.VmpcKsa3Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.XSalsa20Engine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.XSalsa20Engine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.XSalsa20Engine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.XteaEngine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.XteaEngine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Engines.XteaEngine::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.XteaEngine::GetBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.XteaEngine::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.XteaEngine::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IAsymmetricBlockCipher Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding::GetInputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding::GetOutputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding::SetPadBits(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding::GetPadBits()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding::ProcessBlock(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.OaepEncoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.OaepEncoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.OaepEncoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.OaepEncoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.OaepEncoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.OaepEncoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.OaepEncoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.OaepEncoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Crypto.IDigest,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Encodings.OaepEncoding::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IAsymmetricBlockCipher Org.BouncyCastle.Crypto.Encodings.OaepEncoding::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.OaepEncoding::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Encodings.OaepEncoding::GetInputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Encodings.OaepEncoding::GetOutputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Encodings.OaepEncoding::ProcessBlock(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::get_StrictLengthEnabled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::set_StrictLengthEnabled(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::.ctor(Org.BouncyCastle.Crypto.IAsymmetricBlockCipher,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IAsymmetricBlockCipher Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::get_UnderlyingCipher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::GetInputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::GetOutputBlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::ProcessBlock(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP128R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP128R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160K1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160K1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160R2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160R2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP192K1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP192K1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP192R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP192R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP224K1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP224K1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP224R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP224R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP256K1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP256K1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP256R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP256R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP384R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP384R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP521R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP521R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT113R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT113R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT113R2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT113R2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT131R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT131R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT131R2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT131R2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163K1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163K1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163R2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163R2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT193R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT193R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT193R2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT193R2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT233K1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT233K1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT233R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT233R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT239K1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT239K1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT283K1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT283K1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT283R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT283R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT409K1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT409K1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT409R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT409R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT571K1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT571K1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT571R1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT571R1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SM2P256V1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SM2P256V1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves::GetByName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Crypto.EC.CustomNamedCurves::GetByNameLazy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves::GetByOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Crypto.EC.CustomNamedCurves::GetByOidLazy(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.EC.CustomNamedCurves::GetName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.EC.CustomNamedCurves::GetOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Crypto.EC.CustomNamedCurves::get_Names()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.ECUtilities::FindECCurveByName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Crypto.EC.ECUtilities::FindECCurveByNameLazy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.ECUtilities::FindECCurveByOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Crypto.EC.ECUtilities::FindECCurveByOidLazy(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.EC.ECUtilities::FindECCurveOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconCXof128::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconCXof128::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconCXof128::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconCXof128::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconCXof128::.ctor(System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconCXof128::.ctor(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.AsconCXof128::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconCXof128::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconCXof128::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconCXof128::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconCXof128::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconCXof128::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconCXof128::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconCXof128::OutputFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconCXof128::Output(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconDigest::.ctor(Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconDigest::.ctor(Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.AsconDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconHash256::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconHash256::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.AsconHash256::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconHash256::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconHash256::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconHash256::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconHash256::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconHash256::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconHash256::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof::.ctor(Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof::.ctor(Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.AsconXof::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconXof::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconXof::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconXof::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconXof::OutputFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconXof::Output(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof128::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof128::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.AsconXof128::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconXof128::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconXof128::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof128::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof128::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconXof128::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof128::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconXof128::OutputFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconXof128::Output(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::.ctor(Org.BouncyCastle.Crypto.Digests.Blake2bDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::.ctor(Org.BouncyCastle.Crypto.Digests.Blake2bDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::.ctor(System.Byte[],System.Int32,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::.ctor(System.Byte[],System.Int32,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake2bDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Blake2bDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake2bDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake2bDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::ClearKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::ClearSalt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor(Org.BouncyCastle.Crypto.Digests.Blake2sDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor(Org.BouncyCastle.Crypto.Digests.Blake2sDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor(System.Byte[],System.Int32,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor(System.Byte[],System.Int32,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor(System.Int32,System.Byte[],System.Byte[],System.Byte[],System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor(System.Int32,System.Byte[],System.Byte[],System.Byte[],System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor(System.Int32,System.Int32,System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.ctor(System.Int32,System.Int32,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake2sDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Blake2sDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake2sDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake2sDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::ClearKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::ClearSalt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::.ctor(System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::.ctor(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::.ctor(System.Int32,System.Byte[],System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::.ctor(System.Int32,System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::.ctor(Org.BouncyCastle.Crypto.Digests.Blake2xsDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::.ctor(Org.BouncyCastle.Crypto.Digests.Blake2xsDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::GetUnknownMaxLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::OutputFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::Output(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Blake3Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Blake3Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake3Digest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Blake3Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake3Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::Init(Org.BouncyCastle.Crypto.Parameters.Blake3Parameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake3Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake3Digest::OutputFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake3Digest::Output(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.Blake3Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.CShakeDigest::.ctor(System.Int32,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.CShakeDigest::.ctor(System.Int32,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.CShakeDigest::.ctor(Org.BouncyCastle.Crypto.Digests.CShakeDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.CShakeDigest::.ctor(Org.BouncyCastle.Crypto.Digests.CShakeDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.CShakeDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.CShakeDigest::Output(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.CShakeDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.CShakeDigest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Dstu7564Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Dstu7564Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.GeneralDigest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.GeneralDigest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.GeneralDigest::.ctor(Org.BouncyCastle.Crypto.Digests.GeneralDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.GeneralDigest::.ctor(Org.BouncyCastle.Crypto.Digests.GeneralDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.GeneralDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.GeneralDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.GeneralDigest::Finish()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.GeneralDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.GeneralDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.GeneralDigest::ProcessWord(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.GeneralDigest::ProcessLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.GeneralDigest::ProcessBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.GeneralDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.GeneralDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.GeneralDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.GeneralDigest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.GeneralDigest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Gost3411Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Gost3411Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Gost3411Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Gost3411Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Gost3411Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Gost3411Digest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.Gost3411Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Gost3411_2012_256Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012_256Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012_256Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012_256Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Gost3411_2012_256Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012_256Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Gost3411_2012_256Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Gost3411_2012_256Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Gost3411_2012_256Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.Gost3411_2012_256Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012_256Digest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Gost3411_2012_512Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012_512Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012_512Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012_512Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Gost3411_2012_512Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012_512Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Gost3411_2012_512Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Gost3411_2012_512Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.Gost3411_2012_512Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012_512Digest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Haraka256Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Haraka256Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Haraka256Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Haraka256Digest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Haraka256Digest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Haraka256Digest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Haraka256Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Haraka256Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Haraka512Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Haraka512Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Haraka512Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Haraka512Digest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Haraka512Digest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Haraka512Digest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Haraka512Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Haraka512Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.HarakaBase::AesEnc(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.HarakaBase::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.HarakaBase::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.HarakaBase::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.HarakaBase::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.HarakaBase::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.HarakaBase::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.HarakaBase::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.HarakaBase::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.HarakaBase::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.IsapDigest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.IsapDigest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.IsapDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.IsapDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.IsapDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.IsapDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.IsapDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.IsapDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.IsapDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::.ctor(Org.BouncyCastle.Crypto.Digests.KeccakDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::.ctor(Org.BouncyCastle.Crypto.Digests.KeccakDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.KeccakDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.KeccakDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.KeccakDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.KeccakDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::KeccakPermutation(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.KeccakDigest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::.ctor(Org.BouncyCastle.Crypto.Digests.LongDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::.ctor(Org.BouncyCastle.Crypto.Digests.LongDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::Finish()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::ProcessWord(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::ProcessLength(System.Int64,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::ProcessBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.LongDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.LongDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.LongDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.LongDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.LongDigest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD2Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD2Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD2Digest::.ctor(Org.BouncyCastle.Crypto.Digests.MD2Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD2Digest::.ctor(Org.BouncyCastle.Crypto.Digests.MD2Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.MD2Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.MD2Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.MD2Digest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.MD2Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD2Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD2Digest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD2Digest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD2Digest::ProcessChecksum(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD2Digest::ProcessBlock(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.MD2Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD2Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD2Digest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD4Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD4Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD4Digest::.ctor(Org.BouncyCastle.Crypto.Digests.MD4Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD4Digest::.ctor(Org.BouncyCastle.Crypto.Digests.MD4Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.MD4Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.MD4Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD4Digest::ProcessWord(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD4Digest::ProcessLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.MD4Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD4Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD4Digest::ProcessBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.MD4Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD4Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD5Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD5Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD5Digest::.ctor(Org.BouncyCastle.Crypto.Digests.MD5Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD5Digest::.ctor(Org.BouncyCastle.Crypto.Digests.MD5Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.MD5Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.MD5Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD5Digest::ProcessWord(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD5Digest::ProcessLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.MD5Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD5Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD5Digest::ProcessBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.MD5Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD5Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD5Digest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.NonMemoableDigest::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.NonMemoableDigest::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.NonMemoableDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.NonMemoableDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.NonMemoableDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.NonMemoableDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.NonMemoableDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.NonMemoableDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.NonMemoableDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.NullDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.NullDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.NullDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.NullDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.NullDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.NullDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.NullDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.NullDigest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.NullDigest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ParallelHash::.ctor(System.Int32,System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ParallelHash::.ctor(System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ParallelHash::.ctor(System.Int32,System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ParallelHash::.ctor(System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ParallelHash::.ctor(Org.BouncyCastle.Crypto.Digests.ParallelHash)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ParallelHash::.ctor(Org.BouncyCastle.Crypto.Digests.ParallelHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.ParallelHash::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ParallelHash::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ParallelHash::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ParallelHash::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ParallelHash::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ParallelHash::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ParallelHash::OutputFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ParallelHash::Output(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ParallelHash::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ParallelHash::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Prehash Org.BouncyCastle.Crypto.Digests.Prehash::ForDigest(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Prehash::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Prehash::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Prehash::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Prehash::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Prehash::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Prehash::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Prehash::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Prehash::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::.ctor(Org.BouncyCastle.Crypto.Digests.RipeMD128Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::.ctor(Org.BouncyCastle.Crypto.Digests.RipeMD128Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::ProcessWord(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::ProcessLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::ProcessBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::.ctor(Org.BouncyCastle.Crypto.Digests.RipeMD160Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::.ctor(Org.BouncyCastle.Crypto.Digests.RipeMD160Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::ProcessWord(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::ProcessLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::ProcessBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::.ctor(Org.BouncyCastle.Crypto.Digests.RipeMD256Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::.ctor(Org.BouncyCastle.Crypto.Digests.RipeMD256Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::ProcessWord(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::ProcessLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::ProcessBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::.ctor(Org.BouncyCastle.Crypto.Digests.RipeMD320Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::.ctor(Org.BouncyCastle.Crypto.Digests.RipeMD320Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::ProcessWord(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::ProcessLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::ProcessBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha1Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha1Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha1Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha1Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha1Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha1Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Sha1Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha1Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha1Digest::ProcessWord(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha1Digest::ProcessLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha1Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha1Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha1Digest::ProcessBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.Sha1Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha1Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha224Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha224Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha224Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha224Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha224Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha224Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Sha224Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha224Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha224Digest::ProcessWord(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha224Digest::ProcessLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha224Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha224Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha224Digest::ProcessBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.Sha224Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha224Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha224Digest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha256Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha256Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha256Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha256Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha256Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha256Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Sha256Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha256Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha256Digest::ProcessWord(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha256Digest::ProcessLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha256Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha256Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha256Digest::ProcessBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.Sha256Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha256Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha256Digest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha384Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha384Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha384Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha384Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha384Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha384Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Sha384Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha384Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha384Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha384Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.Sha384Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha384Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha3Digest::CalculateDigest(System.UInt64[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha3Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha3Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha3Digest::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha3Digest::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha3Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha3Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha3Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha3Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Sha3Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha3Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.Sha3Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha512Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512Digest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha512Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Sha512Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha512Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha512Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.Sha512Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512tDigest::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512tDigest::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512tDigest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha512tDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512tDigest::.ctor(Org.BouncyCastle.Crypto.Digests.Sha512tDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.Sha512tDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha512tDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha512tDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512tDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.Sha512tDigest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512tDigest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ShakeDigest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ShakeDigest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ShakeDigest::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ShakeDigest::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ShakeDigest::.ctor(Org.BouncyCastle.Crypto.Digests.ShakeDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ShakeDigest::.ctor(Org.BouncyCastle.Crypto.Digests.ShakeDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.ShakeDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ShakeDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ShakeDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ShakeDigest::OutputFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ShakeDigest::Output(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.ShakeDigest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ShortenedDigest::.ctor(Org.BouncyCastle.Crypto.IDigest,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ShortenedDigest::.ctor(Org.BouncyCastle.Crypto.IDigest,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.ShortenedDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ShortenedDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ShortenedDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ShortenedDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ShortenedDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ShortenedDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ShortenedDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinDigest::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinDigest::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinDigest::.ctor(Org.BouncyCastle.Crypto.Digests.SkeinDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinDigest::.ctor(Org.BouncyCastle.Crypto.Digests.SkeinDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinDigest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.SkeinDigest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.SkeinDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinDigest::Init(Org.BouncyCastle.Crypto.Parameters.SkeinParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/Configuration::.ctor(System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/Configuration::.ctor(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.SkeinEngine/Configuration::get_Bytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/Parameter::.ctor(System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/Parameter::.ctor(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinEngine/Parameter::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.SkeinEngine/Parameter::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak::Reset(Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak::set_Type(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak::get_First()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak::set_First(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak::get_Final()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak::set_Final(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak::AdvancePosition(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak::GetWords()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.SkeinEngine/UbiTweak::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UBI::.ctor(Org.BouncyCastle.Crypto.Digests.SkeinEngine,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UBI::.ctor(Org.BouncyCastle.Crypto.Digests.SkeinEngine,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UBI::Reset(Org.BouncyCastle.Crypto.Digests.SkeinEngine/UBI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UBI::Reset(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UBI::Update(System.Byte[],System.Int32,System.Int32,System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UBI::DoFinal(System.UInt64[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::.ctor(Org.BouncyCastle.Crypto.Digests.SkeinEngine)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::.ctor(Org.BouncyCastle.Crypto.Digests.SkeinEngine)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.SkeinEngine::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinEngine::get_OutputSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinEngine::get_BlockSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::Init(Org.BouncyCastle.Crypto.Parameters.SkeinParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinEngine::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SM3Digest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SM3Digest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SM3Digest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SM3Digest::.ctor(Org.BouncyCastle.Crypto.Digests.SM3Digest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SM3Digest::.ctor(Org.BouncyCastle.Crypto.Digests.SM3Digest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.SM3Digest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SM3Digest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.SM3Digest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SM3Digest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SM3Digest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SM3Digest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SM3Digest::ProcessWord(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SM3Digest::ProcessLength(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SM3Digest::ProcessBlock()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SparkleDigest::.ctor(Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SparkleDigest::.ctor(Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.SparkleDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SparkleDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SparkleDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SparkleDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SparkleDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SparkleDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SparkleDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::.ctor(Org.BouncyCastle.Crypto.Digests.TigerDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::.ctor(Org.BouncyCastle.Crypto.Digests.TigerDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.TigerDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.TigerDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.TigerDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.TigerDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.TigerDigest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TupleHash::.ctor(System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TupleHash::.ctor(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TupleHash::.ctor(System.Int32,System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TupleHash::.ctor(System.Int32,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TupleHash::.ctor(Org.BouncyCastle.Crypto.Digests.TupleHash)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TupleHash::.ctor(Org.BouncyCastle.Crypto.Digests.TupleHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.TupleHash::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.TupleHash::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.TupleHash::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TupleHash::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TupleHash::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.TupleHash::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.TupleHash::OutputFinal(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.TupleHash::Output(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TupleHash::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TupleHash::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::.ctor(Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::.ctor(Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::Copy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::Reset(Org.BouncyCastle.Utilities.IMemoable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.XofUtilities::LeftEncode(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.XofUtilities::RightEncode(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.XofUtilities::Encode(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.XofUtilities::Encode(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.XofUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.XofUtilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.XoodyakDigest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.XoodyakDigest::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Digests.XoodyakDigest::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.XoodyakDigest::GetDigestSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.XoodyakDigest::GetByteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.XoodyakDigest::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.XoodyakDigest::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.XoodyakDigest::DoFinal(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.XoodyakDigest::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.XoodyakDigest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.BasicAgreementWithKdf::CalculateAgreementWithKdf(System.String,Org.BouncyCastle.Crypto.IDerivationFunction,System.Int32,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.DHAgreement::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.DHAgreement::CalculateMessage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.DHAgreement::CalculateAgreement(Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.DHAgreement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.DHAgreement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.DHBasicAgreement::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.DHBasicAgreement::GetFieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.DHBasicAgreement::CalculateAgreement(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.DHBasicAgreement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.DHBasicAgreement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECDHBasicAgreement::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.ECDHBasicAgreement::GetFieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.ECDHBasicAgreement::CalculateAgreement(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECDHBasicAgreement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECDHBasicAgreement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECDHCBasicAgreement::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.ECDHCBasicAgreement::GetFieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.ECDHCBasicAgreement::CalculateAgreement(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECDHCBasicAgreement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECDHCBasicAgreement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECDHCWithKdfBasicAgreement::.ctor(System.String,Org.BouncyCastle.Crypto.IDerivationFunction)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECDHCWithKdfBasicAgreement::.ctor(System.String,Org.BouncyCastle.Crypto.IDerivationFunction)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.ECDHCWithKdfBasicAgreement::CalculateAgreement(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECDHWithKdfBasicAgreement::.ctor(System.String,Org.BouncyCastle.Crypto.IDerivationFunction)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECDHWithKdfBasicAgreement::.ctor(System.String,Org.BouncyCastle.Crypto.IDerivationFunction)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.ECDHWithKdfBasicAgreement::CalculateAgreement(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECMqvBasicAgreement::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.ECMqvBasicAgreement::GetFieldSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.ECMqvBasicAgreement::CalculateAgreement(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECMqvBasicAgreement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECMqvBasicAgreement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECMqvWithKdfBasicAgreement::.ctor(System.String,Org.BouncyCastle.Crypto.IDerivationFunction)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.ECMqvWithKdfBasicAgreement::.ctor(System.String,Org.BouncyCastle.Crypto.IDerivationFunction)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.ECMqvWithKdfBasicAgreement::CalculateAgreement(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::CalculateKey(System.Int32,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::CalculateKeyWithConfirmation(System.Int32,System.Byte[],Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.X25519Agreement::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.X25519Agreement::get_AgreementSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.X25519Agreement::CalculateAgreement(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.X25519Agreement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.X25519Agreement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.X448Agreement::Init(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.X448Agreement::get_AgreementSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.X448Agreement::CalculateAgreement(Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.X448Agreement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.X448Agreement::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client::Init(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client::Init(Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client::GenerateClientCredentials(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client::CalculateSecret(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client::CalculateClientEvidenceMessage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client::VerifyServerEvidenceMessage(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client::CalculateSessionKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server::Init(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server::Init(Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server::GenerateServerCredentials()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server::CalculateSecret(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server::VerifyClientEvidenceMessage(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server::CalculateServerEvidenceMessage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server::CalculateSessionKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6StandardGroups::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6StandardGroups::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6StandardGroups::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities::CalculateK(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities::CalculateU(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities::CalculateX(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger,System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities::GeneratePrivateValue(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities::ValidatePublicValue(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities::CalculateM1(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities::CalculateM2(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities::CalculateKey(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6VerifierGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6VerifierGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6VerifierGenerator::Init(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Srp.Srp6VerifierGenerator::Init(Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6VerifierGenerator::GenerateVerifier(System.Byte[],System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Kdf.ConcatenationKdfGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Kdf.ConcatenationKdfGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Kdf.ConcatenationKdfGenerator::Init(Org.BouncyCastle.Crypto.IDerivationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.Agreement.Kdf.ConcatenationKdfGenerator::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.Kdf.ConcatenationKdfGenerator::GenerateBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Kdf.DHKdfParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Kdf.DHKdfParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Kdf.DHKdfParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Int32,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Kdf.DHKdfParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Int32,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Agreement.Kdf.DHKdfParameters::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.Kdf.DHKdfParameters::get_KeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Agreement.Kdf.DHKdfParameters::GetZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Agreement.Kdf.DHKdfParameters::GetExtraInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Kdf.DHKekGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Kdf.DHKekGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Kdf.DHKekGenerator::Init(Org.BouncyCastle.Crypto.IDerivationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.Agreement.Kdf.DHKekGenerator::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.Kdf.DHKekGenerator::GenerateBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Kdf.ECDHKekGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Kdf.ECDHKekGenerator::.ctor(Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.Kdf.ECDHKekGenerator::Init(Org.BouncyCastle.Crypto.IDerivationParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crypto.Agreement.Kdf.ECDHKekGenerator::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.Kdf.ECDHKekGenerator::GenerateBytes(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::.ctor(System.String,System.Char[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::.ctor(System.String,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::.ctor(System.String,System.Char[],Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::.ctor(System.String,System.Char[],Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::.ctor(System.String,System.Char[],Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::.ctor(System.String,System.Char[],Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::get_State()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound1Payload Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::CreateRound1PayloadToSend()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::ValidateRound1PayloadReceived(Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound1Payload)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound2Payload Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::CreateRound2PayloadToSend()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::ValidateRound2PayloadReceived(Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound2Payload)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::CalculateKeyingMaterial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound3Payload Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::CreateRound3PayloadToSend(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::ValidateRound3PayloadReceived(Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound3Payload,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroups::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroups::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroups::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound1Payload::.ctor(System.String,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger[],Org.BouncyCastle.Math.BigInteger[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound1Payload::.ctor(System.String,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger[],Org.BouncyCastle.Math.BigInteger[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound1Payload::get_ParticipantId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound1Payload::get_Gx1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound1Payload::get_Gx2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound1Payload::get_KnowledgeProofForX1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound1Payload::get_KnowledgeProofForX2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound2Payload::.ctor(System.String,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound2Payload::.ctor(System.String,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound2Payload::get_ParticipantId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound2Payload::get_A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound2Payload::get_KnowledgeProofForX2s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound3Payload::.ctor(System.String,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound3Payload::.ctor(System.String,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound3Payload::get_ParticipantId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound3Payload::get_MacTag()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::GenerateX1(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::GenerateX2(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::CalculateS(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::CalculateS(Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::CalculateS(Org.BouncyCastle.Math.BigInteger,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::CalculateGx(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::CalculateGA(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::CalculateX2s(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::CalculateA(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::CalculateZeroKnowledgeProof(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.String,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::ValidateGx4(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::ValidateGa(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::ValidateZeroKnowledgeProof(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger[],System.String,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::CalculateKeyingMaterial(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::ValidateParticipantIdsDiffer(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::ValidateParticipantIdsEqual(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::ValidateNotNull(System.Object,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::CalculateMacTag(System.String,System.String,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::ValidateMacTag(System.String,System.String,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.AuthenticatorControl::.ctor(Org.BouncyCastle.Asn1.DerUtf8String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.AuthenticatorControl::.ctor(Org.BouncyCastle.Asn1.DerUtf8String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.AuthenticatorControl::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.AuthenticatorControl::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crmf.AuthenticatorControl::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Crmf.AuthenticatorControl::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRepMessage/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRepMessage/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRepMessage/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateResponse Org.BouncyCastle.Crmf.CertificateRepMessage/<>c::b__5_0(Org.BouncyCastle.Asn1.Cmp.CertResponse)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRepMessage Org.BouncyCastle.Crmf.CertificateRepMessage::FromPkiBody(Org.BouncyCastle.Asn1.Cmp.PkiBody)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.CertificateRepMessage::IsCertificateRepMessage(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRepMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.CertRepMessage)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRepMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.CertRepMessage)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateResponse[] Org.BouncyCastle.Crmf.CertificateRepMessage::GetResponses()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate[] Org.BouncyCastle.Crmf.CertificateRepMessage::GetX509Certificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.CertificateRepMessage::IsOnlyX509PKCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate[] Org.BouncyCastle.Crmf.CertificateRepMessage::GetCmpCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertRepMessage Org.BouncyCastle.Crmf.CertificateRepMessage::ToAsn1Structure()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRepMessageBuilder/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRepMessageBuilder/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRepMessageBuilder/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Crmf.CertificateRepMessageBuilder/<>c::<.ctor>b__2_0(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRepMessageBuilder::.ctor(Org.BouncyCastle.X509.X509Certificate[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRepMessageBuilder::.ctor(Org.BouncyCastle.X509.X509Certificate[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRepMessageBuilder Org.BouncyCastle.Crmf.CertificateRepMessageBuilder::AddCertificateResponse(Org.BouncyCastle.Crmf.CertificateResponse)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRepMessage Org.BouncyCastle.Crmf.CertificateRepMessageBuilder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateReqMessages/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateReqMessages/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateReqMessages/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessage Org.BouncyCastle.Crmf.CertificateReqMessages/<>c::b__4_0(Org.BouncyCastle.Asn1.Crmf.CertReqMsg)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateReqMessages Org.BouncyCastle.Crmf.CertificateReqMessages::FromPkiBody(Org.BouncyCastle.Asn1.Cmp.PkiBody)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.CertificateReqMessages::IsCertificateRequestMessages(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateReqMessages::.ctor(Org.BouncyCastle.Asn1.Crmf.CertReqMessages)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateReqMessages::.ctor(Org.BouncyCastle.Asn1.Crmf.CertReqMessages)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessage[] Org.BouncyCastle.Crmf.CertificateReqMessages::GetRequests()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertReqMessages Org.BouncyCastle.Crmf.CertificateReqMessages::ToAsn1Structure()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateReqMessagesBuilder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateReqMessagesBuilder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateReqMessagesBuilder::AddRequest(Org.BouncyCastle.Crmf.CertificateRequestMessage)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateReqMessages Org.BouncyCastle.Crmf.CertificateReqMessagesBuilder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRequestMessage::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRequestMessage::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRequestMessage::.ctor(Org.BouncyCastle.Asn1.Crmf.CertReqMsg)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRequestMessage::.ctor(Org.BouncyCastle.Asn1.Crmf.CertReqMsg)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertReqMsg Org.BouncyCastle.Crmf.CertificateRequestMessage::ToAsn1Structure()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Crmf.CertificateRequestMessage::GetCertReqID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplate Org.BouncyCastle.Crmf.CertificateRequestMessage::GetCertTemplate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.CertificateRequestMessage::get_HasControls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.CertificateRequestMessage::HasControl(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.IControl Org.BouncyCastle.Crmf.CertificateRequestMessage::GetControl(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue Org.BouncyCastle.Crmf.CertificateRequestMessage::FindControl(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.CertificateRequestMessage::get_HasProofOfPossession()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crmf.CertificateRequestMessage::get_ProofOfPossession()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.CertificateRequestMessage::get_HasSigningKeyProofOfPossessionWithPkMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.CertificateRequestMessage::IsValidSigningKeyPop(Org.BouncyCastle.Crypto.IVerifierFactoryProvider)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.CertificateRequestMessage::IsValidSigningKeyPop(Org.BouncyCastle.Crypto.IVerifierFactoryProvider,Org.BouncyCastle.Crmf.PKMacBuilder,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crmf.CertificateRequestMessage::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRequestMessage::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetRegInfo(Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetPublicKey(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetPublicKey(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetSubjectPublicKeyInfo(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetIssuer(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetSubject(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetSerialNumber(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetSerialNumber(Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetValidity(Org.BouncyCastle.Asn1.Crmf.OptionalValidity)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetValidity(System.Nullable`1,System.Nullable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::AddExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::AddExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::AddControl(Org.BouncyCastle.Crmf.IControl)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetProofOfPossessionSignKeySigner(Org.BouncyCastle.Crypto.ISignatureFactory)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetProofOfPossessionSubsequentMessage(Org.BouncyCastle.Asn1.Crmf.SubsequentMessage)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetProofOfPossessionSubsequentMessage(System.Int32,Org.BouncyCastle.Asn1.Crmf.SubsequentMessage)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetProofOfPossessionAgreeMac(Org.BouncyCastle.Asn1.Crmf.PKMacValue)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetProofOfPossessionRaVerified()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetAuthInfoPKMAC(Org.BouncyCastle.Crmf.PKMacBuilder,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetAuthInfoPKMacBuilder(Org.BouncyCastle.Crmf.PKMacBuilder,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetAuthInfoSender(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::SetAuthInfoSender(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessage Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateResponse::.ctor(Org.BouncyCastle.Asn1.Cmp.CertResponse)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateResponse::.ctor(Org.BouncyCastle.Asn1.Cmp.CertResponse)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.CertificateResponse::get_HasEncryptedCertificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedData Org.BouncyCastle.Crmf.CertificateResponse::GetEncryptedCertificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Crmf.CertificateResponse::GetCertificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertResponse Org.BouncyCastle.Crmf.CertificateResponse::ToAsn1Structure()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateResponseBuilder::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CertificateResponseBuilder::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateResponseBuilder Org.BouncyCastle.Crmf.CertificateResponseBuilder::WithCertificate(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateResponseBuilder Org.BouncyCastle.Crmf.CertificateResponseBuilder::WithCertificate(Org.BouncyCastle.Asn1.Cmp.CmpCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateResponseBuilder Org.BouncyCastle.Crmf.CertificateResponseBuilder::WithCertificate(Org.BouncyCastle.Cms.CmsEnvelopedData)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateResponseBuilder Org.BouncyCastle.Crmf.CertificateResponseBuilder::WithResponseInfo(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateResponse Org.BouncyCastle.Crmf.CertificateResponseBuilder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CrmfException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CrmfException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CrmfException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CrmfException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CrmfException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CrmfException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.CrmfException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crmf.DefaultPKMacPrimitivesProvider::CreateDigest(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMac Org.BouncyCastle.Crmf.DefaultPKMacPrimitivesProvider::CreateMac(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.DefaultPKMacPrimitivesProvider::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.DefaultPKMacPrimitivesProvider::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.EncryptedValueBuilder::.ctor(Org.BouncyCastle.Crypto.IKeyWrapper,Org.BouncyCastle.Crypto.ICipherBuilderWithKey)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.EncryptedValueBuilder::.ctor(Org.BouncyCastle.Crypto.IKeyWrapper,Org.BouncyCastle.Crypto.ICipherBuilderWithKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.EncryptedValueBuilder::.ctor(Org.BouncyCastle.Crypto.IKeyWrapper,Org.BouncyCastle.Crypto.ICipherBuilderWithKey,Org.BouncyCastle.Crmf.IEncryptedValuePadder)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.EncryptedValueBuilder::.ctor(Org.BouncyCastle.Crypto.IKeyWrapper,Org.BouncyCastle.Crypto.ICipherBuilderWithKey,Org.BouncyCastle.Crmf.IEncryptedValuePadder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedValue Org.BouncyCastle.Crmf.EncryptedValueBuilder::Build(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedValue Org.BouncyCastle.Crmf.EncryptedValueBuilder::Build(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedValue Org.BouncyCastle.Crmf.EncryptedValueBuilder::Build(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.EncryptedValueParser::.ctor(Org.BouncyCastle.Asn1.Crmf.EncryptedValue)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.EncryptedValueParser::.ctor(Org.BouncyCastle.Asn1.Crmf.EncryptedValue)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.EncryptedValueParser::.ctor(Org.BouncyCastle.Asn1.Crmf.EncryptedValue,Org.BouncyCastle.Crmf.IEncryptedValuePadder)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.EncryptedValueParser::.ctor(Org.BouncyCastle.Asn1.Crmf.EncryptedValue,Org.BouncyCastle.Crmf.IEncryptedValuePadder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Crmf.EncryptedValueParser::get_IntendedAlg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crmf.IControl::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Crmf.IControl::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crmf.IEncryptedValuePadder::GetPaddedData(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crmf.IEncryptedValuePadder::GetUnpaddedData(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Crmf.IPKMacPrimitivesProvider::CreateDigest(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMac Org.BouncyCastle.Crmf.IPKMacPrimitivesProvider::CreateMac(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PkiArchiveControl::.ctor(Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PkiArchiveControl::.ctor(Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crmf.PkiArchiveControl::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Crmf.PkiArchiveControl::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crmf.PkiArchiveControl::get_ArchiveType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.PkiArchiveControl::get_EnvelopedData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.PkiArchiveControl::IsEnvelopedData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedData Org.BouncyCastle.Crmf.PkiArchiveControl::GetEnvelopedData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PkiArchiveControl::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PkiArchiveControlBuilder::.ctor(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PkiArchiveControlBuilder::.ctor(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.PkiArchiveControlBuilder Org.BouncyCastle.Crmf.PkiArchiveControlBuilder::AddRecipientGenerator(Org.BouncyCastle.Cms.RecipientInfoGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.PkiArchiveControl Org.BouncyCastle.Crmf.PkiArchiveControlBuilder::Build(Org.BouncyCastle.Crypto.ICipherBuilderWithKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacFactory::.ctor(System.Byte[],Org.BouncyCastle.Asn1.Cmp.PbmParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacFactory::.ctor(System.Byte[],Org.BouncyCastle.Asn1.Cmp.PbmParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crmf.PKMacFactory::get_AlgorithmDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IStreamCalculator`1 Org.BouncyCastle.Crmf.PKMacFactory::CreateCalculator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacBuilder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacBuilder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacBuilder::.ctor(Org.BouncyCastle.Crmf.IPKMacPrimitivesProvider)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacBuilder::.ctor(Org.BouncyCastle.Crmf.IPKMacPrimitivesProvider)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacBuilder::.ctor(Org.BouncyCastle.Crmf.IPKMacPrimitivesProvider,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacBuilder::.ctor(Org.BouncyCastle.Crmf.IPKMacPrimitivesProvider,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacBuilder::.ctor(Org.BouncyCastle.Crmf.IPKMacPrimitivesProvider,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacBuilder::.ctor(Org.BouncyCastle.Crmf.IPKMacPrimitivesProvider,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacBuilder::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int32,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Crmf.IPKMacPrimitivesProvider)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.PKMacBuilder Org.BouncyCastle.Crmf.PKMacBuilder::SetSaltLength(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.PKMacBuilder Org.BouncyCastle.Crmf.PKMacBuilder::SetIterationCount(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.PKMacBuilder Org.BouncyCastle.Crmf.PKMacBuilder::SetSecureRandom(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.PKMacBuilder Org.BouncyCastle.Crmf.PKMacBuilder::SetParameters(Org.BouncyCastle.Asn1.Cmp.PbmParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMacFactory Org.BouncyCastle.Crmf.PKMacBuilder::Get(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMacFactory Org.BouncyCastle.Crmf.PKMacBuilder::Build(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PKMacValue Org.BouncyCastle.Crmf.PKMacValueGenerator::Generate(Org.BouncyCastle.Crmf.PKMacBuilder,System.Char[],Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacValueVerifier::.ctor(Org.BouncyCastle.Crmf.PKMacBuilder)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacValueVerifier::.ctor(Org.BouncyCastle.Crmf.PKMacBuilder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.PKMacValueVerifier::IsValid(Org.BouncyCastle.Asn1.Crmf.PKMacValue,System.Char[],Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.ProofOfPossessionSigningKeyBuilder::.ctor(Org.BouncyCastle.Asn1.Crmf.CertRequest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.ProofOfPossessionSigningKeyBuilder::.ctor(Org.BouncyCastle.Asn1.Crmf.CertRequest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.ProofOfPossessionSigningKeyBuilder::.ctor(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.ProofOfPossessionSigningKeyBuilder::.ctor(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.ProofOfPossessionSigningKeyBuilder Org.BouncyCastle.Crmf.ProofOfPossessionSigningKeyBuilder::SetSender(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.ProofOfPossessionSigningKeyBuilder Org.BouncyCastle.Crmf.ProofOfPossessionSigningKeyBuilder::SetPublicKeyMac(Org.BouncyCastle.Crmf.PKMacBuilder,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoSigningKey Org.BouncyCastle.Crmf.ProofOfPossessionSigningKeyBuilder::Build(Org.BouncyCastle.Crypto.ISignatureFactory)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.RegTokenControl::.ctor(Org.BouncyCastle.Asn1.DerUtf8String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.RegTokenControl::.ctor(Org.BouncyCastle.Asn1.DerUtf8String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.RegTokenControl::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.RegTokenControl::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crmf.RegTokenControl::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Crmf.RegTokenControl::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAttributeTableGenerationException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAttributeTableGenerationException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAttributeTableGenerationException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAttributeTableGenerationException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAttributeTableGenerationException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAttributeTableGenerationException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAttributeTableGenerationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.CmsAttributeTableGenerator::GetAttributes(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedData::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedData::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedData::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedData::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedData::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedData::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AuthenticatedData Org.BouncyCastle.Cms.CmsAuthenticatedData::get_AuthenticatedData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsAuthenticatedData::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsAuthenticatedData::get_MacAlgorithmID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsAuthenticatedData::get_MacAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.RecipientInformationStore Org.BouncyCastle.Cms.CmsAuthenticatedData::GetRecipientInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Cms.CmsAuthenticatedData::get_ContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.CmsAuthenticatedData::GetAuthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.CmsAuthenticatedData::GetUnauthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsAuthenticatedData::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator/<>c__DisplayClass2_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator/<>c__DisplayClass2_0::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator/<>c__DisplayClass2_0::b__0(Org.BouncyCastle.Cms.RecipientInfoGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAuthenticatedData Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator::Generate(Org.BouncyCastle.Cms.CmsProcessable,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataParser::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataParser::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataParser::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataParser::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsAuthenticatedDataParser::get_MacAlgorithmID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsAuthenticatedDataParser::get_MacAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Cms.CmsAuthenticatedDataParser::get_MacAlgParams()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.RecipientInformationStore Org.BouncyCastle.Cms.CmsAuthenticatedDataParser::GetRecipientInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsAuthenticatedDataParser::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.CmsAuthenticatedDataParser::GetAuthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.CmsAuthenticatedDataParser::GetUnauthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator/CmsAuthenticatedDataOutputStream::.ctor(System.IO.Stream,Org.BouncyCastle.Crypto.IMac,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerOctetStringGenerator)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator/CmsAuthenticatedDataOutputStream::.ctor(System.IO.Stream,Org.BouncyCastle.Crypto.IMac,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerOctetStringGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator/CmsAuthenticatedDataOutputStream::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator/CmsAuthenticatedDataOutputStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator::SetBufferSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator::SetBerEncodeRecipients(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator::Open(System.IO.Stream,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator::Open(System.IO.Stream,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthEnvelopedData/AuthEnvelopedSecureReadable::.ctor(Org.BouncyCastle.Cms.CmsAuthEnvelopedData)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthEnvelopedData/AuthEnvelopedSecureReadable::.ctor(Org.BouncyCastle.Cms.CmsAuthEnvelopedData)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsAuthEnvelopedData/AuthEnvelopedSecureReadable::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Cms.CmsAuthEnvelopedData/AuthEnvelopedSecureReadable::get_CryptoObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsReadable Org.BouncyCastle.Cms.CmsAuthEnvelopedData/AuthEnvelopedSecureReadable::GetReadable(Org.BouncyCastle.Crypto.Parameters.KeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthEnvelopedData::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthEnvelopedData::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthEnvelopedData::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthEnvelopedData::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthEnvelopedData::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthEnvelopedData::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData Org.BouncyCastle.Cms.CmsAuthEnvelopedData::get_AuthEnvelopedData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsAuthEnvelopedData::get_ContentEncryptionAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.CmsAuthEnvelopedData::GetAuthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.CmsAuthEnvelopedData::GetUnauthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthEnvelopedGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthEnvelopedGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthEnvelopedGenerator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedData/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedData/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedData/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsCompressedData/<>c::b__5_0(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedData/<>c__DisplayClass6_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedData/<>c__DisplayClass6_0::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsCompressedData/<>c__DisplayClass6_0::b__0(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedData::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedData::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedData::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedData::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedData::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedData::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsCompressedData::GetContent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsCompressedData::GetContent(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CompressedData Org.BouncyCastle.Cms.CmsCompressedData::get_CompressedData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Cms.CmsCompressedData::get_ContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsCompressedData::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsCompressedData Org.BouncyCastle.Cms.CmsCompressedDataGenerator::Generate(Org.BouncyCastle.Cms.CmsProcessable,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataGenerator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataParser::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataParser::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataParser::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataParser::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsTypedStream Org.BouncyCastle.Cms.CmsCompressedDataParser::GetContent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator/CmsCompressedOutputStream::.ctor(System.IO.Stream,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerOctetStringGenerator)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator/CmsCompressedOutputStream::.ctor(System.IO.Stream,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerOctetStringGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator/CmsCompressedOutputStream::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator/CmsCompressedOutputStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator::SetBufferSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator::Open(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator::Open(System.IO.Stream,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator::Open(System.IO.Stream,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsContentInfoParser::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsContentInfoParser::Close()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsContentInfoParser::Dispose()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedData::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedData::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedData::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedData::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedData::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedData::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsEnvelopedData::get_EncryptionAlgorithmID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedData::get_EncryptionAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.RecipientInformationStore Org.BouncyCastle.Cms.CmsEnvelopedData::GetRecipientInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Cms.CmsEnvelopedData::get_ContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EnvelopedData Org.BouncyCastle.Cms.CmsEnvelopedData::get_EnvelopedData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.CmsEnvelopedData::GetUnprotectedAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsEnvelopedData::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator/<>c__DisplayClass2_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator/<>c__DisplayClass2_0::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator/<>c__DisplayClass2_0::b__0(Org.BouncyCastle.Cms.RecipientInfoGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator/<>c__DisplayClass4_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator/<>c__DisplayClass4_0::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator/<>c__DisplayClass4_0::b__0(Org.BouncyCastle.Cms.RecipientInfoGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedData Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator::Generate(Org.BouncyCastle.Cms.CmsProcessable,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedData Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator::Generate(Org.BouncyCastle.Cms.CmsProcessable,Org.BouncyCastle.Crypto.ICipherBuilderWithKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedData Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator::Generate(Org.BouncyCastle.Cms.CmsProcessable,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataParser::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataParser::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataParser::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataParser::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsEnvelopedDataParser::get_EncryptionAlgorithmID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedDataParser::get_EncryptionAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Cms.CmsEnvelopedDataParser::get_EncryptionAlgParams()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.RecipientInformationStore Org.BouncyCastle.Cms.CmsEnvelopedDataParser::GetRecipientInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.CmsEnvelopedDataParser::GetUnprotectedAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator/CmsEnvelopedDataOutputStream::.ctor(Org.BouncyCastle.Cms.CmsEnvelopedGenerator,Org.BouncyCastle.Crypto.IO.CipherStream,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerOctetStringGenerator)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator/CmsEnvelopedDataOutputStream::.ctor(Org.BouncyCastle.Cms.CmsEnvelopedGenerator,Org.BouncyCastle.Crypto.IO.CipherStream,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerOctetStringGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator/CmsEnvelopedDataOutputStream::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator/CmsEnvelopedDataOutputStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator::SetBufferSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator::SetBerEncodeRecipients(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator::Open(System.IO.Stream,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator::Open(System.IO.Stream,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableGenerator Org.BouncyCastle.Cms.CmsEnvelopedGenerator::get_UnprotectedAttributeGenerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::set_UnprotectedAttributeGenerator(Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::AddKeyTransRecipient(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::AddKeyTransRecipient(System.String,Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::AddKeyTransRecipient(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::AddKeyTransRecipient(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::AddKekRecipient(System.String,Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::AddKekRecipient(System.String,Org.BouncyCastle.Crypto.Parameters.KeyParameter,Org.BouncyCastle.Asn1.Cms.KekIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::AddPasswordRecipient(Org.BouncyCastle.Cms.CmsPbeKey,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::AddKeyAgreementRecipient(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::AddKeyAgreementRecipients(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Collections.Generic.IEnumerable`1,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::AddKeyAgreementRecipient(System.String,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[],Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::AddRecipientInfoGenerator(Org.BouncyCastle.Cms.RecipientInfoGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsEnvelopedGenerator::GetAlgorithmIdentifier(System.String,Org.BouncyCastle.Crypto.Parameters.KeyParameter,Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Crypto.ICipherParameters&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Cms.CmsEnvelopedGenerator::GenerateAsn1Parameters(System.String,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedGenerator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedHelper/CmsAuthenticatedSecureReadable::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Cms.CmsReadable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedHelper/CmsAuthenticatedSecureReadable::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Cms.CmsReadable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsEnvelopedHelper/CmsAuthenticatedSecureReadable::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Cms.CmsEnvelopedHelper/CmsAuthenticatedSecureReadable::get_CryptoObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsReadable Org.BouncyCastle.Cms.CmsEnvelopedHelper/CmsAuthenticatedSecureReadable::GetReadable(Org.BouncyCastle.Crypto.Parameters.KeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedHelper/CmsEnvelopedSecureReadable::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Cms.CmsReadable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedHelper/CmsEnvelopedSecureReadable::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Cms.CmsReadable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsEnvelopedHelper/CmsEnvelopedSecureReadable::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Cms.CmsEnvelopedHelper/CmsEnvelopedSecureReadable::get_CryptoObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsReadable Org.BouncyCastle.Cms.CmsEnvelopedHelper/CmsEnvelopedSecureReadable::GetReadable(Org.BouncyCastle.Crypto.Parameters.KeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedHelper::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.RecipientInformationStore Org.BouncyCastle.Cms.CmsEnvelopedHelper::BuildRecipientInformationStore(Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Cms.CmsSecureReadable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.CmsEnvelopedHelper::GetKeySize(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedHelper::GetRfc3211WrapperName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedHelper::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedHelper::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsPbeKey::.ctor(System.Char[],System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsPbeKey::.ctor(System.Char[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsPbeKey::.ctor(System.Char[],Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsPbeKey::.ctor(System.Char[],Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsPbeKey::get_Salt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.CmsPbeKey::get_IterationCount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsPbeKey::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsPbeKey::get_Format()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsPbeKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Cms.CmsPbeKey::GetEncoded(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessable::Write(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableByteArray::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableByteArray::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableByteArray::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableByteArray::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsProcessableByteArray::GetByteArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Cms.CmsProcessableByteArray::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsProcessableByteArray::GetInputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableByteArray::Write(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableFile::.ctor(System.IO.FileInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableFile::.ctor(System.IO.FileInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableFile::.ctor(System.IO.FileInfo,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableFile::.ctor(System.IO.FileInfo,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsProcessableFile::GetInputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableFile::Write(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableInputStream::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableInputStream::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsProcessableInputStream::GetInputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableInputStream::Write(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsReadable::GetInputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsSecureReadable::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Cms.CmsSecureReadable::get_CryptoObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsReadable Org.BouncyCastle.Cms.CmsSecureReadable::GetReadable(Org.BouncyCastle.Crypto.Parameters.KeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData/PreserveAbsentParameters::.ctor(Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder,System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData/PreserveAbsentParameters::.ctor(Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder,System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsSignedData/PreserveAbsentParameters::Find(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsSignedData/PreserveAbsentParameters::Find(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsSignedData/PreserveAbsentParameters::Find(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(Org.BouncyCastle.Cms.CmsSignedData)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Cms.SignedData,Org.BouncyCastle.Cms.CmsProcessable,Org.BouncyCastle.Cms.SignerInformationStore)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(Org.BouncyCastle.Cms.CmsProcessable,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(Org.BouncyCastle.Cms.CmsProcessable,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(System.Collections.Generic.IDictionary`2,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(System.Collections.Generic.IDictionary`2,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(Org.BouncyCastle.Cms.CmsProcessable,System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(Org.BouncyCastle.Cms.CmsProcessable,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(Org.BouncyCastle.Cms.CmsProcessable,Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(Org.BouncyCastle.Cms.CmsProcessable,Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedData::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Cms.CmsSignedData::get_ContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.CmsSignedData::GetAttributeCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.CmsSignedData::GetCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.CmsSignedData::GetCrls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Cms.CmsSignedData::GetDigestAlgorithmIDs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Cms.CmsSignedData::GetDigestAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsSignedData::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsSignedData::GetEncoded(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.CmsSignedData::GetOtherRevInfos(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformationStore Org.BouncyCastle.Cms.CmsSignedData::GetSignerInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsProcessable Org.BouncyCastle.Cms.CmsSignedData::get_SignedContent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Cms.CmsSignedData::get_SignedContentType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignedData Org.BouncyCastle.Cms.CmsSignedData::get_SignedData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.CmsSignedData::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedData Org.BouncyCastle.Cms.CmsSignedData::AddDigestAlgorithm(Org.BouncyCastle.Cms.CmsSignedData,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedData Org.BouncyCastle.Cms.CmsSignedData::AddDigestAlgorithm(Org.BouncyCastle.Cms.CmsSignedData,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedData Org.BouncyCastle.Cms.CmsSignedData::ReplaceSigners(Org.BouncyCastle.Cms.CmsSignedData,Org.BouncyCastle.Cms.SignerInformationStore)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedData Org.BouncyCastle.Cms.CmsSignedData::ReplaceSigners(Org.BouncyCastle.Cms.CmsSignedData,Org.BouncyCastle.Cms.SignerInformationStore,Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedData Org.BouncyCastle.Cms.CmsSignedData::ReplaceCertificatesAndCrls(Org.BouncyCastle.Cms.CmsSignedData,Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedData Org.BouncyCastle.Cms.CmsSignedData::ReplaceCertificatesAndCrls(Org.BouncyCastle.Cms.CmsSignedData,Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedData Org.BouncyCastle.Cms.CmsSignedData::ReplaceCertificatesAndRevocations(Org.BouncyCastle.Cms.CmsSignedData,Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator/SignerInf::.ctor(Org.BouncyCastle.Cms.CmsSignedGenerator,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator/SignerInf::.ctor(Org.BouncyCastle.Cms.CmsSignedGenerator,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator/SignerInf::.ctor(Org.BouncyCastle.Cms.CmsSignedGenerator,Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator/SignerInf::.ctor(Org.BouncyCastle.Cms.CmsSignedGenerator,Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerInfo Org.BouncyCastle.Cms.CmsSignedDataGenerator/SignerInf::ToSignerInfo(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Cms.CmsProcessable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[],System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[],System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,Org.BouncyCastle.Asn1.Cms.AttributeTable,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,System.String,Org.BouncyCastle.Asn1.Cms.AttributeTable,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[],System.String,Org.BouncyCastle.Asn1.Cms.AttributeTable,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[],System.String,System.String,Org.BouncyCastle.Asn1.Cms.AttributeTable,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,System.String,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[],System.String,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[],System.String,System.String,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::AddSignerInfoGenerator(Org.BouncyCastle.Cms.SignerInfoGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedData Org.BouncyCastle.Cms.CmsSignedDataGenerator::Generate(Org.BouncyCastle.Cms.CmsProcessable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedData Org.BouncyCastle.Cms.CmsSignedDataGenerator::Generate(Org.BouncyCastle.Cms.CmsProcessable,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedData Org.BouncyCastle.Cms.CmsSignedDataGenerator::Generate(System.String,Org.BouncyCastle.Cms.CmsProcessable,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformationStore Org.BouncyCastle.Cms.CmsSignedDataGenerator::GenerateCounterSigners(Org.BouncyCastle.Cms.SignerInformation)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.CmsSignedDataGenerator::get_UseDefiniteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::set_UseDefiniteLength(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataParser::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataParser::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataParser::.ctor(Org.BouncyCastle.Cms.CmsTypedStream,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataParser::.ctor(Org.BouncyCastle.Cms.CmsTypedStream,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataParser::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataParser::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataParser::.ctor(Org.BouncyCastle.Cms.CmsTypedStream,System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataParser::.ctor(Org.BouncyCastle.Cms.CmsTypedStream,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.CmsSignedDataParser::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.ISet`1 Org.BouncyCastle.Cms.CmsSignedDataParser::get_DigestOids()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformationStore Org.BouncyCastle.Cms.CmsSignedDataParser::GetSignerInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.CmsSignedDataParser::GetAttributeCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.CmsSignedDataParser::GetCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.CmsSignedDataParser::GetCrls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.CmsSignedDataParser::GetOtherRevInfos(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Cms.CmsSignedDataParser::get_SignedContentType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsTypedStream Org.BouncyCastle.Cms.CmsSignedDataParser::GetSignedContent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsSignedDataParser::ReplaceSigners(System.IO.Stream,Org.BouncyCastle.Cms.SignerInformationStore,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsSignedDataParser::ReplaceCertificatesAndCrls(System.IO.Stream,Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/SignerInfoGeneratorImpl::.ctor(Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/SignerInfoGeneratorImpl::.ctor(Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/SignerInfoGeneratorImpl::get_DigestAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/SignerInfoGeneratorImpl::get_GeneratedVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerInfo Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/SignerInfoGeneratorImpl::Generate(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/CmsSignedDataOutputStream::.ctor(Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator,System.IO.Stream,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerOctetStringGenerator)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/CmsSignedDataOutputStream::.ctor(Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator,System.IO.Stream,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerSequenceGenerator,Org.BouncyCastle.Asn1.BerOctetStringGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/CmsSignedDataOutputStream::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/CmsSignedDataOutputStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::SetBufferSize(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddDigests(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddDigests(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,Org.BouncyCastle.Asn1.Cms.AttributeTable,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,System.String,Org.BouncyCastle.Asn1.Cms.AttributeTable,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate,System.String,System.String,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[],System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[],System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[],System.String,Org.BouncyCastle.Asn1.Cms.AttributeTable,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[],System.String,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Byte[],System.String,System.String,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AddSignerCallback(Org.BouncyCastle.Cms.SignerInformation)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::Open(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::Open(System.IO.Stream,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::Open(System.IO.Stream,System.Boolean,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::Open(System.IO.Stream,System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::Open(System.IO.Stream,System.String,System.Boolean,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::Generate(System.IO.Stream,System.String,System.Boolean,System.IO.Stream,Org.BouncyCastle.Cms.CmsProcessable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.DefaultSignatureAlgorithmIdentifierFinder::Find(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DefaultSignatureAlgorithmIdentifierFinder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DefaultSignatureAlgorithmIdentifierFinder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.DefaultDigestAlgorithmIdentifierFinder::Find(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.DefaultDigestAlgorithmIdentifierFinder::Find(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.DefaultDigestAlgorithmIdentifierFinder::Find(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DefaultDigestAlgorithmIdentifierFinder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DefaultDigestAlgorithmIdentifierFinder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::.ctor(Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Cms.CmsSignedGenerator::GetBaseParameters(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Cms.CmsSignedGenerator::GetAttributeSet(Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::AddAttributeCertificate(Org.BouncyCastle.X509.X509V2AttributeCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::AddAttributeCertificates(Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::AddCertificate(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::AddCertificates(Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::AddCrl(Org.BouncyCastle.X509.X509Crl)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::AddCrls(Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::AddOtherRevocationInfo(Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::AddOtherRevocationInfo(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::AddOtherRevocationInfos(Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::AddOtherRevocationInfos(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::AddSigners(Org.BouncyCastle.Cms.SignerInformationStore)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder Org.BouncyCastle.Cms.CmsSignedGenerator::get_DigestAlgorithmFinder()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::set_DigestAlgorithmFinder(Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Cms.CmsSignedGenerator::GetGeneratedDigests()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.CmsSignedGenerator::get_UseDerForCerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::set_UseDerForCerts(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.CmsSignedGenerator::get_UseDerForCrls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::set_UseDerForCrls(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::AddSignerCallback(Org.BouncyCastle.Cms.SignerInformation)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerIdentifier Org.BouncyCastle.Cms.CmsSignedGenerator::GetSignerIdentifier(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerIdentifier Org.BouncyCastle.Cms.CmsSignedGenerator::GetSignerIdentifier(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedGenerator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedHelper::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedHelper::GetDigestAlgName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsSignedHelper::GetSigAlgID(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String[] Org.BouncyCastle.Cms.CmsSignedHelper::GetDigestAliases(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedHelper::GetEncryptionAlgName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Cms.CmsSignedHelper::GetDigestInstance(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISigner Org.BouncyCastle.Cms.CmsSignedHelper::GetSignatureInstance(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Cms.CmsSignedHelper::GetEncOid(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.CmsSignedHelper::GetAttributeCertificates(Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.CmsSignedHelper::GetCertificates(Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.CmsSignedHelper::GetCrls(Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.CmsSignedHelper::GetOtherRevInfos(Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Cms.CmsSignedHelper::GetSlhDsaDigestOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsStreamException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsStreamException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsStreamException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsStreamException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsStreamException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsStreamException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsStreamException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsTypedStream::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsTypedStream::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsTypedStream::.ctor(System.String,System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsTypedStream::.ctor(System.String,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsTypedStream::.ctor(System.String,System.IO.Stream,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsTypedStream::.ctor(System.String,System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsTypedStream::get_ContentType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsTypedStream::get_ContentStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsTypedStream::Drain()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsUtilities::GetByteArray(Org.BouncyCastle.Cms.CmsProcessable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.CmsUtilities::IsEC(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.CmsUtilities::IsGost(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.CmsUtilities::IsMqv(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.CmsUtilities::get_MaximumMemory()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Cms.CmsUtilities::ReadContentInfo(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Cms.CmsUtilities::ReadContentInfo(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsUtilities::StreamToByteArray(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsUtilities::StreamToByteArray(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsUtilities::AddDigestAlgorithms(Org.BouncyCastle.Cms.DigestAlgorithmsBuilder,Org.BouncyCastle.Cms.SignerInformation)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber Org.BouncyCastle.Cms.CmsUtilities::GetIssuerAndSerialNumber(Org.BouncyCastle.Asn1.X509.TbsCertificateStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber Org.BouncyCastle.Cms.CmsUtilities::GetIssuerAndSerialNumber(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber Org.BouncyCastle.Cms.CmsUtilities::GetIssuerAndSerialNumber(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerIdentifier Org.BouncyCastle.Cms.CmsUtilities::GetSignerIdentifier(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerIdentifier Org.BouncyCastle.Cms.CmsUtilities::GetSignerIdentifier(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.CmsUtilities::ParseAttributeTable(Org.BouncyCastle.Asn1.Asn1SetParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsUtilities::CollectAttributeCertificate(System.Collections.Generic.List`1,Org.BouncyCastle.X509.X509V2AttributeCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsUtilities::CollectAttributeCertificates(System.Collections.Generic.List`1,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsUtilities::CollectCertificate(System.Collections.Generic.List`1,Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsUtilities::CollectCertificates(System.Collections.Generic.List`1,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsUtilities::CollectCrl(System.Collections.Generic.List`1,Org.BouncyCastle.X509.X509Crl)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsUtilities::CollectCrls(System.Collections.Generic.List`1,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsUtilities::CollectOtherRevocationInfo(System.Collections.Generic.List`1,Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsUtilities::CollectOtherRevocationInfo(System.Collections.Generic.List`1,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsUtilities::CollectOtherRevocationInfos(System.Collections.Generic.List`1,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsUtilities::CollectOtherRevocationInfos(System.Collections.Generic.List`1,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Cms.CmsUtilities::ToAsn1Set(System.Collections.Generic.IReadOnlyCollection`1,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Cms.CmsUtilities::ToAsn1SetOptional(System.Collections.Generic.IReadOnlyCollection`1,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Cms.CmsUtilities::ToBerSet(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Cms.CmsUtilities::ToDerSet(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Cms.CmsUtilities::ToDLSet(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsUtilities::ValidateOtherRevocationInfo(Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DefaultAuthenticatedAttributeTableGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DefaultAuthenticatedAttributeTableGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DefaultAuthenticatedAttributeTableGenerator::.ctor(Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DefaultAuthenticatedAttributeTableGenerator::.ctor(Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.DefaultAuthenticatedAttributeTableGenerator::GetAttributes(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DefaultSignedAttributeTableGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DefaultSignedAttributeTableGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DefaultSignedAttributeTableGenerator::.ctor(Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DefaultSignedAttributeTableGenerator::.ctor(Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.DefaultSignedAttributeTableGenerator::GetAttributes(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DigestAlgorithmsBuilder/UniqueAlgID::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DigestAlgorithmsBuilder/UniqueAlgID::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.DigestAlgorithmsBuilder/UniqueAlgID::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.DigestAlgorithmsBuilder/UniqueAlgID::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.DigestAlgorithmsBuilder/UniqueAlgID::get_AlgID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DigestAlgorithmsBuilder::.ctor(Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DigestAlgorithmsBuilder::.ctor(Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.DigestAlgorithmsBuilder::Add(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.DigestAlgorithmsBuilder::AddExisting(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DigestAlgorithmsBuilder::AddExisting(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Cms.DigestAlgorithmsBuilder::Build(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.DigestAlgorithmsBuilder::Contains(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KekRecipientInfoGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KekRecipientInfoGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KekRecipientInfoGenerator::set_KekIdentifier(Org.BouncyCastle.Asn1.Cms.KekIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KekRecipientInfoGenerator::set_KeyEncryptionKey(Org.BouncyCastle.Crypto.Parameters.KeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KekRecipientInfoGenerator::set_KeyEncryptionKeyOID(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientInfo Org.BouncyCastle.Cms.KekRecipientInfoGenerator::Generate(Org.BouncyCastle.Crypto.Parameters.KeyParameter,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KekRecipientInformation::.ctor(Org.BouncyCastle.Asn1.Cms.KekRecipientInfo,Org.BouncyCastle.Cms.CmsSecureReadable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KekRecipientInformation::.ctor(Org.BouncyCastle.Asn1.Cms.KekRecipientInfo,Org.BouncyCastle.Cms.CmsSecureReadable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsTypedStream Org.BouncyCastle.Cms.KekRecipientInformation::GetContentStream(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::.ctor(System.Byte[],Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::.ctor(System.Byte[],Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::set_KeyAgreementOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::set_KeyEncryptionOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::set_SenderKeyPair(Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientInfo Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::Generate(Org.BouncyCastle.Crypto.Parameters.KeyParameter,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::ReadRecipientInfo(System.Collections.Generic.IList`1,Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo,Org.BouncyCastle.Cms.CmsSecureReadable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::.ctor(Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo,Org.BouncyCastle.Cms.RecipientID,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Cms.CmsSecureReadable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::.ctor(Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo,Org.BouncyCastle.Cms.RecipientID,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Cms.CmsSecureReadable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetSessionKey(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsTypedStream Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetContentStream(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::.ctor(Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Crypto.IKeyWrapper)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::.ctor(Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Crypto.IKeyWrapper)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber,Org.BouncyCastle.Crypto.IKeyWrapper)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber,Org.BouncyCastle.Crypto.IKeyWrapper)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::.ctor(System.Byte[],Org.BouncyCastle.Crypto.IKeyWrapper)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::.ctor(System.Byte[],Org.BouncyCastle.Crypto.IKeyWrapper)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientInfo Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::Generate(Org.BouncyCastle.Crypto.Parameters.KeyParameter,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyTransRecipientInformation::.ctor(Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo,Org.BouncyCastle.Cms.CmsSecureReadable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.KeyTransRecipientInformation::.ctor(Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo,Org.BouncyCastle.Cms.CmsSecureReadable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Cms.KeyTransRecipientInformation::UnwrapKey(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsTypedStream Org.BouncyCastle.Cms.KeyTransRecipientInformation::GetContentStream(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.OriginatorID::Equals(Org.BouncyCastle.Cms.OriginatorID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.OriginatorID::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.OriginatorID::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.OriginatorID::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.OriginatorID::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.OriginatorInfoGenerator::.ctor(Org.BouncyCastle.X509.X509Certificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.OriginatorInfoGenerator::.ctor(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.OriginatorInfoGenerator::.ctor(Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.OriginatorInfoGenerator::.ctor(Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.OriginatorInfoGenerator::.ctor(Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.OriginatorInfoGenerator::.ctor(Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.OriginatorInfoGenerator::.ctor(Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.OriginatorInfoGenerator::.ctor(Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1,Org.BouncyCastle.Utilities.Collections.IStore`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorInfo Org.BouncyCastle.Cms.OriginatorInfoGenerator::Generate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.OriginatorInformation::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.OriginatorInformation::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.OriginatorInformation::GetCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1 Org.BouncyCastle.Cms.OriginatorInformation::GetCrls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorInfo Org.BouncyCastle.Cms.OriginatorInformation::ToAsn1Structure()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.PasswordRecipientInfoGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.PasswordRecipientInfoGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.PasswordRecipientInfoGenerator::set_KeyDerivationAlgorithm(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.PasswordRecipientInfoGenerator::set_KeyEncryptionKey(Org.BouncyCastle.Crypto.Parameters.KeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.PasswordRecipientInfoGenerator::set_KeyEncryptionKeyOID(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientInfo Org.BouncyCastle.Cms.PasswordRecipientInfoGenerator::Generate(Org.BouncyCastle.Crypto.Parameters.KeyParameter,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.PasswordRecipientInformation::.ctor(Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo,Org.BouncyCastle.Cms.CmsSecureReadable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.PasswordRecipientInformation::.ctor(Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo,Org.BouncyCastle.Cms.CmsSecureReadable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.PasswordRecipientInformation::get_KeyDerivationAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsTypedStream Org.BouncyCastle.Cms.PasswordRecipientInformation::GetContentStream(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.Pkcs5Scheme2PbeKey::.ctor(System.Char[],System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.Pkcs5Scheme2PbeKey::.ctor(System.Char[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.Pkcs5Scheme2PbeKey::.ctor(System.Char[],Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.Pkcs5Scheme2PbeKey::.ctor(System.Char[],Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Cms.Pkcs5Scheme2PbeKey::GetEncoded(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.Pkcs5Scheme2Utf8PbeKey::.ctor(System.Char[],System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.Pkcs5Scheme2Utf8PbeKey::.ctor(System.Char[],System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.Pkcs5Scheme2Utf8PbeKey::.ctor(System.Char[],Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.Pkcs5Scheme2Utf8PbeKey::.ctor(System.Char[],Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Cms.Pkcs5Scheme2Utf8PbeKey::GetEncoded(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Cms.Pkcs7ProcessableObject::get_ContentType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Cms.Pkcs7ProcessableObject::get_Content()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.Pkcs7ProcessableObject::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.Pkcs7ProcessableObject::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.Pkcs7ProcessableObject::Write(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Cms.Pkcs7ProcessableObject::GetContent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.RecipientID::get_KeyIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.RecipientID::set_KeyIdentifier(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.RecipientID::Equals(Org.BouncyCastle.Cms.RecipientID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.RecipientID::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.RecipientID::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.RecipientID::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.RecipientID::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientInfo Org.BouncyCastle.Cms.RecipientInfoGenerator::Generate(Org.BouncyCastle.Crypto.Parameters.KeyParameter,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.RecipientInformation::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Cms.CmsSecureReadable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.RecipientInformation::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Cms.CmsSecureReadable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.RecipientInformation::GetContentAlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.RecipientID Org.BouncyCastle.Cms.RecipientInformation::get_RecipientID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.RecipientInformation::get_KeyEncryptionAlgorithmID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.RecipientInformation::get_KeyEncryptionAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Cms.RecipientInformation::get_KeyEncryptionAlgParams()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsTypedStream Org.BouncyCastle.Cms.RecipientInformation::GetContentFromSessionKey(Org.BouncyCastle.Crypto.Parameters.KeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.RecipientInformation::GetContent(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.RecipientInformation::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsTypedStream Org.BouncyCastle.Cms.RecipientInformation::GetContentStream(Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.RecipientInformationStore::.ctor(Org.BouncyCastle.Cms.RecipientInformation)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.RecipientInformationStore::.ctor(Org.BouncyCastle.Cms.RecipientInformation)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.RecipientInformationStore::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.RecipientInformationStore::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.RecipientInformation Org.BouncyCastle.Cms.RecipientInformationStore::get_Item(Org.BouncyCastle.Cms.RecipientID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.RecipientInformation Org.BouncyCastle.Cms.RecipientInformationStore::GetFirstRecipient(Org.BouncyCastle.Cms.RecipientID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.RecipientInformationStore::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Cms.RecipientInformationStore::GetRecipients()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Cms.RecipientInformationStore::GetRecipients(Org.BouncyCastle.Cms.RecipientID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Cms.RecipientInformationStore::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Cms.RecipientInformationStore::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.List`1 Org.BouncyCastle.Cms.RecipientInformationStore::get_RecipientsInternal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.SignerID::Equals(Org.BouncyCastle.Cms.SignerID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.SignerID::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.SignerID::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerID::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerID::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInfoGenerator::.ctor(Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.X509.X509Certificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInfoGenerator::.ctor(Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate Org.BouncyCastle.Cms.SignerInfoGenerator::get_Certificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.SignerInfoGenerator::get_GeneratedVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInfoGeneratorBuilder Org.BouncyCastle.Cms.SignerInfoGenerator::NewBuilder()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISignatureFactory Org.BouncyCastle.Cms.SignerInfoGenerator::get_SignatureFactory()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableGenerator Org.BouncyCastle.Cms.SignerInfoGenerator::get_SignedAttributeTableGenerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerIdentifier Org.BouncyCastle.Cms.SignerInfoGenerator::get_SignerID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableGenerator Org.BouncyCastle.Cms.SignerInfoGenerator::get_UnsignedAttributeTableGenerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInfoGeneratorBuilder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInfoGeneratorBuilder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInfoGeneratorBuilder Org.BouncyCastle.Cms.SignerInfoGeneratorBuilder::SetDirectSignature(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInfoGeneratorBuilder Org.BouncyCastle.Cms.SignerInfoGeneratorBuilder::WithSignedAttributeGenerator(Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInfoGeneratorBuilder Org.BouncyCastle.Cms.SignerInfoGeneratorBuilder::WithUnsignedAttributeGenerator(Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInfoGenerator Org.BouncyCastle.Cms.SignerInfoGeneratorBuilder::Build(Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInfoGenerator Org.BouncyCastle.Cms.SignerInfoGeneratorBuilder::Build(Org.BouncyCastle.Crypto.ISignatureFactory,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInformation/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInformation/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInformation/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Cms.SignerInformation/<>c::b__56_0(Org.BouncyCastle.Cms.SignerInformation)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInformation::.ctor(Org.BouncyCastle.Asn1.Cms.SignerInfo,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Cms.CmsProcessable,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInformation::.ctor(Org.BouncyCastle.Asn1.Cms.SignerInfo,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Cms.CmsProcessable,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInformation::.ctor(Org.BouncyCastle.Cms.SignerInformation)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.SignerInformation::get_IsCounterSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Cms.SignerInformation::get_ContentType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerID Org.BouncyCastle.Cms.SignerInformation::get_SignerID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.SignerInformation::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.SignerInformation::get_DigestAlgorithmID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.SignerInformation::get_DigestAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Cms.SignerInformation::get_DigestAlgParams()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.SignerInformation::GetContentDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.SignerInformation::get_EncryptionAlgorithmID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.SignerInformation::get_EncryptionAlgOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Cms.SignerInformation::get_EncryptionAlgParams()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.SignerInformation::get_SignatureAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.SignerInformation::get_SignedAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerInfo Org.BouncyCastle.Cms.SignerInformation::get_SignerInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerInfo Org.BouncyCastle.Cms.SignerInformation::ToSignerInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.SignerInformation::get_UnsignedAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.SignerInformation::GetSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformationStore Org.BouncyCastle.Cms.SignerInformation::GetCounterSignatures()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.SignerInformation::GetEncodedSignedAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.SignerInformation::Verify(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.SignerInformation::Verify(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformation Org.BouncyCastle.Cms.SignerInformation::ReplaceUnsignedAttributes(Org.BouncyCastle.Cms.SignerInformation,Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformation Org.BouncyCastle.Cms.SignerInformation::AddCounterSigners(Org.BouncyCastle.Cms.SignerInformation,Org.BouncyCastle.Cms.SignerInformationStore)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInformationStore::.ctor(Org.BouncyCastle.Cms.SignerInformation)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInformationStore::.ctor(Org.BouncyCastle.Cms.SignerInformation)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInformationStore::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SignerInformationStore::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformation Org.BouncyCastle.Cms.SignerInformationStore::get_Item(Org.BouncyCastle.Cms.SignerID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformation Org.BouncyCastle.Cms.SignerInformationStore::GetFirstSigner(Org.BouncyCastle.Cms.SignerID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.SignerInformationStore::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Cms.SignerInformationStore::GetSigners()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Cms.SignerInformationStore::GetSigners(Org.BouncyCastle.Cms.SignerID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Cms.SignerInformationStore::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Cms.SignerInformationStore::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.List`1 Org.BouncyCastle.Cms.SignerInformationStore::get_SignersInternal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SimpleAttributeTableGenerator::.ctor(Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.SimpleAttributeTableGenerator::.ctor(Org.BouncyCastle.Asn1.Cms.AttributeTable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Cms.SimpleAttributeTableGenerator::GetAttributes(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.CertificateConfirmationContent Org.BouncyCastle.Cmp.CertificateConfirmationContent::FromPkiBody(Org.BouncyCastle.Asn1.Cmp.PkiBody)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.CertificateConfirmationContent Org.BouncyCastle.Cmp.CertificateConfirmationContent::FromPkiBody(Org.BouncyCastle.Asn1.Cmp.PkiBody,Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cmp.CertificateConfirmationContent::IsCertificateConfirmationContent(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateConfirmationContent::.ctor(Org.BouncyCastle.Asn1.Cmp.CertConfirmContent)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateConfirmationContent::.ctor(Org.BouncyCastle.Asn1.Cmp.CertConfirmContent)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateConfirmationContent::.ctor(Org.BouncyCastle.Asn1.Cmp.CertConfirmContent,Org.BouncyCastle.Cms.DefaultDigestAlgorithmIdentifierFinder)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateConfirmationContent::.ctor(Org.BouncyCastle.Asn1.Cmp.CertConfirmContent,Org.BouncyCastle.Cms.DefaultDigestAlgorithmIdentifierFinder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateConfirmationContent::.ctor(Org.BouncyCastle.Asn1.Cmp.CertConfirmContent,Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateConfirmationContent::.ctor(Org.BouncyCastle.Asn1.Cmp.CertConfirmContent,Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertConfirmContent Org.BouncyCastle.Cmp.CertificateConfirmationContent::ToAsn1Structure()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.CertificateStatus[] Org.BouncyCastle.Cmp.CertificateConfirmationContent::GetStatusMessages()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder::.ctor(Org.BouncyCastle.Cms.DefaultDigestAlgorithmIdentifierFinder)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder::.ctor(Org.BouncyCastle.Cms.DefaultDigestAlgorithmIdentifierFinder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder::.ctor(Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder::.ctor(Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder::AddAcceptedCertificate(Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder::AddAcceptedCertificate(Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder::AddAcceptedCertificate(Org.BouncyCastle.Asn1.Cmp.CmpCertificate,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.CertificateConfirmationContent Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateStatus::.ctor(Org.BouncyCastle.Cms.DefaultDigestAlgorithmIdentifierFinder,Org.BouncyCastle.Asn1.Cmp.CertStatus)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateStatus::.ctor(Org.BouncyCastle.Cms.DefaultDigestAlgorithmIdentifierFinder,Org.BouncyCastle.Asn1.Cmp.CertStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateStatus::.ctor(Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder,Org.BouncyCastle.Asn1.Cmp.CertStatus)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CertificateStatus::.ctor(Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder,Org.BouncyCastle.Asn1.Cmp.CertStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo Org.BouncyCastle.Cmp.CertificateStatus::get_StatusInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Cmp.CertificateStatus::get_CertReqID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Cmp.CertificateStatus::get_CertRequestID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cmp.CertificateStatus::IsVerified(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cmp.CertificateStatus::IsVerified(Org.BouncyCastle.Asn1.Cmp.CmpCertificate,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CmpException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CmpException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CmpException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CmpException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CmpException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CmpException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.CmpException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cmp.CmpUtilities::CalculateCertHash(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.GeneralPkiMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessage)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.GeneralPkiMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessage)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.GeneralPkiMessage::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.GeneralPkiMessage::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeader Org.BouncyCastle.Cmp.GeneralPkiMessage::get_Header()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiBody Org.BouncyCastle.Cmp.GeneralPkiMessage::get_Body()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cmp.GeneralPkiMessage::get_HasProtection()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiMessage Org.BouncyCastle.Cmp.GeneralPkiMessage::ToAsn1Structure()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.ProtectedPkiMessage/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.ProtectedPkiMessage/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.ProtectedPkiMessage/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate Org.BouncyCastle.Cmp.ProtectedPkiMessage/<>c::b__12_0(Org.BouncyCastle.Asn1.Cmp.CmpCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.ProtectedPkiMessage::.ctor(Org.BouncyCastle.Cmp.GeneralPkiMessage)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.ProtectedPkiMessage::.ctor(Org.BouncyCastle.Cmp.GeneralPkiMessage)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.ProtectedPkiMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessage)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.ProtectedPkiMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessage)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeader Org.BouncyCastle.Cmp.ProtectedPkiMessage::get_Header()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiBody Org.BouncyCastle.Cmp.ProtectedPkiMessage::get_Body()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiMessage Org.BouncyCastle.Cmp.ProtectedPkiMessage::ToAsn1Message()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cmp.ProtectedPkiMessage::get_HasPasswordBasedMacProtected()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cmp.ProtectedPkiMessage::get_ProtectionAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate[] Org.BouncyCastle.Cmp.ProtectedPkiMessage::GetCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cmp.ProtectedPkiMessage::Verify(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cmp.ProtectedPkiMessage::Verify(Org.BouncyCastle.Crypto.IVerifierFactoryProvider)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cmp.ProtectedPkiMessage::Verify(Org.BouncyCastle.Crypto.IVerifierFactory)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cmp.ProtectedPkiMessage::Verify(Org.BouncyCastle.Crmf.PKMacBuilder,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::.ctor(System.Int32,Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::.ctor(System.Int32,Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::SetTransactionId(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::SetFreeText(Org.BouncyCastle.Asn1.Cmp.PkiFreeText)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::AddGeneralInfo(Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::SetMessageTime(System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::SetMessageTime(Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::SetRecipKID(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::SetRecipNonce(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::SetSenderKID(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::SetSenderNonce(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::SetBody(Org.BouncyCastle.Asn1.Cmp.PkiBody)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::SetBody(System.Int32,Org.BouncyCastle.Crmf.CertificateReqMessages)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::SetBody(System.Int32,Org.BouncyCastle.Crmf.CertificateRepMessage)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::SetBody(System.Int32,Org.BouncyCastle.Cmp.CertificateConfirmationContent)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::AddCmpCertificate(Org.BouncyCastle.X509.X509Certificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessage Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::Build(Org.BouncyCastle.Crypto.ISignatureFactory)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessage Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::Build(Org.BouncyCastle.Crypto.IMacFactory)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.RevocationDetails::.ctor(Org.BouncyCastle.Asn1.Cmp.RevDetails)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.RevocationDetails::.ctor(Org.BouncyCastle.Asn1.Cmp.RevDetails)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Cmp.RevocationDetails::get_Subject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Cmp.RevocationDetails::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Cmp.RevocationDetails::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevDetails Org.BouncyCastle.Cmp.RevocationDetails::ToASN1Structure()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.RevocationDetailsBuilder Org.BouncyCastle.Cmp.RevocationDetailsBuilder::SetPublicKey(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.RevocationDetailsBuilder Org.BouncyCastle.Cmp.RevocationDetailsBuilder::SetPublicKey(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.RevocationDetailsBuilder Org.BouncyCastle.Cmp.RevocationDetailsBuilder::SetSubjectPublicKeyInfo(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.RevocationDetailsBuilder Org.BouncyCastle.Cmp.RevocationDetailsBuilder::SetIssuer(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.RevocationDetailsBuilder Org.BouncyCastle.Cmp.RevocationDetailsBuilder::SetSerialNumber(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.RevocationDetailsBuilder Org.BouncyCastle.Cmp.RevocationDetailsBuilder::SetSubject(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.RevocationDetails Org.BouncyCastle.Cmp.RevocationDetailsBuilder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.RevocationDetailsBuilder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.RevocationDetailsBuilder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.AeadEncDataPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.AeadEncDataPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.AeadEncDataPacket::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.AeadAlgorithmTag,System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.AeadEncDataPacket::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.AeadAlgorithmTag,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.AeadEncDataPacket::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.AeadEncDataPacket::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.AeadAlgorithmTag Org.BouncyCastle.Bcpg.AeadEncDataPacket::get_AeadAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.AeadEncDataPacket::get_ChunkSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.AeadEncDataPacket::GetIV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.AeadEncDataPacket::GetIVLength(Org.BouncyCastle.Bcpg.AeadAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredInputStream::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredInputStream::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredInputStream::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredInputStream::.ctor(System.IO.Stream,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredInputStream::.ctor(System.IO.Stream,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.ArmoredInputStream::IsClearText()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.ArmoredInputStream::IsEndOfStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.ArmoredInputStream::GetArmorHeaderLine()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String[] Org.BouncyCastle.Bcpg.ArmoredInputStream::GetArmorHeaders()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.ArmoredInputStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.ArmoredInputStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredInputStream::SetDetectMissingCrc(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::.ctor(System.IO.Stream,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::.ctor(System.IO.Stream,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::.ctor(System.IO.Stream,System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::.ctor(System.IO.Stream,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::.ctor(System.IO.Stream,System.Collections.Generic.IDictionary`2,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::.ctor(System.IO.Stream,System.Collections.Generic.IDictionary`2,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::SetHeader(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::AddHeader(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::ResetHeaders()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::BeginClearText(Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::EndClearText()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgInputStream/PartialInputStream::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream,System.Boolean,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgInputStream/PartialInputStream::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream,System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.BcpgInputStream/PartialInputStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.BcpgInputStream/PartialInputStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.BcpgInputStream Org.BouncyCastle.Bcpg.BcpgInputStream::Wrap(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgInputStream::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.BcpgInputStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.BcpgInputStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.BcpgInputStream::ReadAll()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgInputStream::ReadFully(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgInputStream::ReadFully(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.BcpgInputStream::RequireByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.BcpgInputStream::NextPacketTag()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Packet Org.BouncyCastle.Bcpg.BcpgInputStream::ReadPacket()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.BcpgInputStream::SkipMarkerPackets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.BcpgObject::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgObject::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgObject::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.BcpgOutputStream Org.BouncyCastle.Bcpg.BcpgOutputStream::Wrap(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::.ctor(System.IO.Stream,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::.ctor(System.IO.Stream,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::.ctor(System.IO.Stream,Org.BouncyCastle.Bcpg.PacketTag)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::.ctor(System.IO.Stream,Org.BouncyCastle.Bcpg.PacketTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::.ctor(System.IO.Stream,Org.BouncyCastle.Bcpg.PacketTag,System.Int64,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::.ctor(System.IO.Stream,Org.BouncyCastle.Bcpg.PacketTag,System.Int64,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::.ctor(System.IO.Stream,Org.BouncyCastle.Bcpg.PacketTag,System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::.ctor(System.IO.Stream,Org.BouncyCastle.Bcpg.PacketTag,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::.ctor(System.IO.Stream,Org.BouncyCastle.Bcpg.PacketTag,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::.ctor(System.IO.Stream,Org.BouncyCastle.Bcpg.PacketTag,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::WriteShort(System.Int16)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::WriteInt(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::WriteLong(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::WritePacket(Org.BouncyCastle.Bcpg.ContainedPacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::WritePacket(Org.BouncyCastle.Bcpg.PacketTag,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::WritePacket(Org.BouncyCastle.Bcpg.PacketTag,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::WriteObject(Org.BouncyCastle.Bcpg.BcpgObject)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::WriteObjects(Org.BouncyCastle.Bcpg.BcpgObject[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::Flush()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::Finish()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.CompressedDataPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.CompressedDataPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.CompressionAlgorithmTag Org.BouncyCastle.Bcpg.CompressedDataPacket::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.ContainedPacket::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ContainedPacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ContainedPacket::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Crc24::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Crc24::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Crc24::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Crc24::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Crc24::Update3(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Crc24::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Crc24::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.DsaPublicBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.DsaPublicBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.DsaPublicBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.DsaPublicBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.DsaPublicBcpgKey::get_Format()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.DsaPublicBcpgKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.DsaPublicBcpgKey::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.DsaPublicBcpgKey::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.DsaPublicBcpgKey::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.DsaPublicBcpgKey::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.DsaPublicBcpgKey::get_Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.DsaSecretBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.DsaSecretBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.DsaSecretBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.DsaSecretBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.DsaSecretBcpgKey::get_Format()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.DsaSecretBcpgKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.DsaSecretBcpgKey::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.DsaSecretBcpgKey::get_X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey::get_Reserved()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey::get_SymmetricKeyAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDsaPublicBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDsaPublicBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDsaPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.EC.ECPoint)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDsaPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDsaPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDsaPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECPublicBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.EC.ECPoint)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.ECPublicBcpgKey::get_Format()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.ECPublicBcpgKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECPublicBcpgKey::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.ECPublicBcpgKey::get_EncodedPoint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Bcpg.ECPublicBcpgKey::get_CurveOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECSecretBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECSecretBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECSecretBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECSecretBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.ECSecretBcpgKey::get_Format()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.ECSecretBcpgKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECSecretBcpgKey::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.ECSecretBcpgKey::get_X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.EdDsaPublicBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.EdDsaPublicBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.EdDsaPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.EC.ECPoint)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.EdDsaPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.EdDsaPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.EdDsaPublicBcpgKey::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.EdSecretBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.EdSecretBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.EdSecretBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.EdSecretBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.EdSecretBcpgKey::get_Format()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.EdSecretBcpgKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.EdSecretBcpgKey::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.EdSecretBcpgKey::get_X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ElGamalPublicBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ElGamalPublicBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ElGamalPublicBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ElGamalPublicBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.ElGamalPublicBcpgKey::get_Format()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.ElGamalPublicBcpgKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.ElGamalPublicBcpgKey::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.ElGamalPublicBcpgKey::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.ElGamalPublicBcpgKey::get_Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ElGamalPublicBcpgKey::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ElGamalSecretBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ElGamalSecretBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ElGamalSecretBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ElGamalSecretBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.ElGamalSecretBcpgKey::get_Format()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.ElGamalSecretBcpgKey::get_X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.ElGamalSecretBcpgKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ElGamalSecretBcpgKey::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ExperimentalPacket::.ctor(Org.BouncyCastle.Bcpg.PacketTag,Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ExperimentalPacket::.ctor(Org.BouncyCastle.Bcpg.PacketTag,Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.ExperimentalPacket::get_Tag()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.ExperimentalPacket::GetContents()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ExperimentalPacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.IBcpgKey::get_Format()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.InputStreamPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.InputStreamPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.BcpgInputStream Org.BouncyCastle.Bcpg.InputStreamPacket::GetInputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.LiteralDataPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.LiteralDataPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.LiteralDataPacket::get_Format()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.LiteralDataPacket::get_ModificationTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.LiteralDataPacket::get_FileName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.LiteralDataPacket::GetRawFileName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.MarkerPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.MarkerPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.MarkerPacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ModDetectionCodePacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ModDetectionCodePacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ModDetectionCodePacket::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ModDetectionCodePacket::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.ModDetectionCodePacket::GetDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ModDetectionCodePacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.MPInteger::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.MPInteger::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.MPInteger::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.MPInteger::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.MPInteger::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.MPInteger::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.MPInteger::ToMpiBigInteger(Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OnePassSignaturePacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OnePassSignaturePacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OnePassSignaturePacket::.ctor(System.Int32,Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,System.Int64,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OnePassSignaturePacket::.ctor(System.Int32,Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,System.Int64,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OnePassSignaturePacket::get_SignatureType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.OnePassSignaturePacket::get_KeyAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.OnePassSignaturePacket::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OnePassSignaturePacket::get_KeyId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OnePassSignaturePacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Packet::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Packet::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicKeyEncSessionPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicKeyEncSessionPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicKeyEncSessionPacket::.ctor(System.Int64,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,System.Byte[][])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicKeyEncSessionPacket::.ctor(System.Int64,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,System.Byte[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.PublicKeyEncSessionPacket::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.PublicKeyEncSessionPacket::get_KeyId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyEncSessionPacket::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Bcpg.PublicKeyEncSessionPacket::GetEncSessionKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicKeyEncSessionPacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicKeyPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicKeyPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicKeyPacket::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,System.DateTime,Org.BouncyCastle.Bcpg.IBcpgKey)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicKeyPacket::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,System.DateTime,Org.BouncyCastle.Bcpg.IBcpgKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.PublicKeyPacket::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyPacket::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.PublicKeyPacket::get_ValidDays()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Bcpg.PublicKeyPacket::GetTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.IBcpgKey Org.BouncyCastle.Bcpg.PublicKeyPacket::get_Key()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.PublicKeyPacket::GetEncodedContents()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicKeyPacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicSubkeyPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicSubkeyPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicSubkeyPacket::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,System.DateTime,Org.BouncyCastle.Bcpg.IBcpgKey)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicSubkeyPacket::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,System.DateTime,Org.BouncyCastle.Bcpg.IBcpgKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.PublicSubkeyPacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RsaPublicBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RsaPublicBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RsaPublicBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RsaPublicBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.RsaPublicBcpgKey::get_PublicExponent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.RsaPublicBcpgKey::get_Modulus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.RsaPublicBcpgKey::get_Format()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.RsaPublicBcpgKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RsaPublicBcpgKey::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::get_Modulus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::get_PrivateExponent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::get_PrimeP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::get_PrimeQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::get_PrimeExponentP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::get_PrimeExponentQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::get_CrtCoefficient()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::get_Format()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RsaSecretBcpgKey::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.S2k::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.S2k::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.S2k::.ctor(Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.S2k::.ctor(Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.S2k::.ctor(Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.S2k::.ctor(Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.S2k::.ctor(Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.S2k::.ctor(Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.S2k::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.S2k::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.S2k::GetIV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.S2k::get_IterationCount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.S2k::get_ProtectionMode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.S2k::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretKeyPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretKeyPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretKeyPacket::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.S2k,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretKeyPacket::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.S2k,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretKeyPacket::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Int32,Org.BouncyCastle.Bcpg.S2k,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretKeyPacket::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Int32,Org.BouncyCastle.Bcpg.S2k,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SecretKeyPacket::get_EncAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SecretKeyPacket::get_S2kUsage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.SecretKeyPacket::GetIV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.S2k Org.BouncyCastle.Bcpg.SecretKeyPacket::get_S2k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyPacket Org.BouncyCastle.Bcpg.SecretKeyPacket::get_PublicKeyPacket()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.SecretKeyPacket::GetSecretKeyData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.SecretKeyPacket::GetEncodedContents()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretKeyPacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretSubkeyPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretSubkeyPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretSubkeyPacket::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.S2k,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretSubkeyPacket::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.S2k,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretSubkeyPacket::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Int32,Org.BouncyCastle.Bcpg.S2k,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretSubkeyPacket::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Int32,Org.BouncyCastle.Bcpg.S2k,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SecretSubkeyPacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignaturePacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignaturePacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignaturePacket::.ctor(System.Int32,System.Int64,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.SignatureSubpacket[],Org.BouncyCastle.Bcpg.SignatureSubpacket[],System.Byte[],Org.BouncyCastle.Bcpg.MPInteger[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignaturePacket::.ctor(System.Int32,System.Int64,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.SignatureSubpacket[],Org.BouncyCastle.Bcpg.SignatureSubpacket[],System.Byte[],Org.BouncyCastle.Bcpg.MPInteger[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignaturePacket::.ctor(System.Int32,System.Int32,System.Int64,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Int64,System.Byte[],Org.BouncyCastle.Bcpg.MPInteger[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignaturePacket::.ctor(System.Int32,System.Int32,System.Int64,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Int64,System.Byte[],Org.BouncyCastle.Bcpg.MPInteger[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignaturePacket::.ctor(System.Int32,System.Int32,System.Int64,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.SignatureSubpacket[],Org.BouncyCastle.Bcpg.SignatureSubpacket[],System.Byte[],Org.BouncyCastle.Bcpg.MPInteger[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignaturePacket::.ctor(System.Int32,System.Int32,System.Int64,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.SignatureSubpacket[],Org.BouncyCastle.Bcpg.SignatureSubpacket[],System.Byte[],Org.BouncyCastle.Bcpg.MPInteger[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SignaturePacket::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SignaturePacket::get_SignatureType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.SignaturePacket::get_KeyId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.SignaturePacket::GetFingerprint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.SignaturePacket::GetSignatureTrailer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.SignaturePacket::get_KeyAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.SignaturePacket::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.MPInteger[] Org.BouncyCastle.Bcpg.SignaturePacket::GetSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.SignaturePacket::GetSignatureBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacket[] Org.BouncyCastle.Bcpg.SignaturePacket::GetHashedSubPackets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacket[] Org.BouncyCastle.Bcpg.SignaturePacket::GetUnhashedSubPackets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.SignaturePacket::get_CreationTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignaturePacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignaturePacket Org.BouncyCastle.Bcpg.SignaturePacket::FromByteArray(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignatureSubpacket::.ctor(Org.BouncyCastle.Bcpg.SignatureSubpacketTag,System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignatureSubpacket::.ctor(Org.BouncyCastle.Bcpg.SignatureSubpacketTag,System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacket::get_SubpacketType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.SignatureSubpacket::IsCritical()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.SignatureSubpacket::IsLongLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.SignatureSubpacket::GetData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignatureSubpacket::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SignatureSubpacket::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.SignatureSubpacket::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignatureSubpacketsParser::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignatureSubpacketsParser::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacket Org.BouncyCastle.Bcpg.SignatureSubpacketsParser::ReadPacket()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RevocationKey::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RevocationKey::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RevocationKey::.ctor(System.Boolean,Org.BouncyCastle.Bcpg.RevocationKeyTag,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RevocationKey::.ctor(System.Boolean,Org.BouncyCastle.Bcpg.RevocationKeyTag,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationKeyTag Org.BouncyCastle.Bcpg.RevocationKey::get_SignatureClass()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.RevocationKey::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.RevocationKey::GetFingerprint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RevocationReason::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RevocationReason::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RevocationReason::.ctor(System.Boolean,Org.BouncyCastle.Bcpg.RevocationReasonTag,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.RevocationReason::.ctor(System.Boolean,Org.BouncyCastle.Bcpg.RevocationReasonTag,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReasonTag Org.BouncyCastle.Bcpg.RevocationReason::GetRevocationReason()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.RevocationReason::GetRevocationDescription()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.StreamUtilities::ReadBodyLen(System.IO.Stream,Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.StreamUtilities::RequireBodyLen(System.IO.Stream,Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.StreamUtilities::RequireByte(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.StreamUtilities::RequireBytes(System.IO.Stream,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.StreamUtilities::RequireBytes(System.IO.Stream,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Bcpg.StreamUtilities::RequireUInt16BE(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Bcpg.StreamUtilities::RequireUInt32BE(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Bcpg.StreamUtilities::RequireUInt64BE(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SymmetricEncDataPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SymmetricEncDataPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SymmetricEncIntegrityPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SymmetricEncIntegrityPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SymmetricKeyEncSessionPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SymmetricKeyEncSessionPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SymmetricKeyEncSessionPacket::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.S2k,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SymmetricKeyEncSessionPacket::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.S2k,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyEncSessionPacket::get_EncAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.S2k Org.BouncyCastle.Bcpg.SymmetricKeyEncSessionPacket::get_S2k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.SymmetricKeyEncSessionPacket::GetSecKeyData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SymmetricKeyEncSessionPacket::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SymmetricKeyEncSessionPacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.TrustPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.TrustPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.TrustPacket::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.TrustPacket::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.TrustPacket::GetLevelAndTrustAmount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.TrustPacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UnsupportedPacketVersionException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UnsupportedPacketVersionException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UnsupportedPacketVersionException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UnsupportedPacketVersionException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UnsupportedPacketVersionException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UnsupportedPacketVersionException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UnsupportedPacketVersionException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserAttributePacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserAttributePacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserAttributePacket::.ctor(Org.BouncyCastle.Bcpg.UserAttributeSubpacket[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserAttributePacket::.ctor(Org.BouncyCastle.Bcpg.UserAttributeSubpacket[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.UserAttributeSubpacket[] Org.BouncyCastle.Bcpg.UserAttributePacket::GetSubpackets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserAttributePacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserAttributeSubpacket::.ctor(Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserAttributeSubpacket::.ctor(Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserAttributeSubpacket::.ctor(Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserAttributeSubpacket::.ctor(Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag Org.BouncyCastle.Bcpg.UserAttributeSubpacket::get_SubpacketType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.UserAttributeSubpacket::GetData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserAttributeSubpacket::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.UserAttributeSubpacket::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.UserAttributeSubpacket::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserAttributeSubpacketsParser::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserAttributeSubpacketsParser::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.UserAttributeSubpacket Org.BouncyCastle.Bcpg.UserAttributeSubpacketsParser::ReadPacket()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserIdPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserIdPacket::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserIdPacket::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserIdPacket::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserIdPacket::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserIdPacket::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.UserIdPacket::GetId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.UserIdPacket::GetRawId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.UserIdPacket::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.UserIdPacket::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.UserIdPacket::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.EdDsaSigner::.ctor(Org.BouncyCastle.Crypto.ISigner,Org.BouncyCastle.Crypto.IDigest)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.EdDsaSigner::.ctor(Org.BouncyCastle.Crypto.ISigner,Org.BouncyCastle.Crypto.IDigest)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.OpenPgp.EdDsaSigner::get_AlgorithmName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.EdDsaSigner::Init(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.EdDsaSigner::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.EdDsaSigner::BlockUpdate(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.EdDsaSigner::GetMaxSignatureSize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.EdDsaSigner::GenerateSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.EdDsaSigner::VerifySignature(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.EdDsaSigner::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.IStreamGenerator::Close()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedData::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedData::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.CompressionAlgorithmTag Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedData::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedData::GetInputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedData::GetDataStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.CompressionAlgorithmTag)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.CompressionAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.CompressionAlgorithmTag,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.CompressionAlgorithmTag,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedDataGenerator::Open(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedDataGenerator::Open(System.IO.Stream,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedDataGenerator::Close()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpDataValidationException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpDataValidationException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpDataValidationException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpDataValidationException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpDataValidationException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpDataValidationException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpDataValidationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData/TruncatedStream::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData/TruncatedStream::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData/TruncatedStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData/TruncatedStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData/TruncatedStream::GetLookAhead()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData::.ctor(Org.BouncyCastle.Bcpg.InputStreamPacket)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData::.ctor(Org.BouncyCastle.Bcpg.InputStreamPacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData::GetInputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData::IsIntegrityProtected()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData::Verify()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/EncMethod::AddSessionInfo(System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/EncMethod::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PbeMethod::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.S2k,Org.BouncyCastle.Crypto.Parameters.KeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PbeMethod::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.S2k,Org.BouncyCastle.Crypto.Parameters.KeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PbeMethod::GetKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PbeMethod::AddSessionInfo(System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PbeMethod::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PubMethod::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PubMethod::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PubMethod::AddSessionInfo(System.Byte[],Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PubMethod::Encode(Org.BouncyCastle.Bcpg.BcpgOutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Boolean,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Boolean,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Security.SecureRandom,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Security.SecureRandom,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::AddMethod(System.Char[],Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::AddMethodUtf8(System.Char[],Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::AddMethodRaw(System.Byte[],Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::DoAddMethod(System.Byte[],System.Boolean,Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::AddMethod(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::AddMethod(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::Open(System.IO.Stream,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::Open(System.IO.Stream,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::Close()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataList::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataList::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataList::get_Item(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataList::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataList::get_IsEmpty()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataList::GetEncryptedDataObjects()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpExperimental::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpExperimental::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKdfParameters::.ctor(Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKdfParameters::.ctor(Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.OpenPgp.PgpKdfParameters::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.OpenPgp.PgpKdfParameters::get_SymmetricWrapAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyFlags::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair,System.DateTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair,System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.DateTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair::get_KeyId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair::get_PrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRing::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRing::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.TrustPacket Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRing::ReadOptionalTrustPacket(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRing::ReadSignaturesAndTrust(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRing::ReadUserIDs(Org.BouncyCastle.Bcpg.BcpgInputStream,System.Collections.Generic.IList`1&,System.Collections.Generic.IList`1&,System.Collections.Generic.IList`1>&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Boolean,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Boolean,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Byte[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Byte[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Boolean,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Boolean,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::AddSubKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::AddSubKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::AddSubKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::AddSubKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::AddSubKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::AddSubKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::GenerateSecretKeyRing()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator::GeneratePublicKeyRing()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyValidationException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyValidationException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyValidationException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyValidationException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyValidationException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyValidationException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyValidationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralData::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralData::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralData::get_Format()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralData::get_FileName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralData::GetRawFileName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralData::get_ModificationTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralData::GetInputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralData::GetDataStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator::.ctor(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator::.ctor(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator::Open(System.IO.Stream,System.Char,System.String,System.Int64,System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator::Open(System.IO.Stream,System.Char,System.String,System.DateTime,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator::Open(System.IO.Stream,System.Char,System.IO.FileInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator::Close()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpMarker::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpMarker::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpObject::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpObject::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpObjectFactory::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpObjectFactory::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpObjectFactory::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpObjectFactory::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpObject Org.BouncyCastle.Bcpg.OpenPgp.PgpObjectFactory::NextPgpObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpObjectFactory::AllPgpObjects()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpObjectFactory::FilterPgpObjects()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::.ctor(Org.BouncyCastle.Bcpg.OnePassSignaturePacket)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::.ctor(Org.BouncyCastle.Bcpg.OnePassSignaturePacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::InitVerify(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::Update(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::Update(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::Verify(Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::get_KeyId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::get_SignatureType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::get_KeyAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignatureList::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignatureList::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignatureList::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignatureList::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignatureList::get_Item(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignatureList::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignatureList::get_IsEmpty()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPad::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpPad::PadSessionData(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpPad::PadSessionData(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpPad::UnpadSessionData(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPbeEncryptedData::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyEncSessionPacket,Org.BouncyCastle.Bcpg.InputStreamPacket)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPbeEncryptedData::.ctor(Org.BouncyCastle.Bcpg.SymmetricKeyEncSessionPacket,Org.BouncyCastle.Bcpg.InputStreamPacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpPbeEncryptedData::GetInputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpPbeEncryptedData::GetDataStream(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpPbeEncryptedData::GetDataStreamUtf8(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpPbeEncryptedData::GetDataStreamRaw(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpPbeEncryptedData::DoGetDataStream(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey::.ctor(System.Int64,Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey::.ctor(System.Int64,Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey::get_KeyId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyPacket Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey::get_PublicKeyPacket()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey::get_Key()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::CalculateFingerprint(Org.BouncyCastle.Bcpg.PublicKeyPacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.DateTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Bcpg.TrustPacket,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Bcpg.TrustPacket,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.TrustPacket,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.TrustPacket,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Bcpg.TrustPacket,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1>)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Bcpg.TrustPacket,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1>)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.PublicKeyPacket,System.Collections.Generic.IList`1,System.Collections.Generic.IList`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.TrustPacket,System.Collections.Generic.List`1,System.Collections.Generic.List`1,System.Collections.Generic.List`1,System.Collections.Generic.IList`1>)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.TrustPacket,System.Collections.Generic.List`1,System.Collections.Generic.List`1,System.Collections.Generic.List`1,System.Collections.Generic.IList`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::get_CreationTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetTrustData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetValidSeconds()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::get_KeyId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetFingerprint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::HasFingerprint(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::get_IsEncryptionKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::get_IsMasterKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::get_BitStrength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetUserIds()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetRawUserIds()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetUserAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetSignaturesForId(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetSignaturesForId(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetSignaturesForKeyID(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetSignaturesForUserAttribute(Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetSignaturesOfType(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetSignatures()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetKeySignatures()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyPacket Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::get_PublicKeyPacket()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::Encode(System.IO.Stream,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::IsRevoked()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::AddCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,System.String,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::AddCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::RemoveCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::RemoveCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::RemoveCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::RemoveCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,System.Byte[],Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::RemoveCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,System.String,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::RemoveCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::AddCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::RemoveCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::Join(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyEncryptedData::.ctor(Org.BouncyCastle.Bcpg.PublicKeyEncSessionPacket,Org.BouncyCastle.Bcpg.InputStreamPacket)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyEncryptedData::.ctor(Org.BouncyCastle.Bcpg.PublicKeyEncSessionPacket,Org.BouncyCastle.Bcpg.InputStreamPacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyEncryptedData::get_KeyId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyEncryptedData::GetSymmetricAlgorithm(Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyEncryptedData::GetDataStream(Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::.ctor(System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::.ctor(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::GetPublicKey(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::GetPublicKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::GetPublicKeys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::InsertPublicKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::RemovePublicKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyPacket Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::ReadPublicKeyPacket(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::ReadSubkey(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::Join(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing::Join(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::.ctor(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::GetKeyRings()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::GetKeyRings(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::GetKeyRings(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::GetKeyRings(System.String,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::GetPublicKey(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::GetPublicKeyRing(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::GetPublicKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::GetPublicKeyRing(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::Contains(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::AddPublicKeyRing(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::RemovePublicKeyRing(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(Org.BouncyCastle.Bcpg.SecretKeyPacket,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(Org.BouncyCastle.Bcpg.SecretKeyPacket,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Byte[],System.Boolean,System.Boolean,Org.BouncyCastle.Security.SecureRandom,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Byte[],System.Boolean,System.Boolean,Org.BouncyCastle.Security.SecureRandom,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Boolean,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Boolean,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Byte[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Byte[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Byte[],System.Boolean,System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Byte[],System.Boolean,System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Boolean,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Boolean,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[],System.Boolean,System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[],System.Boolean,System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.DateTime,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Char[],Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.DateTime,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Char[],Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.DateTime,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::.ctor(System.Int32,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.DateTime,System.String,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Char[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::get_IsSigningKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::get_IsMasterKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::get_IsPrivateKeyEmpty()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::get_KeyEncryptionAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::get_KeyId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::GetFingerprint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::get_S2kUsage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.S2k Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::get_S2k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::get_UserIds()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::get_UserAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::ExtractPrivateKey(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::ExtractPrivateKeyUtf8(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::ExtractPrivateKeyRaw(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::DoExtractPrivateKey(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::CopyWithNewPassword(Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey,System.Char[],System.Char[],Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::CopyWithNewPasswordUtf8(Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey,System.Char[],System.Char[],Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::CopyWithNewPasswordRaw(Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey,System.Byte[],System.Byte[],Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::DoCopyWithNewPassword(Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey,System.Byte[],System.Byte[],System.Boolean,Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::ReplacePublicKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::ParseSecretKeyFromSExpr(System.IO.Stream,System.Char[],Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::ParseSecretKeyFromSExprUtf8(System.IO.Stream,System.Char[],Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::ParseSecretKeyFromSExprRaw(System.IO.Stream,System.Byte[],Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::DoParseSecretKeyFromSExpr(System.IO.Stream,System.Byte[],System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::ParseSecretKeyFromSExpr(System.IO.Stream,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::ParseSecretKeyFromSExprUtf8(System.IO.Stream,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::ParseSecretKeyFromSExprRaw(System.IO.Stream,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::DoParseSecretKeyFromSExpr(System.IO.Stream,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::.ctor(System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::.ctor(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::GetPublicKey(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::GetPublicKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::GetKeysWithSignaturesBy(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::GetPublicKeys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::GetSecretKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::GetSecretKeys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::GetSecretKey(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::GetSecretKey(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::GetExtraPublicKeys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::ReplacePublicKeys(Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::CopyWithNewPassword(Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing,System.Char[],System.Char[],Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::InsertSecretKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing,Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing::RemoveSecretKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing,Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::.ctor(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::GetKeyRings()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::GetKeyRings(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::GetKeyRings(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::GetKeyRings(System.String,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::GetSecretKey(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::GetSecretKeyRing(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::Contains(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::AddSecretKeyRing(Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle,Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::RemoveSecretKeyRing(Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle,Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::.ctor(Org.BouncyCastle.Bcpg.BcpgInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::.ctor(Org.BouncyCastle.Bcpg.SignaturePacket)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::.ctor(Org.BouncyCastle.Bcpg.SignaturePacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::.ctor(Org.BouncyCastle.Bcpg.SignaturePacket,Org.BouncyCastle.Bcpg.TrustPacket)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::.ctor(Org.BouncyCastle.Bcpg.SignaturePacket,Org.BouncyCastle.Bcpg.TrustPacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::get_KeyAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::GetDigestPrefix()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::IsCertification()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::InitVerify(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::Update(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::Update(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::Verify()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::VerifyCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::VerifyCertification(System.String,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::VerifyCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::VerifyCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::get_SignatureType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::get_KeyId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::get_CreationTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::GetSignatureTrailer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::get_HasSubpackets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::GetHashedSubPackets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::GetUnhashedSubPackets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::GetSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::Encode(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::Encode(System.IO.Stream,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::IsCertification(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::IsSignatureEncodingEqual(Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::Join(Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::InitSign(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::InitSign(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::Update(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::Update(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::SetHashedSubpackets(Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::SetUnhashedSubpackets(Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::GenerateOnePassVersion(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::Generate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::GenerateCertification(System.String,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::GenerateCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::GenerateCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::GenerateCertification(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureList::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureList::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureList::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureList::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureList::get_Item(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureList::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureList::get_IsEmpty()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator/<>c__DisplayClass34_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator/<>c__DisplayClass34_0::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator/<>c__DisplayClass34_0::b__0(Org.BouncyCastle.Bcpg.SignatureSubpacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator/<>c__DisplayClass35_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator/<>c__DisplayClass35_0::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator/<>c__DisplayClass35_0::b__0(Org.BouncyCastle.Bcpg.SignatureSubpacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetRevocable(System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetExportable(System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetFeature(System.Boolean,System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetTrust(System.Boolean,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetKeyExpirationTime(System.Boolean,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetSignatureExpirationTime(System.Boolean,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetSignatureCreationTime(System.Boolean,System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetPreferredHashAlgorithms(System.Boolean,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetPreferredSymmetricAlgorithms(System.Boolean,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetPreferredCompressionAlgorithms(System.Boolean,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetPreferredAeadAlgorithms(System.Boolean,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::AddPolicyUrl(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetKeyFlags(System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetSignerUserId(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::AddSignerUserId(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetSignerUserId(System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetEmbeddedSignature(System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::AddEmbeddedSignature(System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetPrimaryUserId(System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetNotationData(System.Boolean,System.Boolean,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::AddNotationData(System.Boolean,System.Boolean,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetRevocationReason(System.Boolean,Org.BouncyCastle.Bcpg.RevocationReasonTag,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetRevocationKey(System.Boolean,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::AddRevocationKey(System.Boolean,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetIssuerKeyID(System.Boolean,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetSignatureTarget(System.Boolean,System.Int32,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetIssuerFingerprint(System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::SetIssuerFingerprint(System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::AddIntendedRecipientFingerprint(System.Boolean,Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::AddCustomSubpacket(Org.BouncyCastle.Bcpg.SignatureSubpacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::RemovePacket(Org.BouncyCastle.Bcpg.SignatureSubpacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::HasSubpacket(Org.BouncyCastle.Bcpg.SignatureSubpacketTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacket[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::GetSubpackets(Org.BouncyCastle.Bcpg.SignatureSubpacketTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator::Generate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::FromSubpackets(Org.BouncyCastle.Bcpg.SignatureSubpacket[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::.ctor(Org.BouncyCastle.Bcpg.SignatureSubpacket[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::.ctor(Org.BouncyCastle.Bcpg.SignatureSubpacket[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacket Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetSubpacket(Org.BouncyCastle.Bcpg.SignatureSubpacketTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::HasSubpacket(Org.BouncyCastle.Bcpg.SignatureSubpacketTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacket[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetSubpackets(Org.BouncyCastle.Bcpg.SignatureSubpacketTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureList Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetEmbeddedSignatures()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.NotationData[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetNotationDataOccurrences()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.NotationData[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetNotationDataOccurrences(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetIssuerKeyId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::HasSignatureCreationTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetSignatureCreationTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::HasSignatureExpirationTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetSignatureExpirationTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetKeyExpirationTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetPreferredHashAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetPreferredSymmetricAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetPreferredCompressionAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetPreferredAeadAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetKeyFlags()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetSignerUserId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::IsPrimaryUserId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetCriticalTags()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.SignatureTarget Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetSignatureTarget()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.Features Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetFeatures()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.IssuerFingerprint Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetIssuerFingerprint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.IntendedRecipientFingerprint Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetIntendedRecipientFingerprint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.IntendedRecipientFingerprint[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetIntendedRecipientFingerprints()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.Exportable Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetExportable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::IsExportable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.PolicyUrl Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetPolicyUrl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.PolicyUrl[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetPolicyUrls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.RegularExpression Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetRegularExpression()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.RegularExpression[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetRegularExpressions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.Revocable Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetRevocable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::IsRevocable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationKey[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetRevocationKeys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReason Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetRevocationReason()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.TrustSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::GetTrust()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacket[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::ToSubpacketArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacket[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector::ToArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector::FromSubpackets(Org.BouncyCastle.Bcpg.UserAttributeSubpacket[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector::.ctor(Org.BouncyCastle.Bcpg.UserAttributeSubpacket[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector::.ctor(Org.BouncyCastle.Bcpg.UserAttributeSubpacket[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.UserAttributeSubpacket Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector::GetSubpacket(Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Attr.ImageAttrib Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector::GetImageAttribute()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.UserAttributeSubpacket[] Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector::ToSubpacketArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVectorGenerator::SetImageAttribute(Org.BouncyCastle.Bcpg.Attr.ImageAttrib/Format,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVectorGenerator::Generate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVectorGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVectorGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.MPInteger[] Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::DsaSigToMpi(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.MPInteger[] Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::RsaSigToMpi(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::GetDigestName(Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::GetDigestIDForName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::GetCurveName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::GetSignatureName(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::GetSymmetricCipherName(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::GetKeySize(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::MakeKey(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::MakeRandomKey(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::EncodePassPhrase(System.Char[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::MakeKeyFromPassPhrase(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.S2k,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::MakeKeyFromPassPhraseUtf8(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.S2k,System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::MakeKeyFromPassPhraseRaw(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.S2k,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::DoMakeKeyFromPassPhrase(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.S2k,System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::WriteFileToLiteralData(System.IO.Stream,System.Char,System.IO.FileInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::WriteFileToLiteralData(System.IO.Stream,System.Char,System.IO.FileInfo,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::GetDecoderStream(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::CreateDigest(Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISigner Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::CreateSigner(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IWrapper Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::CreateWrapper(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::GenerateIV(System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.S2k Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::GenerateS2k(Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Int32,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpV3SignatureGenerator::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpV3SignatureGenerator::.ctor(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpV3SignatureGenerator::InitSign(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpV3SignatureGenerator::InitSign(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey,Org.BouncyCastle.Security.SecureRandom)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpV3SignatureGenerator::Update(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpV3SignatureGenerator::Update(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpV3SignatureGenerator::Update(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpV3SignatureGenerator::GenerateOnePassVersion(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpV3SignatureGenerator::Generate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.Rfc6637Utilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.OpenPgp.Rfc6637Utilities::GetAgreementAlgorithm(Org.BouncyCastle.Bcpg.PublicKeyPacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Bcpg.OpenPgp.Rfc6637Utilities::GetKeyEncryptionOID(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.Rfc6637Utilities::GetKeyLength(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.Rfc6637Utilities::CreateKey(Org.BouncyCastle.Bcpg.PublicKeyPacket,Org.BouncyCastle.Math.EC.ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.Rfc6637Utilities::CreateKey(Org.BouncyCastle.Bcpg.PublicKeyPacket,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.Rfc6637Utilities::CreateUserKeyingMaterial(Org.BouncyCastle.Bcpg.PublicKeyPacket)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.Rfc6637Utilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.SXprUtilities/MyS2k::.ctor(Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[],System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.SXprUtilities/MyS2k::.ctor(Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[],System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OpenPgp.SXprUtilities/MyS2k::get_IterationCount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.SXprUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.OpenPgp.SXprUtilities::ReadString(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.SXprUtilities::ReadBytes(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.S2k Org.BouncyCastle.Bcpg.OpenPgp.SXprUtilities::ParseS2k(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.SXprUtilities::SkipOpenParenthesis(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.SXprUtilities::SkipCloseParenthesis(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.WrappedGeneratorStream::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.IStreamGenerator,System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.WrappedGeneratorStream::.ctor(Org.BouncyCastle.Bcpg.OpenPgp.IStreamGenerator,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.EmbeddedSignature::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.EmbeddedSignature::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Exportable::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Exportable::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Exportable::.ctor(System.Boolean,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Exportable::.ctor(System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.Sig.Exportable::IsExportable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Features::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Features::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Features::.ctor(System.Boolean,System.Byte)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Features::.ctor(System.Boolean,System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Features::.ctor(System.Boolean,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Features::.ctor(System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.Sig.Features::get_SupportsModificationDetection()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.Sig.Features::SupportsFeature(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Features::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.IntendedRecipientFingerprint::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.IntendedRecipientFingerprint::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.IntendedRecipientFingerprint::.ctor(System.Boolean,System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.IntendedRecipientFingerprint::.ctor(System.Boolean,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.IntendedRecipientFingerprint::get_KeyVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.IntendedRecipientFingerprint::GetFingerprint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.IssuerFingerprint::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.IssuerFingerprint::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.IssuerFingerprint::.ctor(System.Boolean,System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.IssuerFingerprint::.ctor(System.Boolean,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.IssuerFingerprint::get_KeyVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.IssuerFingerprint::GetFingerprint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.IssuerKeyId::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.IssuerKeyId::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.IssuerKeyId::.ctor(System.Boolean,System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.IssuerKeyId::.ctor(System.Boolean,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.Sig.IssuerKeyId::get_KeyId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.KeyExpirationTime::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.KeyExpirationTime::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.KeyExpirationTime::.ctor(System.Boolean,System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.KeyExpirationTime::.ctor(System.Boolean,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.Sig.KeyExpirationTime::get_Time()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.KeyFlags::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.KeyFlags::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.KeyFlags::.ctor(System.Boolean,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.KeyFlags::.ctor(System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.KeyFlags::get_Flags()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.NotationData::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.NotationData::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.NotationData::.ctor(System.Boolean,System.Boolean,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.NotationData::.ctor(System.Boolean,System.Boolean,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.Sig.NotationData::get_IsHumanReadable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.Sig.NotationData::GetNotationName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.Sig.NotationData::GetNotationValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.NotationData::GetNotationValueBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.PolicyUrl::.ctor(System.Boolean,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.PolicyUrl::.ctor(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.PolicyUrl::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.PolicyUrl::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.Sig.PolicyUrl::get_Url()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.PolicyUrl::GetRawUrl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.PreferredAlgorithms::.ctor(Org.BouncyCastle.Bcpg.SignatureSubpacketTag,System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.PreferredAlgorithms::.ctor(Org.BouncyCastle.Bcpg.SignatureSubpacketTag,System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.PreferredAlgorithms::.ctor(Org.BouncyCastle.Bcpg.SignatureSubpacketTag,System.Boolean,System.Int32[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.PreferredAlgorithms::.ctor(Org.BouncyCastle.Bcpg.SignatureSubpacketTag,System.Boolean,System.Int32[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Bcpg.Sig.PreferredAlgorithms::GetPreferences()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.PrimaryUserId::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.PrimaryUserId::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.PrimaryUserId::.ctor(System.Boolean,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.PrimaryUserId::.ctor(System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.Sig.PrimaryUserId::IsPrimaryUserId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.RegularExpression::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.RegularExpression::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.RegularExpression::.ctor(System.Boolean,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.RegularExpression::.ctor(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.Sig.RegularExpression::get_Regex()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.RegularExpression::GetRawRegex()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Revocable::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Revocable::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Revocable::.ctor(System.Boolean,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.Revocable::.ctor(System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.Sig.Revocable::IsRevocable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignatureCreationTime::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignatureCreationTime::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignatureCreationTime::.ctor(System.Boolean,System.DateTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignatureCreationTime::.ctor(System.Boolean,System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Bcpg.Sig.SignatureCreationTime::GetTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignatureExpirationTime::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignatureExpirationTime::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignatureExpirationTime::.ctor(System.Boolean,System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignatureExpirationTime::.ctor(System.Boolean,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.Sig.SignatureExpirationTime::get_Time()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignatureTarget::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignatureTarget::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignatureTarget::.ctor(System.Boolean,System.Int32,System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignatureTarget::.ctor(System.Boolean,System.Int32,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.SignatureTarget::get_PublicKeyAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.SignatureTarget::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.SignatureTarget::GetHashData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignerUserId::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignerUserId::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignerUserId::.ctor(System.Boolean,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.SignerUserId::.ctor(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.Sig.SignerUserId::GetId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.SignerUserId::GetRawId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.TrustSignature::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.TrustSignature::.ctor(System.Boolean,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.TrustSignature::.ctor(System.Boolean,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Sig.TrustSignature::.ctor(System.Boolean,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.TrustSignature::get_Depth()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.TrustSignature::get_TrustAmount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.Sig.Utilities::BooleanFromBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.Utilities::BooleanToBytes(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Bcpg.Sig.Utilities::TimeFromBytes(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.Utilities::TimeToBytes(System.UInt32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Attr.ImageAttrib::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Attr.ImageAttrib::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Attr.ImageAttrib::.ctor(System.Boolean,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Attr.ImageAttrib::.ctor(System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Attr.ImageAttrib::.ctor(Org.BouncyCastle.Bcpg.Attr.ImageAttrib/Format,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Attr.ImageAttrib::.ctor(Org.BouncyCastle.Bcpg.Attr.ImageAttrib/Format,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Attr.ImageAttrib::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Attr.ImageAttrib::get_Encoding()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Attr.ImageAttrib::GetImageData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.Attr.ImageAttrib::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.Asn1BitStringParser::GetBitStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.Asn1BitStringParser::GetOctetStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1BitStringParser::get_PadBits()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Encodable::EncodeTo(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Encodable::EncodeTo(System.IO.Stream,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Asn1Encodable::GetEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Asn1Encodable::GetEncoded(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Asn1Encodable::GetEncoded(System.String,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Asn1Encodable::GetDerEncoded()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Encodable::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Encodable::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Encodable::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Encodable::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector/d__36::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector/d__36::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1EncodableVector/d__36::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1EncodableVector Org.BouncyCastle.Asn1.Asn1EncodableVector::FromCollection(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1EncodableVector Org.BouncyCastle.Asn1.Asn1EncodableVector::FromElement(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1EncodableVector Org.BouncyCastle.Asn1.Asn1EncodableVector::FromEnumerable(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::Add(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::Add(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::Add(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::AddOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::AddOptional(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::AddOptional(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::AddOptionalTagged(System.Boolean,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::AddOptionalTagged(System.Boolean,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::AddAll(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::AddAll(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::AddAll(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1EncodableVector::get_Item(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1EncodableVector::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Asn1.Asn1EncodableVector::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Asn1.Asn1EncodableVector::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable[] Org.BouncyCastle.Asn1.Asn1EncodableVector::CopyElements()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable[] Org.BouncyCastle.Asn1.Asn1EncodableVector::TakeElements()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable[] Org.BouncyCastle.Asn1.Asn1EncodableVector::CloneElements(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Exception::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Exception::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Exception::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Exception::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Exception::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Exception::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1GeneralizedTime/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1GeneralizedTime/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1GeneralizedTime/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Asn1GeneralizedTime::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Asn1GeneralizedTime::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Asn1GeneralizedTime::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Asn1GeneralizedTime::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1GeneralizedTime::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1GeneralizedTime::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1GeneralizedTime::.ctor(System.DateTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1GeneralizedTime::.ctor(System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1GeneralizedTime::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1GeneralizedTime::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1GeneralizedTime::get_TimeString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Asn1GeneralizedTime::ToDateTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Asn1GeneralizedTime::GetContents(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.Asn1GeneralizedTime::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.Asn1GeneralizedTime::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.Asn1GeneralizedTime::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.Asn1GeneralizedTime::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Asn1GeneralizedTime::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Generator::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Generator::AddObject(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Generator::AddObject(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.Asn1Generator::GetRawOutputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Generator::Dispose()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1InputStream::FindLimit(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1InputStream::GetMemoryStreamLimit(System.IO.MemoryStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::.ctor(System.IO.MemoryStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::.ctor(System.IO.MemoryStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::.ctor(System.IO.Stream,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::.ctor(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::.ctor(System.IO.Stream,System.Int32,System.Boolean,System.Byte[][])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::.ctor(System.IO.Stream,System.Int32,System.Boolean,System.Byte[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1InputStream::ReadTaggedObjectDL(System.Int32,System.Int32,System.Boolean,Org.BouncyCastle.Asn1.DefiniteLengthInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1InputStream::ReadObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1InputStream::ReadTagNumber(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1InputStream::ReadLength(System.IO.Stream,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1InputStream::CreatePrimitiveDerObject(System.Int32,Org.BouncyCastle.Asn1.DefiniteLengthInputStream,System.Byte[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Null/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Null/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Null/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Null Org.BouncyCastle.Asn1.Asn1Null::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Null Org.BouncyCastle.Asn1.Asn1Null::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Null Org.BouncyCastle.Asn1.Asn1Null::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Null Org.BouncyCastle.Asn1.Asn1Null::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Null::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Null::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Null::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Null Org.BouncyCastle.Asn1.Asn1Null::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Object::EncodeTo(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Object::EncodeTo(System.IO.Stream,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Asn1Object::GetEncoded(System.String,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Object::Equals(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Object::FromByteArray(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Object::FromMemoryStream(System.IO.MemoryStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Object::FromStream(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Object::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.Asn1Object::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.Asn1Object::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.Asn1Object::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.Asn1Object::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Object::CallAsn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Object::CallAsn1GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Object::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1ObjectDescriptor/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1ObjectDescriptor/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1ObjectDescriptor/Meta::FromImplicitConstructed(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1ObjectDescriptor/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1ObjectDescriptor Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1ObjectDescriptor Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1ObjectDescriptor Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1ObjectDescriptor Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::.ctor(Org.BouncyCastle.Asn1.DerGraphicString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::.ctor(Org.BouncyCastle.Asn1.DerGraphicString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGraphicString Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::get_BaseGraphicString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1ObjectDescriptor Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OctetString/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1OctetString/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1OctetString/Meta::FromImplicitConstructed(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OctetString/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Asn1OctetString::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Asn1OctetString::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Asn1OctetString::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Asn1OctetString::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OctetString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OctetString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.Asn1OctetString::GetOctetStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetStringParser Org.BouncyCastle.Asn1.Asn1OctetString::get_Parser()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Asn1OctetString::GetOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1OctetString::GetOctetsLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1OctetString::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Asn1OctetString::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OctetString::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.Asn1OctetStringParser::GetOctetStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OutputStream Org.BouncyCastle.Asn1.Asn1OutputStream::Create(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OutputStream Org.BouncyCastle.Asn1.Asn1OutputStream::Create(System.IO.Stream,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OutputStream Org.BouncyCastle.Asn1.Asn1OutputStream::Create(System.IO.Stream,System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OutputStream Org.BouncyCastle.Asn1.Asn1OutputStream::Create(System.Byte[],System.Int32,System.Int32,System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1OutputStream::GetEncodingType(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OutputStream::.ctor(System.IO.Stream,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OutputStream::.ctor(System.IO.Stream,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OutputStream::WriteObject(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OutputStream::WriteObject(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OutputStream::EncodeContents(Org.BouncyCastle.Asn1.IAsn1Encoding[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1OutputStream::get_Encoding()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OutputStream::WriteDL(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OutputStream::WriteIdentifier(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding[] Org.BouncyCastle.Asn1.Asn1OutputStream::GetContentsEncodings(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding[] Org.BouncyCastle.Asn1.Asn1OutputStream::GetContentsEncodingsDer(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1OutputStream::GetLengthOfContents(Org.BouncyCastle.Asn1.IAsn1Encoding[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1OutputStream::GetLengthOfDL(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1OutputStream::GetLengthOfEncodingDL(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1OutputStream::GetLengthOfEncodingIL(System.Int32,Org.BouncyCastle.Asn1.IAsn1Encoding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1OutputStream::GetLengthOfEncodingIL(System.Int32,Org.BouncyCastle.Asn1.IAsn1Encoding[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1OutputStream::GetLengthOfIdentifier(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1ParsingException::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1ParsingException::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1ParsingException::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1ParsingException::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1ParsingException::.ctor(System.String,System.Exception)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1ParsingException::.ctor(System.String,System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1ParsingException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1RelativeOid/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1RelativeOid/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1RelativeOid/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1RelativeOid Org.BouncyCastle.Asn1.Asn1RelativeOid::FromContents(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1RelativeOid Org.BouncyCastle.Asn1.Asn1RelativeOid::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1RelativeOid Org.BouncyCastle.Asn1.Asn1RelativeOid::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1RelativeOid Org.BouncyCastle.Asn1.Asn1RelativeOid::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1RelativeOid Org.BouncyCastle.Asn1.Asn1RelativeOid::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1RelativeOid::TryFromID(System.String,Org.BouncyCastle.Asn1.Asn1RelativeOid&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1RelativeOid::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1RelativeOid::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1RelativeOid::.ctor(System.Byte[],System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1RelativeOid Org.BouncyCastle.Asn1.Asn1RelativeOid::Branch(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1RelativeOid::GetID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1RelativeOid::get_Id()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1RelativeOid::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.Asn1RelativeOid::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.Asn1RelativeOid::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.Asn1RelativeOid::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.Asn1RelativeOid::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1RelativeOid::CheckContentsLength(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1RelativeOid::CheckIdentifier(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1RelativeOid Org.BouncyCastle.Asn1.Asn1RelativeOid::CreatePrimitive(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1RelativeOid::IsValidContents(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1RelativeOid::IsValidIdentifier(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1RelativeOid::ParseContents(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Asn1RelativeOid::ParseIdentifier(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1RelativeOid::WriteField(System.IO.Stream,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1RelativeOid::WriteField(System.IO.Stream,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1RelativeOid::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Sequence/Meta::FromImplicitConstructed(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence/Asn1SequenceParserImpl::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence/Asn1SequenceParserImpl::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1Sequence/Asn1SequenceParserImpl::ReadObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Sequence/Asn1SequenceParserImpl::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Asn1Sequence::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Asn1Sequence::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Asn1Sequence::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Asn1Sequence::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable[] Org.BouncyCastle.Asn1.Asn1Sequence::ConcatenateElements(Org.BouncyCastle.Asn1.Asn1Sequence[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Sequence::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Asn1.Asn1Sequence::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Asn1.Asn1Sequence::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SequenceParser Org.BouncyCastle.Asn1.Asn1Sequence::get_Parser()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1Sequence::get_Item(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Sequence::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] T[] Org.BouncyCastle.Asn1.Asn1Sequence::MapElements(System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable[] Org.BouncyCastle.Asn1.Asn1Sequence::ToArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Sequence::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString[] Org.BouncyCastle.Asn1.Asn1Sequence::GetConstructedBitStrings()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString[] Org.BouncyCastle.Asn1.Asn1Sequence::GetConstructedOctetStrings()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Asn1Sequence::ToAsn1BitString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerExternal Org.BouncyCastle.Asn1.Asn1Sequence::ToAsn1External()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Asn1Sequence::ToAsn1OctetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Asn1Sequence::ToAsn1Set()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1SequenceParser::ReadObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Set/Meta::FromImplicitConstructed(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set/Asn1SetParserImpl::.ctor(Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set/Asn1SetParserImpl::.ctor(Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1Set/Asn1SetParserImpl::ReadObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Set/Asn1SetParserImpl::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Asn1Set::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Asn1Set::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Asn1Set::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Asn1Set::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set::.ctor(System.Collections.Generic.IReadOnlyCollection`1,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set::.ctor(System.Collections.Generic.IReadOnlyCollection`1,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set::.ctor(System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Set::.ctor(System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Asn1.Asn1Set::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Asn1.Asn1Set::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1Set::get_Item(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Set::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] T[] Org.BouncyCastle.Asn1.Asn1Set::MapElements(System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable[] Org.BouncyCastle.Asn1.Asn1Set::ToArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser Org.BouncyCastle.Asn1.Asn1Set::get_Parser()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Set::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1SetParser::ReadObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1StreamParser::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1StreamParser::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1StreamParser::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1StreamParser::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1StreamParser::.ctor(System.IO.Stream,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1StreamParser::.ctor(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1StreamParser::.ctor(System.IO.Stream,System.Int32,System.Byte[][])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1StreamParser::.ctor(System.IO.Stream,System.Int32,System.Byte[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1StreamParser::ReadObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1StreamParser::ImplParseObject(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1StreamParser::LoadTaggedDL(System.Int32,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1StreamParser::LoadTaggedIL(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1StreamParser::ParseImplicitConstructedDL(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1StreamParser::ParseImplicitConstructedIL(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1StreamParser::ParseImplicitPrimitive(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1StreamParser::ParseImplicitPrimitive(System.Int32,Org.BouncyCastle.Asn1.DefiniteLengthInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1StreamParser::ParseObject(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1StreamParser::ParseTaggedObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1EncodableVector Org.BouncyCastle.Asn1.Asn1StreamParser::ReadVector()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Tag Org.BouncyCastle.Asn1.Asn1Tag::Create(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Tag::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tag::get_TagClass()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tag::get_TagNo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::GetInstance(System.Object,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::GetInstance(System.Object,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1TaggedObject::.ctor(System.Boolean,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1TaggedObject::.ctor(System.Boolean,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1TaggedObject::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1TaggedObject::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1TaggedObject::get_TagClass()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1TaggedObject::get_TagNo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1TaggedObject::HasContextTag()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1TaggedObject::HasContextTag(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1TaggedObject::HasTag(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1TaggedObject::HasTagClass(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1TaggedObject::IsExplicit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1TaggedObject::IsParsed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1TaggedObject::GetObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1TaggedObject::GetBaseObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1TaggedObject::GetExplicitBaseObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::GetExplicitBaseTagged()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::GetImplicitBaseTagged(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1TaggedObject::GetBaseUniversal(System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1TaggedObject::GetBaseUniversal(System.Boolean,Org.BouncyCastle.Asn1.Asn1UniversalType)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1TaggedObject::ParseBaseUniversal(System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1TaggedObject::ParseExplicitBaseObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1TaggedObject::ParseExplicitBaseTagged()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1TaggedObject::ParseImplicitBaseTagged(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1TaggedObject::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Asn1TaggedObject::RebuildConstructed(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::ReplaceTag(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1TaggedObject::CreateConstructedDL(System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1TaggedObject::CreateConstructedIL(System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1TaggedObject::CreatePrimitive(System.Int32,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1TaggedObjectParser::get_TagClass()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1TaggedObjectParser::get_TagNo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1TaggedObjectParser::HasContextTag(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1TaggedObjectParser::HasTag(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1TaggedObjectParser::ParseBaseUniversal(System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1TaggedObjectParser::ParseExplicitBaseObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1TaggedObjectParser::ParseExplicitBaseTagged()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1TaggedObjectParser::ParseImplicitBaseTagged(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Tags::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Tags::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Type::.ctor(System.Type)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Type::.ctor(System.Type)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Type Org.BouncyCastle.Asn1.Asn1Type::get_PlatformType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Type::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Type::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UniversalType::.ctor(System.Type,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UniversalType::.ctor(System.Type,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1UniversalType::CheckedCast(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1UniversalType::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1UniversalType::FromImplicitConstructed(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1UniversalType::FromByteArray(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1UniversalType::GetContextInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1UniversalType::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Tag Org.BouncyCastle.Asn1.Asn1UniversalType::get_Tag()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UniversalTypes::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1UniversalType Org.BouncyCastle.Asn1.Asn1UniversalTypes::Get(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UtcTime/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1UtcTime/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UtcTime/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1UtcTime Org.BouncyCastle.Asn1.Asn1UtcTime::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1UtcTime Org.BouncyCastle.Asn1.Asn1UtcTime::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1UtcTime Org.BouncyCastle.Asn1.Asn1UtcTime::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1UtcTime Org.BouncyCastle.Asn1.Asn1UtcTime::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UtcTime::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UtcTime::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UtcTime::.ctor(System.DateTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UtcTime::.ctor(System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UtcTime::.ctor(System.DateTime,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UtcTime::.ctor(System.DateTime,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UtcTime::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UtcTime::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1UtcTime::get_TimeString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Asn1UtcTime::ToDateTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Asn1UtcTime::ToDateTime(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Asn1UtcTime::ToDateTime(System.Globalization.Calendar)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Asn1UtcTime::ToAdjustedDateTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1UtcTime::get_TwoDigitYearMax()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Asn1UtcTime::GetContents(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.Asn1UtcTime::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.Asn1UtcTime::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.Asn1UtcTime::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.Asn1UtcTime::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1UtcTime::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1UtcTime Org.BouncyCastle.Asn1.Asn1UtcTime::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::CheckContextTag(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::CheckContextTag(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::CheckContextTagClass(Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::CheckContextTagClass(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::CheckTag(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::CheckTag(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::CheckTagClass(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::CheckTagClass(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] TChoice Org.BouncyCastle.Asn1.Asn1Utilities::GetInstanceChoice(System.Object,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] TChoice Org.BouncyCastle.Asn1.Asn1Utilities::GetInstanceChoice(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] TChoice Org.BouncyCastle.Asn1.Asn1Utilities::GetTaggedChoice(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Utilities::GetTagClassText(Org.BouncyCastle.Asn1.Asn1Tag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Utilities::GetTagClassText(Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Utilities::GetTagClassText(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Utilities::GetTagClassText(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Utilities::GetTagText(Org.BouncyCastle.Asn1.Asn1Tag)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Utilities::GetTagText(Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Utilities::GetTagText(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Utilities::GetTagText(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1Utilities::GetExplicitBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1Utilities::GetExplicitBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1Utilities::GetExplicitContextBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1Utilities::GetExplicitContextBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitContextBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitContextBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject,Org.BouncyCastle.Asn1.Asn1Encodable&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitContextBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::GetExplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::GetExplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::GetExplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::GetExplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,Org.BouncyCastle.Asn1.Asn1TaggedObject&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1TaggedObject&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,Org.BouncyCastle.Asn1.Asn1TaggedObject&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryGetExplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,Org.BouncyCastle.Asn1.Asn1TaggedObject&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::GetImplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::GetImplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::TryGetImplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryGetImplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1TaggedObject&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1Utilities::TryGetImplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryGetImplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1TaggedObject&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Utilities::GetBaseUniversal(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32,System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Utilities::GetContextBaseUniversal(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Utilities::TryGetBaseUniversal(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32,System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryGetBaseUniversal(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Int32,System.Boolean,System.Int32,Org.BouncyCastle.Asn1.Asn1Object&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1Utilities::TryGetContextBaseUniversal(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryGetContextBaseUniversal(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Int32,System.Boolean,System.Int32,Org.BouncyCastle.Asn1.Asn1Object&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::ParseExplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::ParseExplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::ParseExplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::ParseExplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::TryParseExplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryParseExplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,Org.BouncyCastle.Asn1.Asn1TaggedObjectParser&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::TryParseExplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryParseExplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1TaggedObjectParser&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::TryParseExplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryParseExplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,Org.BouncyCastle.Asn1.Asn1TaggedObjectParser&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::TryParseExplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryParseExplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,Org.BouncyCastle.Asn1.Asn1TaggedObjectParser&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::ParseImplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::ParseImplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::TryParseImplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryParseImplicitBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1TaggedObjectParser&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.Asn1Utilities::TryParseImplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryParseImplicitContextBaseTagged(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1TaggedObjectParser&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1Utilities::ParseBaseUniversal(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32,System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1Utilities::ParseContextBaseUniversal(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1Utilities::TryParseBaseUniversal(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32,System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryParseBaseUniversal(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32,System.Boolean,System.Int32,Org.BouncyCastle.Asn1.IAsn1Convertible&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1Utilities::TryParseContextBaseUniversal(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryParseContextBaseUniversal(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Boolean,System.Int32,Org.BouncyCastle.Asn1.IAsn1Convertible&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1Utilities::ParseExplicitBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1Utilities::ParseExplicitContextBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1Utilities::TryParseExplicitBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryParseExplicitBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,System.Int32,Org.BouncyCastle.Asn1.IAsn1Convertible&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Asn1Utilities::TryParseExplicitContextBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryParseExplicitContextBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObjectParser,System.Int32,Org.BouncyCastle.Asn1.IAsn1Convertible&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] TResult Org.BouncyCastle.Asn1.Asn1Utilities::ReadContextTagged(Org.BouncyCastle.Asn1.Asn1Sequence,System.Int32&,System.Int32,TState,System.Func`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] TResult Org.BouncyCastle.Asn1.Asn1Utilities::ReadTagged(Org.BouncyCastle.Asn1.Asn1Sequence,System.Int32&,System.Int32,System.Int32,TState,System.Func`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] TResult Org.BouncyCastle.Asn1.Asn1Utilities::ReadOptional(Org.BouncyCastle.Asn1.Asn1Sequence,System.Int32&,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] TResult Org.BouncyCastle.Asn1.Asn1Utilities::ReadOptionalContextTagged(Org.BouncyCastle.Asn1.Asn1Sequence,System.Int32&,System.Int32,TState,System.Func`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] TResult Org.BouncyCastle.Asn1.Asn1Utilities::ReadOptionalTagged(Org.BouncyCastle.Asn1.Asn1Sequence,System.Int32&,System.Int32,System.Int32,TState,System.Func`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryReadOptionalContextTagged(Org.BouncyCastle.Asn1.Asn1Sequence,System.Int32&,System.Int32,TState,TResult&,System.Func`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Utilities::TryReadOptionalTagged(Org.BouncyCastle.Asn1.Asn1Sequence,System.Int32&,System.Int32,System.Int32,TState,TResult&,System.Func`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Utilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerBitString Org.BouncyCastle.Asn1.BerBitString::FromSequence(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.BerBitString::FlattenBitStrings(Org.BouncyCastle.Asn1.DerBitString[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(System.Byte,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(System.Byte,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(Org.BouncyCastle.Asn1.DerBitString[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(Org.BouncyCastle.Asn1.DerBitString[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(Org.BouncyCastle.Asn1.DerBitString[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(Org.BouncyCastle.Asn1.DerBitString[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitString::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.BerBitString::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.BerBitString::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitStringParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerBitStringParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.BerBitStringParser::GetOctetStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.BerBitStringParser::GetBitStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.BerBitStringParser::get_PadBits()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.BerBitStringParser::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerBitString Org.BouncyCastle.Asn1.BerBitStringParser::Parse(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerGenerator::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerGenerator::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerGenerator::AddObject(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerGenerator::AddObject(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.BerGenerator::GetRawOutputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerOctetString Org.BouncyCastle.Asn1.BerOctetString::FromContents(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerOctetString Org.BouncyCastle.Asn1.BerOctetString::FromContentsOptional(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerOctetString Org.BouncyCastle.Asn1.BerOctetString::FromSequence(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerOctetString Org.BouncyCastle.Asn1.BerOctetString::WithContents(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.BerOctetString::FlattenOctetStrings(Org.BouncyCastle.Asn1.Asn1OctetString[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetString::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetString::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetString::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetString::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetString::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetString::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetString::.ctor(System.Byte[],Org.BouncyCastle.Asn1.Asn1OctetString[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.BerOctetString::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.BerOctetString::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetString::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetStringGenerator/BufferedBerOctetStream::.ctor(System.IO.Stream,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetStringGenerator/BufferedBerOctetStream::.ctor(System.IO.Stream,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetStringGenerator/BufferedBerOctetStream::Write(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetStringGenerator/BufferedBerOctetStream::WriteByte(System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetStringGenerator::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetStringGenerator::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetStringGenerator::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetStringGenerator::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.BerOctetStringGenerator::GetOctetOutputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.BerOctetStringGenerator::GetOctetOutputStream(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.BerOctetStringGenerator::GetOctetOutputStream(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetStringParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetStringParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.BerOctetStringParser::GetOctetStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.BerOctetStringParser::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerOctetString Org.BouncyCastle.Asn1.BerOctetStringParser::Parse(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequence::Concatenate(Org.BouncyCastle.Asn1.Asn1Sequence[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequence::FromCollection(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequence::FromElement(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequence::FromElements(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequence::FromElements(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequence::FromElementsOptional(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequence::FromSequence(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequence::FromVector(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequence::Map(Org.BouncyCastle.Asn1.Asn1Sequence,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequence::Map(T[],System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequence::Map(System.Collections.Generic.IReadOnlyCollection`1,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequence::WithElements(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.BerSequence::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.BerSequence::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.BerSequence::ToAsn1BitString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerExternal Org.BouncyCastle.Asn1.BerSequence::ToAsn1External()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.BerSequence::ToAsn1OctetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.BerSequence::ToAsn1Set()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequence::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequenceGenerator::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequenceGenerator::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequenceGenerator::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequenceGenerator::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequenceParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSequenceParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.BerSequenceParser::ReadObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.BerSequenceParser::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequenceParser::Parse(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSet Org.BouncyCastle.Asn1.BerSet::FromCollection(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSet Org.BouncyCastle.Asn1.BerSet::FromElement(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSet Org.BouncyCastle.Asn1.BerSet::FromVector(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSet Org.BouncyCastle.Asn1.BerSet::Map(T[],System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSet Org.BouncyCastle.Asn1.BerSet::Map(System.Collections.Generic.IReadOnlyCollection`1,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSet::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSet::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSet::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSet::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSet::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSet::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSet::.ctor(System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSet::.ctor(System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.BerSet::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.BerSet::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSet::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSetGenerator::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSetGenerator::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSetGenerator::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSetGenerator::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSetParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerSetParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.BerSetParser::ReadObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.BerSetParser::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSet Org.BouncyCastle.Asn1.BerSetParser::Parse(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerTaggedObject::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerTaggedObject::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerTaggedObject::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerTaggedObject::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerTaggedObject::.ctor(System.Boolean,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerTaggedObject::.ctor(System.Boolean,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerTaggedObject::.ctor(System.Boolean,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerTaggedObject::.ctor(System.Boolean,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerTaggedObject::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerTaggedObject::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.BerTaggedObject::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.BerTaggedObject::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.BerTaggedObject::RebuildConstructed(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.BerTaggedObject::ReplaceTag(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerTaggedObjectParser::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerTaggedObjectParser::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.BerTaggedObjectParser::get_IsConstructed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.BerTaggedObjectParser::get_TagClass()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.BerTaggedObjectParser::get_TagNo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.BerTaggedObjectParser::HasContextTag()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.BerTaggedObjectParser::HasContextTag(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.BerTaggedObjectParser::HasTag(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.BerTaggedObjectParser::HasTagClass(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.BerTaggedObjectParser::ParseBaseUniversal(System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.BerTaggedObjectParser::ParseExplicitBaseObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.BerTaggedObjectParser::ParseExplicitBaseTagged()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.BerTaggedObjectParser::ParseImplicitBaseTagged(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.BerTaggedObjectParser::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.ConstructedBitStream::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.ConstructedBitStream::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.ConstructedBitStream::get_PadBits()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.ConstructedBitStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.ConstructedBitStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.ConstructedDerEncoding::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.DerEncoding[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.ConstructedDerEncoding::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.DerEncoding[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.ConstructedDerEncoding::CompareLengthAndContents(Org.BouncyCastle.Asn1.DerEncoding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.ConstructedDerEncoding::Encode(Org.BouncyCastle.Asn1.Asn1OutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.ConstructedDerEncoding::GetLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.ConstructedDLEncoding::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.IAsn1Encoding[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.ConstructedDLEncoding::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.IAsn1Encoding[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.ConstructedILEncoding::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.IAsn1Encoding[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.ConstructedILEncoding::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.IAsn1Encoding[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.ConstructedOctetStream::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.ConstructedOctetStream::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.ConstructedOctetStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.ConstructedOctetStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DefiniteLengthInputStream::.ctor(System.IO.Stream,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DefiniteLengthInputStream::.ctor(System.IO.Stream,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DefiniteLengthInputStream::get_Remaining()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DefiniteLengthInputStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DefiniteLengthInputStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DefiniteLengthInputStream::ReadAllIntoByteArray(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DefiniteLengthInputStream::ToArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DefiniteLengthInputStream::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerBitString/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerBitString/Meta::FromImplicitConstructed(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.DerBitString::FromContentsOptional(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.DerBitString::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.DerBitString::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.DerBitString::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.DerBitString::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Byte,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Byte,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(Org.BouncyCastle.Asn1.IAsn1Convertible)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(Org.BouncyCastle.Asn1.IAsn1Convertible)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerBitString::GetOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerBitString::GetBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerBitString::GetBytesLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerBitString::IsOctetAligned()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerBitString::get_PadBits()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerBitString::get_IntValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerBitString::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerBitString::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerBitString::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerBitString::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.DerBitString::GetBitStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.DerBitString::GetOctetStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.MemoryStream Org.BouncyCastle.Asn1.DerBitString::GetOctetMemoryStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1BitStringParser Org.BouncyCastle.Asn1.DerBitString::get_Parser()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerBitString::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.DerBitString::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBmpString/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerBmpString/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBmpString/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBmpString Org.BouncyCastle.Asn1.DerBmpString::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBmpString Org.BouncyCastle.Asn1.DerBmpString::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBmpString Org.BouncyCastle.Asn1.DerBmpString::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBmpString Org.BouncyCastle.Asn1.DerBmpString::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBmpString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBmpString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBmpString::.ctor(System.Char[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBmpString::.ctor(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBmpString::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBmpString::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerBmpString::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerBmpString::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerBmpString::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerBmpString::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerBmpString::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBmpString Org.BouncyCastle.Asn1.DerBmpString::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBmpString Org.BouncyCastle.Asn1.DerBmpString::CreatePrimitive(System.Char[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBoolean/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerBoolean/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBoolean/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean Org.BouncyCastle.Asn1.DerBoolean::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean Org.BouncyCastle.Asn1.DerBoolean::GetInstance(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean Org.BouncyCastle.Asn1.DerBoolean::GetInstance(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean Org.BouncyCastle.Asn1.DerBoolean::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean Org.BouncyCastle.Asn1.DerBoolean::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean Org.BouncyCastle.Asn1.DerBoolean::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBoolean::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBoolean::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBoolean::.ctor(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerBoolean::get_IsTrue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerBoolean::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerBoolean::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerBoolean::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerBoolean::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerBoolean::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean Org.BouncyCastle.Asn1.DerBoolean::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBoolean::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEncoding::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEncoding::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerEncoding::CompareLengthAndContents(Org.BouncyCastle.Asn1.DerEncoding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerEncoding::CompareTo(Org.BouncyCastle.Asn1.DerEncoding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEncoding::Encode(Org.BouncyCastle.Asn1.Asn1OutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerEncoding::GetLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEnumerated/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerEnumerated/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEnumerated/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEnumerated Org.BouncyCastle.Asn1.DerEnumerated::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEnumerated Org.BouncyCastle.Asn1.DerEnumerated::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEnumerated Org.BouncyCastle.Asn1.DerEnumerated::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEnumerated Org.BouncyCastle.Asn1.DerEnumerated::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEnumerated::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEnumerated::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEnumerated::.ctor(System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEnumerated::.ctor(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEnumerated::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEnumerated::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEnumerated::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEnumerated::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEnumerated::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEnumerated::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.DerEnumerated::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerEnumerated::HasValue(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerEnumerated::HasValue(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerEnumerated::get_IntValueExact()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerEnumerated::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerEnumerated::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerEnumerated::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerEnumerated::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEnumerated Org.BouncyCastle.Asn1.DerEnumerated::CreatePrimitive(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerEnumerated::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternal/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerExternal/Meta::FromImplicitConstructed(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternal/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerExternal Org.BouncyCastle.Asn1.DerExternal::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerExternal Org.BouncyCastle.Asn1.DerExternal::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerExternal Org.BouncyCastle.Asn1.DerExternal::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerExternal Org.BouncyCastle.Asn1.DerExternal::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternal::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternal::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternal::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternal::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternal::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1ObjectDescriptor,Org.BouncyCastle.Asn1.DerTaggedObject)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternal::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1ObjectDescriptor,Org.BouncyCastle.Asn1.DerTaggedObject)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternal::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1ObjectDescriptor,Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternal::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1ObjectDescriptor,Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternal::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1ObjectDescriptor,System.Int32,Org.BouncyCastle.Asn1.Asn1Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternal::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1ObjectDescriptor,System.Int32,Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.DerExternal::BuildSequence()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerExternal::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerExternal::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerExternal::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerExternal::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1ObjectDescriptor Org.BouncyCastle.Asn1.DerExternal::get_DataValueDescriptor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.DerExternal::get_DirectReference()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerExternal::get_Encoding()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerExternal::get_ExternalContent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.DerExternal::get_IndirectReference()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternalParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerExternalParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.DerExternalParser::ReadObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerExternalParser::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerExternal Org.BouncyCastle.Asn1.DerExternalParser::Parse(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralizedTime::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralizedTime::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralizedTime::.ctor(System.DateTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralizedTime::.ctor(System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralizedTime::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralizedTime::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerGeneralizedTime::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerGeneralizedTime::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralString/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerGeneralString/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralString/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGeneralString Org.BouncyCastle.Asn1.DerGeneralString::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGeneralString Org.BouncyCastle.Asn1.DerGeneralString::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGeneralString Org.BouncyCastle.Asn1.DerGeneralString::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGeneralString Org.BouncyCastle.Asn1.DerGeneralString::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralString::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralString::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralString::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGeneralString::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerGeneralString::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerGeneralString::GetOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerGeneralString::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerGeneralString::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerGeneralString::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerGeneralString::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGeneralString Org.BouncyCastle.Asn1.DerGeneralString::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGenerator::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGenerator::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGenerator::WriteDerEncoded(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGenerator::WriteDerEncoded(System.IO.Stream,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGenerator::WriteDerEncoded(System.IO.Stream,System.Int32,System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGraphicString/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerGraphicString/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGraphicString/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGraphicString Org.BouncyCastle.Asn1.DerGraphicString::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGraphicString Org.BouncyCastle.Asn1.DerGraphicString::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGraphicString Org.BouncyCastle.Asn1.DerGraphicString::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGraphicString Org.BouncyCastle.Asn1.DerGraphicString::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGraphicString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGraphicString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGraphicString::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGraphicString::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerGraphicString::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerGraphicString::GetOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerGraphicString::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerGraphicString::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerGraphicString::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerGraphicString::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGraphicString Org.BouncyCastle.Asn1.DerGraphicString::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerIA5String/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerIA5String/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerIA5String/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String Org.BouncyCastle.Asn1.DerIA5String::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String Org.BouncyCastle.Asn1.DerIA5String::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String Org.BouncyCastle.Asn1.DerIA5String::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String Org.BouncyCastle.Asn1.DerIA5String::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerIA5String::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerIA5String::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerIA5String::.ctor(System.String,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerIA5String::.ctor(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerIA5String::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerIA5String::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerIA5String::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerIA5String::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerIA5String::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerIA5String::GetOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerIA5String::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerIA5String::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerIA5String::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerIA5String::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerIA5String::IsIA5String(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String Org.BouncyCastle.Asn1.DerIA5String::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerInteger/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerInteger/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerInteger/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerInteger::AllowUnsafe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.DerInteger::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.DerInteger::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.DerInteger::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.DerInteger::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerInteger::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerInteger::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerInteger::.ctor(System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerInteger::.ctor(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerInteger::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerInteger::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerInteger::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerInteger::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerInteger::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerInteger::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.DerInteger::get_PositiveValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.DerInteger::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerInteger::HasValue(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerInteger::HasValue(System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerInteger::HasValue(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerInteger::get_IntPositiveValueExact()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerInteger::get_IntValueExact()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Asn1.DerInteger::get_LongValueExact()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerInteger::TryGetIntPositiveValueExact(System.Int32&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerInteger::TryGetIntValueExact(System.Int32&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerInteger::TryGetLongValueExact(System.Int64&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerInteger::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerInteger::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerInteger::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerInteger::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerInteger::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.DerInteger::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerInteger::GetEncodingLength(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerInteger::IntValue(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Asn1.DerInteger::LongValue(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerInteger::IsMalformed(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerInteger::SignBytesToSkip(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerInteger::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerNull::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerNull::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerNull::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerNull::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerNull::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerNull::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerNull::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerNumericString/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerNumericString/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerNumericString/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerNumericString Org.BouncyCastle.Asn1.DerNumericString::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerNumericString Org.BouncyCastle.Asn1.DerNumericString::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerNumericString Org.BouncyCastle.Asn1.DerNumericString::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerNumericString Org.BouncyCastle.Asn1.DerNumericString::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerNumericString::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerNumericString::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerNumericString::.ctor(System.String,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerNumericString::.ctor(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerNumericString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerNumericString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerNumericString::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerNumericString::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerNumericString::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerNumericString::GetOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerNumericString::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerNumericString::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerNumericString::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerNumericString::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerNumericString::IsNumericString(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerNumericString::IsNumericString(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerNumericString Org.BouncyCastle.Asn1.DerNumericString::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerObjectIdentifier/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerObjectIdentifier/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerObjectIdentifier/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.DerObjectIdentifier::FromContents(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.DerObjectIdentifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.DerObjectIdentifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.DerObjectIdentifier::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.DerObjectIdentifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerObjectIdentifier::TryFromID(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerObjectIdentifier::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerObjectIdentifier::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerObjectIdentifier::.ctor(System.Byte[],System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.DerObjectIdentifier::Branch(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerObjectIdentifier::GetID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerObjectIdentifier::get_Id()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerObjectIdentifier::On(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerObjectIdentifier::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerObjectIdentifier::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerObjectIdentifier::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerObjectIdentifier::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerObjectIdentifier::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerObjectIdentifier::CheckContentsLength(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerObjectIdentifier::CheckIdentifier(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.DerObjectIdentifier::CreatePrimitive(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerObjectIdentifier::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerOctetString Org.BouncyCastle.Asn1.DerOctetString::FromContents(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerOctetString Org.BouncyCastle.Asn1.DerOctetString::FromContentsOptional(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerOctetString Org.BouncyCastle.Asn1.DerOctetString::WithContents(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerOctetString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerOctetString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerOctetString::.ctor(Org.BouncyCastle.Asn1.IAsn1Convertible)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerOctetString::.ctor(Org.BouncyCastle.Asn1.IAsn1Convertible)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerOctetString::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerOctetString::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerOctetString::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerOctetString::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerOctetString::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerOctetString::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerOctetString::Encode(Org.BouncyCastle.Asn1.Asn1OutputStream,System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerOctetString::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerOctetStringParser::.ctor(Org.BouncyCastle.Asn1.DefiniteLengthInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerOctetStringParser::.ctor(Org.BouncyCastle.Asn1.DefiniteLengthInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.DerOctetStringParser::GetOctetStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerOctetStringParser::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerOutputStream::.ctor(System.IO.Stream,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerOutputStream::.ctor(System.IO.Stream,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerOutputStream::get_Encoding()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerPrintableString/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerPrintableString/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerPrintableString/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerPrintableString Org.BouncyCastle.Asn1.DerPrintableString::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerPrintableString Org.BouncyCastle.Asn1.DerPrintableString::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerPrintableString Org.BouncyCastle.Asn1.DerPrintableString::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerPrintableString Org.BouncyCastle.Asn1.DerPrintableString::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerPrintableString::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerPrintableString::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerPrintableString::.ctor(System.String,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerPrintableString::.ctor(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerPrintableString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerPrintableString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerPrintableString::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerPrintableString::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerPrintableString::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerPrintableString::GetOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerPrintableString::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerPrintableString::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerPrintableString::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerPrintableString::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerPrintableString::IsPrintableString(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerPrintableString Org.BouncyCastle.Asn1.DerPrintableString::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.DerSequence::Concatenate(Org.BouncyCastle.Asn1.Asn1Sequence[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.DerSequence::FromCollection(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.DerSequence::FromElement(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.DerSequence::FromElements(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.DerSequence::FromElements(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.DerSequence::FromElementsOptional(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.DerSequence::FromSequence(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.DerSequence::FromVector(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.DerSequence::Map(Org.BouncyCastle.Asn1.Asn1Sequence,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.DerSequence::Map(T[],System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.DerSequence::Map(System.Collections.Generic.IReadOnlyCollection`1,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.DerSequence::WithElements(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerSequence::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerSequence::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerSequence::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerSequence::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.DerSequence::ToAsn1BitString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerExternal Org.BouncyCastle.Asn1.DerSequence::ToAsn1External()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.DerSequence::ToAsn1OctetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.DerSequence::ToAsn1Set()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerSequence::GetEncodingLength(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequence::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequenceGenerator::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequenceGenerator::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequenceGenerator::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequenceGenerator::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequenceGenerator::AddObject(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequenceGenerator::AddObject(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.DerSequenceGenerator::GetRawOutputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequenceParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequenceParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.DerSequenceParser::ReadObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerSequenceParser::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSet Org.BouncyCastle.Asn1.DerSet::FromCollection(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSet Org.BouncyCastle.Asn1.DerSet::FromElement(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSet Org.BouncyCastle.Asn1.DerSet::FromVector(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSet Org.BouncyCastle.Asn1.DerSet::Map(T[],System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSet Org.BouncyCastle.Asn1.DerSet::Map(System.Collections.Generic.IReadOnlyCollection`1,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(System.Collections.Generic.IReadOnlyCollection`1,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(System.Collections.Generic.IReadOnlyCollection`1,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.ctor(System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerSet::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerSet::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerSet::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerSet::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSet::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSetGenerator::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSetGenerator::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSetGenerator::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSetGenerator::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSetGenerator::AddObject(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSetGenerator::AddObject(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.DerSetGenerator::GetRawOutputStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSetParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSetParser::.ctor(Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.DerSetParser::ReadObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerSetParser::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerStringBase::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerStringBase::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerStringBase::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerT61String/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerT61String/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerT61String/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerT61String Org.BouncyCastle.Asn1.DerT61String::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerT61String Org.BouncyCastle.Asn1.DerT61String::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerT61String Org.BouncyCastle.Asn1.DerT61String::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerT61String Org.BouncyCastle.Asn1.DerT61String::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerT61String::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerT61String::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerT61String::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerT61String::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerT61String::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerT61String::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerT61String::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerT61String::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerT61String::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerT61String::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerT61String::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerT61String::GetOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerT61String Org.BouncyCastle.Asn1.DerT61String::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerTaggedObject::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerTaggedObject::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerTaggedObject::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerTaggedObject::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerTaggedObject::.ctor(System.Boolean,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerTaggedObject::.ctor(System.Boolean,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerTaggedObject::.ctor(System.Boolean,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerTaggedObject::.ctor(System.Boolean,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerTaggedObject::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerTaggedObject::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerTaggedObject::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerTaggedObject::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerTaggedObject::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerTaggedObject::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.DerTaggedObject::RebuildConstructed(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.DerTaggedObject::ReplaceTag(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUniversalString/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerUniversalString/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUniversalString/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUniversalString Org.BouncyCastle.Asn1.DerUniversalString::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUniversalString Org.BouncyCastle.Asn1.DerUniversalString::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUniversalString Org.BouncyCastle.Asn1.DerUniversalString::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUniversalString Org.BouncyCastle.Asn1.DerUniversalString::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUniversalString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUniversalString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUniversalString::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUniversalString::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerUniversalString::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerUniversalString::GetOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerUniversalString::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerUniversalString::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerUniversalString::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerUniversalString::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUniversalString Org.BouncyCastle.Asn1.DerUniversalString::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUniversalString::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtcTime::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtcTime::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtcTime::.ctor(System.DateTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtcTime::.ctor(System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtcTime::.ctor(System.DateTime,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtcTime::.ctor(System.DateTime,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtcTime::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtcTime::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerUtcTime::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerUtcTime::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtf8String/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerUtf8String/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtf8String/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUtf8String Org.BouncyCastle.Asn1.DerUtf8String::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUtf8String Org.BouncyCastle.Asn1.DerUtf8String::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUtf8String Org.BouncyCastle.Asn1.DerUtf8String::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUtf8String Org.BouncyCastle.Asn1.DerUtf8String::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtf8String::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtf8String::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtf8String::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtf8String::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtf8String::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUtf8String::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerUtf8String::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerUtf8String::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerUtf8String::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerUtf8String::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerUtf8String::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUtf8String Org.BouncyCastle.Asn1.DerUtf8String::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVideotexString/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerVideotexString/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVideotexString/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVideotexString Org.BouncyCastle.Asn1.DerVideotexString::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVideotexString Org.BouncyCastle.Asn1.DerVideotexString::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVideotexString Org.BouncyCastle.Asn1.DerVideotexString::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVideotexString Org.BouncyCastle.Asn1.DerVideotexString::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVideotexString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVideotexString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVideotexString::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVideotexString::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerVideotexString::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerVideotexString::GetOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerVideotexString::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerVideotexString::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerVideotexString::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerVideotexString::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVideotexString Org.BouncyCastle.Asn1.DerVideotexString::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVisibleString/Meta::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerVisibleString/Meta::FromImplicitPrimitive(Org.BouncyCastle.Asn1.DerOctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVisibleString/Meta::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVisibleString Org.BouncyCastle.Asn1.DerVisibleString::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVisibleString Org.BouncyCastle.Asn1.DerVisibleString::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVisibleString Org.BouncyCastle.Asn1.DerVisibleString::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVisibleString Org.BouncyCastle.Asn1.DerVisibleString::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVisibleString::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVisibleString::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVisibleString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVisibleString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVisibleString::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerVisibleString::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerVisibleString::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerVisibleString::GetOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerVisibleString::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DerVisibleString::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerVisibleString::GetEncodingDer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding Org.BouncyCastle.Asn1.DerVisibleString::GetEncodingDerImplicit(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVisibleString Org.BouncyCastle.Asn1.DerVisibleString::CreatePrimitive(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitString::.ctor(System.Byte,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitString::.ctor(System.Byte,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitString::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitString::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitString::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitString::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitString::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitString::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitString::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitString::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitString::.ctor(System.Byte[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitString::.ctor(System.Byte[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DLBitString::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DLBitString::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitStringParser::.ctor(Org.BouncyCastle.Asn1.DefiniteLengthInputStream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLBitStringParser::.ctor(Org.BouncyCastle.Asn1.DefiniteLengthInputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.DLBitStringParser::GetBitStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.DLBitStringParser::GetOctetStream()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DLBitStringParser::get_PadBits()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DLBitStringParser::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLExternal::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLExternal::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLExternal::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLExternal::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLExternal::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1ObjectDescriptor,Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLExternal::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1ObjectDescriptor,Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLExternal::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1ObjectDescriptor,System.Int32,Org.BouncyCastle.Asn1.Asn1Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLExternal::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1ObjectDescriptor,System.Int32,Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.DLExternal::BuildSequence()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DLExternal::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLOutputStream::.ctor(System.IO.Stream,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLOutputStream::.ctor(System.IO.Stream,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DLOutputStream::get_Encoding()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence Org.BouncyCastle.Asn1.DLSequence::Concatenate(Org.BouncyCastle.Asn1.Asn1Sequence[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence Org.BouncyCastle.Asn1.DLSequence::FromCollection(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence Org.BouncyCastle.Asn1.DLSequence::FromElement(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence Org.BouncyCastle.Asn1.DLSequence::FromElements(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence Org.BouncyCastle.Asn1.DLSequence::FromElements(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence Org.BouncyCastle.Asn1.DLSequence::FromElementsOptional(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence Org.BouncyCastle.Asn1.DLSequence::FromSequence(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence Org.BouncyCastle.Asn1.DLSequence::FromVector(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence Org.BouncyCastle.Asn1.DLSequence::Map(Org.BouncyCastle.Asn1.Asn1Sequence,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence Org.BouncyCastle.Asn1.DLSequence::Map(T[],System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence Org.BouncyCastle.Asn1.DLSequence::Map(System.Collections.Generic.IReadOnlyCollection`1,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence Org.BouncyCastle.Asn1.DLSequence::WithElements(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DLSequence::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DLSequence::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.DLSequence::ToAsn1BitString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerExternal Org.BouncyCastle.Asn1.DLSequence::ToAsn1External()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.DLSequence::ToAsn1Set()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSequence::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSet Org.BouncyCastle.Asn1.DLSet::FromCollection(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSet Org.BouncyCastle.Asn1.DLSet::FromElement(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSet Org.BouncyCastle.Asn1.DLSet::FromVector(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSet Org.BouncyCastle.Asn1.DLSet::Map(T[],System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSet Org.BouncyCastle.Asn1.DLSet::Map(System.Collections.Generic.IReadOnlyCollection`1,System.Func`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSet::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSet::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSet::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSet::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSet::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSet::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSet::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSet::.ctor(System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSet::.ctor(System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DLSet::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DLSet::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLSet::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLTaggedObject::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLTaggedObject::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLTaggedObject::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLTaggedObject::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLTaggedObject::.ctor(System.Boolean,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLTaggedObject::.ctor(System.Boolean,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLTaggedObject::.ctor(System.Boolean,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLTaggedObject::.ctor(System.Boolean,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLTaggedObject::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLTaggedObject::.ctor(System.Int32,System.Int32,System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DLTaggedObject::GetEncoding(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding Org.BouncyCastle.Asn1.DLTaggedObject::GetEncodingImplicit(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.DLTaggedObject::RebuildConstructed(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.DLTaggedObject::ReplaceTag(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLTaggedObjectParser::.ctor(System.Int32,System.Int32,System.Boolean,Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DLTaggedObjectParser::.ctor(System.Int32,System.Int32,System.Boolean,Org.BouncyCastle.Asn1.Asn1StreamParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DLTaggedObjectParser::get_IsConstructed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.DLTaggedObjectParser::ParseBaseUniversal(System.Boolean,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.DLTaggedObjectParser::ParseExplicitBaseObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.DLTaggedObjectParser::ParseExplicitBaseTagged()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser Org.BouncyCastle.Asn1.DLTaggedObjectParser::ParseImplicitBaseTagged(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DLTaggedObjectParser::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.IAsn1Convertible::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IAsn1Encoding::Encode(Org.BouncyCastle.Asn1.Asn1OutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.IAsn1Encoding::GetLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.IAsn1String::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IndefiniteLengthInputStream::.ctor(System.IO.Stream,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IndefiniteLengthInputStream::.ctor(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IndefiniteLengthInputStream::SetEofOn00(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.IndefiniteLengthInputStream::Read(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.IndefiniteLengthInputStream::ReadByte()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.LazyAsn1InputStream::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.LazyAsn1InputStream::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.LazyAsn1InputStream::.ctor(System.IO.Stream)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.LazyAsn1InputStream::.ctor(System.IO.Stream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.LazyAsn1InputStream::.ctor(System.IO.Stream,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.LazyAsn1InputStream::.ctor(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.LazyAsn1InputStream::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.LazyAsn1InputStream::.ctor(System.IO.Stream,System.Int32,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.LimitedInputStream::.ctor(System.IO.Stream,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.LimitedInputStream::.ctor(System.IO.Stream,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.LimitedInputStream::get_Limit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.OidTokenizer::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.OidTokenizer::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.OidTokenizer::get_HasMoreTokens()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.OidTokenizer::NextToken()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.PrimitiveDerEncoding::.ctor(System.Int32,System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.PrimitiveDerEncoding::.ctor(System.Int32,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.PrimitiveDerEncoding::CompareLengthAndContents(Org.BouncyCastle.Asn1.DerEncoding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.PrimitiveDerEncoding::Encode(Org.BouncyCastle.Asn1.Asn1OutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.PrimitiveDerEncoding::GetLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.PrimitiveDerEncodingSuffixed::.ctor(System.Int32,System.Int32,System.Byte[],System.Byte)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.PrimitiveDerEncodingSuffixed::.ctor(System.Int32,System.Int32,System.Byte[],System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.PrimitiveDerEncodingSuffixed::CompareLengthAndContents(Org.BouncyCastle.Asn1.DerEncoding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.PrimitiveDerEncodingSuffixed::Encode(Org.BouncyCastle.Asn1.Asn1OutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.PrimitiveDerEncodingSuffixed::GetLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.PrimitiveEncoding::.ctor(System.Int32,System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.PrimitiveEncoding::.ctor(System.Int32,System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.PrimitiveEncodingSuffixed::.ctor(System.Int32,System.Int32,System.Byte[],System.Byte)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.PrimitiveEncodingSuffixed::.ctor(System.Int32,System.Int32,System.Byte[],System.Byte)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TaggedDerEncoding::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.DerEncoding)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TaggedDerEncoding::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.DerEncoding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.TaggedDerEncoding::CompareLengthAndContents(Org.BouncyCastle.Asn1.DerEncoding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TaggedDerEncoding::Encode(Org.BouncyCastle.Asn1.Asn1OutputStream)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.TaggedDerEncoding::GetLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TaggedDLEncoding::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.IAsn1Encoding)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TaggedDLEncoding::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.IAsn1Encoding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TaggedILEncoding::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.IAsn1Encoding)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TaggedILEncoding::.ctor(System.Int32,System.Int32,Org.BouncyCastle.Asn1.IAsn1Encoding)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHDomainParameters Org.BouncyCastle.Asn1.X9.DHDomainParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHDomainParameters Org.BouncyCastle.Asn1.X9.DHDomainParameters::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHDomainParameters Org.BouncyCastle.Asn1.X9.DHDomainParameters::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.DHDomainParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.DHDomainParameters::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X9.DHValidationParms)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.DHDomainParameters::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X9.DHValidationParms)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X9.DHDomainParameters::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X9.DHDomainParameters::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X9.DHDomainParameters::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X9.DHDomainParameters::get_J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHValidationParms Org.BouncyCastle.Asn1.X9.DHDomainParameters::get_ValidationParms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X9.DHDomainParameters::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHPublicKey Org.BouncyCastle.Asn1.X9.DHPublicKey::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHPublicKey Org.BouncyCastle.Asn1.X9.DHPublicKey::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHPublicKey Org.BouncyCastle.Asn1.X9.DHPublicKey::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.DHPublicKey::.ctor(Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.DHPublicKey::.ctor(Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X9.DHPublicKey::get_Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X9.DHPublicKey::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHValidationParms Org.BouncyCastle.Asn1.X9.DHValidationParms::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHValidationParms Org.BouncyCastle.Asn1.X9.DHValidationParms::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHValidationParms Org.BouncyCastle.Asn1.X9.DHValidationParms::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHValidationParms Org.BouncyCastle.Asn1.X9.DHValidationParms::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.DHValidationParms::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.DHValidationParms::.ctor(Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.DHValidationParms::.ctor(Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X9.DHValidationParms::get_Seed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X9.DHValidationParms::get_PgenCounter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X9.DHValidationParms::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.ECNamedCurveTable::GetByName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.X9.ECNamedCurveTable::GetByNameLazy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.ECNamedCurveTable::GetByOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.X9.ECNamedCurveTable::GetByOidLazy(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X9.ECNamedCurveTable::GetName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.ECNamedCurveTable::GetOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.X9.ECNamedCurveTable::get_Names()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.ECNamedCurveTable::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.ECNamedCurveTable::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.KeySpecificInfo Org.BouncyCastle.Asn1.X9.KeySpecificInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.KeySpecificInfo Org.BouncyCastle.Asn1.X9.KeySpecificInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.KeySpecificInfo Org.BouncyCastle.Asn1.X9.KeySpecificInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.KeySpecificInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.KeySpecificInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.KeySpecificInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.KeySpecificInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.KeySpecificInfo::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.X9.KeySpecificInfo::get_Counter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X9.KeySpecificInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.OtherInfo Org.BouncyCastle.Asn1.X9.OtherInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.OtherInfo Org.BouncyCastle.Asn1.X9.OtherInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.OtherInfo Org.BouncyCastle.Asn1.X9.OtherInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.OtherInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.OtherInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.OtherInfo::.ctor(Org.BouncyCastle.Asn1.X9.KeySpecificInfo,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.OtherInfo::.ctor(Org.BouncyCastle.Asn1.X9.KeySpecificInfo,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.KeySpecificInfo Org.BouncyCastle.Asn1.X9.OtherInfo::get_KeyInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.X9.OtherInfo::get_PartyAInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.X9.OtherInfo::get_SuppPubInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X9.OtherInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v3Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v3Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v3Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v3Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime256v1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime256v1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v3Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v3Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb176w1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb176w1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v3Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v3Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb208w1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb208w1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v3Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v3Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb272w1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb272w1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb304w1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb304w1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb359v1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb359v1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb368w1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb368w1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb431r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb431r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves::GetByName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.X9.X962NamedCurves::GetByNameLazy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves::GetByOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.X9.X962NamedCurves::GetByOidLazy(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X9.X962NamedCurves::GetName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X962NamedCurves::GetOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.X9.X962NamedCurves::get_Names()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962Parameters Org.BouncyCastle.Asn1.X9.X962Parameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962Parameters Org.BouncyCastle.Asn1.X9.X962Parameters::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962Parameters Org.BouncyCastle.Asn1.X9.X962Parameters::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962Parameters Org.BouncyCastle.Asn1.X9.X962Parameters::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962Parameters::.ctor(Org.BouncyCastle.Asn1.X9.X9ECParameters)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962Parameters::.ctor(Org.BouncyCastle.Asn1.X9.X9ECParameters)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962Parameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962Parameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962Parameters::.ctor(Org.BouncyCastle.Asn1.Asn1Null)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962Parameters::.ctor(Org.BouncyCastle.Asn1.Asn1Null)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962Parameters::.ctor(Org.BouncyCastle.Asn1.Asn1Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X9.X962Parameters::get_IsNamedCurve()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X9.X962Parameters::get_IsImplicitlyCA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X962Parameters::get_NamedCurve()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X9.X962Parameters::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X9.X962Parameters::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(Org.BouncyCastle.Math.EC.ECCurve)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(Org.BouncyCastle.Math.EC.ECCurve)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(Org.BouncyCastle.Math.EC.ECCurve,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(Org.BouncyCastle.Math.EC.ECCurve,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(Org.BouncyCastle.Asn1.X9.X9FieldID,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9Curve::.ctor(Org.BouncyCastle.Asn1.X9.X9FieldID,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X9Curve::get_Curve()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.X9.X9Curve::GetSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X9.X9Curve::get_Seed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X9.X9Curve::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X9ECParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X9ECParameters::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X9ECParameters::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X9ECParameters::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Asn1.X9.X9ECPoint,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Asn1.X9.X9ECPoint,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Asn1.X9.X9ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Asn1.X9.X9ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Asn1.X9.X9ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Asn1.X9.X9ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Asn1.X9.X9ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParameters::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Asn1.X9.X9ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X9ECParameters::get_Curve()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Asn1.X9.X9ECParameters::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X9.X9ECParameters::get_N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X9.X9ECParameters::get_H()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.X9.X9ECParameters::GetSeed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X9.X9ECParameters::get_Seed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9Curve Org.BouncyCastle.Asn1.X9.X9ECParameters::get_CurveEntry()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9FieldID Org.BouncyCastle.Asn1.X9.X9ECParameters::get_FieldIDEntry()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECPoint Org.BouncyCastle.Asn1.X9.X9ECParameters::get_BaseEntry()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X9.X9ECParameters::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c::b__3_0(Org.BouncyCastle.Asn1.X9.X9ECParametersHolder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c::b__5_0(Org.BouncyCastle.Asn1.X9.X9ECParametersHolder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X9ECParametersHolder::get_Curve()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X9ECParametersHolder::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECParametersHolder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECPoint/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECPoint/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECPoint/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Asn1.X9.X9ECPoint/<>c::b__10_0(Org.BouncyCastle.Asn1.X9.X9ECPoint)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(Org.BouncyCastle.Math.EC.ECPoint,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(Org.BouncyCastle.Math.EC.ECPoint,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ECPoint::.ctor(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.X9.X9ECPoint::GetPointEncoding()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.X9.X9ECPoint::get_PointEncoding()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Asn1.X9.X9ECPoint::get_Point()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X9.X9ECPoint::get_IsPointCompressed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X9.X9ECPoint::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9FieldElement::.ctor(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9FieldElement::.ctor(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Asn1.X9.X9FieldElement::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X9.X9FieldElement::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9FieldID Org.BouncyCastle.Asn1.X9.X9FieldID::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9FieldID Org.BouncyCastle.Asn1.X9.X9FieldID::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9FieldID Org.BouncyCastle.Asn1.X9.X9FieldID::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9FieldID Org.BouncyCastle.Asn1.X9.X9FieldID::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9FieldID::.ctor(System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9FieldID::get_FieldType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9FieldID::get_Identifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X9.X9FieldID::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X9.X9FieldID::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X9.X9IntegerConverter::GetByteLength(Org.BouncyCastle.Math.EC.ECFieldElement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X9.X9IntegerConverter::GetByteLength(Org.BouncyCastle.Math.EC.ECCurve)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.X9.X9IntegerConverter::IntegerToBytes(Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9IntegerConverter::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AccessDescription Org.BouncyCastle.Asn1.X509.AccessDescription::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AccessDescription Org.BouncyCastle.Asn1.X509.AccessDescription::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AccessDescription Org.BouncyCastle.Asn1.X509.AccessDescription::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AccessDescription::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AccessDescription::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AccessDescription::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.AccessDescription::get_AccessMethod()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.X509.AccessDescription::get_AccessLocation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.AccessDescription::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.AccessDescription::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AccessDescription::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm::FromExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AltSignatureValue Org.BouncyCastle.Asn1.X509.AltSignatureValue::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AltSignatureValue Org.BouncyCastle.Asn1.X509.AltSignatureValue::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AltSignatureValue Org.BouncyCastle.Asn1.X509.AltSignatureValue::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AltSignatureValue Org.BouncyCastle.Asn1.X509.AltSignatureValue::FromExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AltSignatureValue::.ctor(Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AltSignatureValue::.ctor(Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AltSignatureValue::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AltSignatureValue::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.AltSignatureValue::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.AltSignatureValue::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttCertIssuer Org.BouncyCastle.Asn1.X509.AttCertIssuer::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttCertIssuer Org.BouncyCastle.Asn1.X509.AttCertIssuer::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttCertIssuer Org.BouncyCastle.Asn1.X509.AttCertIssuer::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttCertIssuer Org.BouncyCastle.Asn1.X509.AttCertIssuer::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttCertIssuer::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttCertIssuer::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttCertIssuer::.ctor(Org.BouncyCastle.Asn1.X509.V2Form)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttCertIssuer::.ctor(Org.BouncyCastle.Asn1.X509.V2Form)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.X509.AttCertIssuer::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.AttCertIssuer::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod::.ctor(Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod::.ctor(Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod::get_NotBeforeTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod::get_NotAfterTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeX509 Org.BouncyCastle.Asn1.X509.AttributeX509::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeX509 Org.BouncyCastle.Asn1.X509.AttributeX509::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeX509 Org.BouncyCastle.Asn1.X509.AttributeX509::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttributeX509::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttributeX509::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttributeX509::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.AttributeX509::get_AttrType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable[] Org.BouncyCastle.Asn1.X509.AttributeX509::GetAttributeValues()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.X509.AttributeX509::get_AttrValues()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.AttributeX509::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeCertificate Org.BouncyCastle.Asn1.X509.AttributeCertificate::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeCertificate Org.BouncyCastle.Asn1.X509.AttributeCertificate::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeCertificate Org.BouncyCastle.Asn1.X509.AttributeCertificate::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttributeCertificate::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttributeCertificate::.ctor(Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttributeCertificate::.ctor(Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo Org.BouncyCastle.Asn1.X509.AttributeCertificate::get_ACInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.AttributeCertificate::get_SignatureAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.AttributeCertificate::get_SignatureValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.X509.AttributeCertificate::GetSignatureOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.AttributeCertificate::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Holder Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_Holder()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttCertIssuer Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_AttrCertValidityPeriod()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_Attributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_IssuerUniqueID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttributeTable::.ctor(System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttributeTable::.ctor(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttributeTable::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttributeTable::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttributeTable::.ctor(Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AttributeTable::.ctor(Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeX509 Org.BouncyCastle.Asn1.X509.AttributeTable::Get(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Asn1.X509.AttributeTable::ToDictionary()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::FromExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::.ctor(Org.BouncyCastle.Asn1.X509.AccessDescription)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::.ctor(Org.BouncyCastle.Asn1.X509.AccessDescription)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::.ctor(Org.BouncyCastle.Asn1.X509.AccessDescription[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::.ctor(Org.BouncyCastle.Asn1.X509.AccessDescription[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AccessDescription[] Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::GetAccessDescriptions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::FromExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(System.Byte[],Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(System.Byte[],Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::GetKeyIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::get_AuthorityCertIssuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::get_AuthorityCertSerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::get_KeyIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.BasicConstraints Org.BouncyCastle.Asn1.X509.BasicConstraints::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.BasicConstraints Org.BouncyCastle.Asn1.X509.BasicConstraints::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.BasicConstraints Org.BouncyCastle.Asn1.X509.BasicConstraints::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.BasicConstraints Org.BouncyCastle.Asn1.X509.BasicConstraints::FromExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.BasicConstraints::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.BasicConstraints::.ctor(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.BasicConstraints::.ctor(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.BasicConstraints::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.BasicConstraints::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.BasicConstraints::IsCA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X509.BasicConstraints::get_PathLenConstraint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X509.BasicConstraints::get_PathLenConstraintInteger()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.BasicConstraints::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.BasicConstraints::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificateList Org.BouncyCastle.Asn1.X509.CertificateList::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificateList Org.BouncyCastle.Asn1.X509.CertificateList::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificateList Org.BouncyCastle.Asn1.X509.CertificateList::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificateList Org.BouncyCastle.Asn1.X509.CertificateList::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CertificateList::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateList Org.BouncyCastle.Asn1.X509.CertificateList::get_TbsCertList()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlEntry[] Org.BouncyCastle.Asn1.X509.CertificateList::GetRevokedCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.X509.CertificateList::GetRevokedCertificateEnumeration()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.CertificateList::get_SignatureAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.CertificateList::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.X509.CertificateList::GetSignatureOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.CertificateList::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.X509.CertificateList::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.CertificateList::get_ThisUpdate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.CertificateList::get_NextUpdate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.X509.CertificateList::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.CertificateList::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificatePair Org.BouncyCastle.Asn1.X509.CertificatePair::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificatePair Org.BouncyCastle.Asn1.X509.CertificatePair::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificatePair Org.BouncyCastle.Asn1.X509.CertificatePair::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CertificatePair::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CertificatePair::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure,Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CertificatePair::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure,Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.CertificatePair::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509CertificateStructure Org.BouncyCastle.Asn1.X509.CertificatePair::get_Forward()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509CertificateStructure Org.BouncyCastle.Asn1.X509.CertificatePair::get_Reverse()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificatePolicies Org.BouncyCastle.Asn1.X509.CertificatePolicies::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificatePolicies Org.BouncyCastle.Asn1.X509.CertificatePolicies::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificatePolicies Org.BouncyCastle.Asn1.X509.CertificatePolicies::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificatePolicies Org.BouncyCastle.Asn1.X509.CertificatePolicies::FromExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CertificatePolicies::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CertificatePolicies::.ctor(Org.BouncyCastle.Asn1.X509.PolicyInformation)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CertificatePolicies::.ctor(Org.BouncyCastle.Asn1.X509.PolicyInformation)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CertificatePolicies::.ctor(Org.BouncyCastle.Asn1.X509.PolicyInformation[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CertificatePolicies::.ctor(Org.BouncyCastle.Asn1.X509.PolicyInformation[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyInformation[] Org.BouncyCastle.Asn1.X509.CertificatePolicies::GetPolicyInformation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyInformation Org.BouncyCastle.Asn1.X509.CertificatePolicies::GetPolicyInformation(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.CertificatePolicies::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.CertificatePolicies::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CertPolicyID::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CertPolicyID::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlDistPoint Org.BouncyCastle.Asn1.X509.CrlDistPoint::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlDistPoint Org.BouncyCastle.Asn1.X509.CrlDistPoint::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlDistPoint Org.BouncyCastle.Asn1.X509.CrlDistPoint::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlDistPoint Org.BouncyCastle.Asn1.X509.CrlDistPoint::FromExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CrlDistPoint::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CrlDistPoint::.ctor(Org.BouncyCastle.Asn1.X509.DistributionPoint[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CrlDistPoint::.ctor(Org.BouncyCastle.Asn1.X509.DistributionPoint[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPoint[] Org.BouncyCastle.Asn1.X509.CrlDistPoint::GetDistributionPoints()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.CrlDistPoint::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.CrlDistPoint::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CrlNumber::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CrlNumber::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X509.CrlNumber::get_Number()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.CrlNumber::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CrlReason::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CrlReason::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CrlReason::.ctor(Org.BouncyCastle.Asn1.DerEnumerated)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CrlReason::.ctor(Org.BouncyCastle.Asn1.DerEnumerated)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.CrlReason::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CrlReason::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::FromExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.Validity,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.X509.X509Extensions,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.Validity,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.X509.X509Extensions,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::get_SignatureValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::get_Subject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::get_SubjectPublicKeyInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Validity Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::get_Validity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DigestInfo Org.BouncyCastle.Asn1.X509.DigestInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DigestInfo Org.BouncyCastle.Asn1.X509.DigestInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DigestInfo Org.BouncyCastle.Asn1.X509.DigestInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DigestInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DigestInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DigestInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DigestInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DigestInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.DigestInfo::get_AlgorithmID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.DigestInfo::get_DigestAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.X509.DigestInfo::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.X509.DigestInfo::GetDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.DigestInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DisplayText Org.BouncyCastle.Asn1.X509.DisplayText::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DisplayText Org.BouncyCastle.Asn1.X509.DisplayText::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DisplayText Org.BouncyCastle.Asn1.X509.DisplayText::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DisplayText Org.BouncyCastle.Asn1.X509.DisplayText::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DisplayText::.ctor(System.Int32,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DisplayText::.ctor(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DisplayText::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DisplayText::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DisplayText::.ctor(Org.BouncyCastle.Asn1.IAsn1String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DisplayText::.ctor(Org.BouncyCastle.Asn1.IAsn1String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.DisplayText::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.DisplayText::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DistributionPoint/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DistributionPoint/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DistributionPoint/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ReasonFlags Org.BouncyCastle.Asn1.X509.DistributionPoint/<>c::<.ctor>b__6_0(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPoint Org.BouncyCastle.Asn1.X509.DistributionPoint::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPoint Org.BouncyCastle.Asn1.X509.DistributionPoint::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPoint Org.BouncyCastle.Asn1.X509.DistributionPoint::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DistributionPoint::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DistributionPoint::.ctor(Org.BouncyCastle.Asn1.X509.DistributionPointName,Org.BouncyCastle.Asn1.X509.ReasonFlags,Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DistributionPoint::.ctor(Org.BouncyCastle.Asn1.X509.DistributionPointName,Org.BouncyCastle.Asn1.X509.ReasonFlags,Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPointName Org.BouncyCastle.Asn1.X509.DistributionPoint::get_DistributionPointName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ReasonFlags Org.BouncyCastle.Asn1.X509.DistributionPoint::get_Reasons()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.X509.DistributionPoint::get_CrlIssuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.DistributionPoint::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.DistributionPoint::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPointName Org.BouncyCastle.Asn1.X509.DistributionPointName::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPointName Org.BouncyCastle.Asn1.X509.DistributionPointName::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPointName Org.BouncyCastle.Asn1.X509.DistributionPointName::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPointName Org.BouncyCastle.Asn1.X509.DistributionPointName::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DistributionPointName::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DistributionPointName::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DistributionPointName::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DistributionPointName::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.DistributionPointName::get_PointType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.X509.DistributionPointName::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.DistributionPointName::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.DistributionPointName::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.DistributionPointName::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DsaParameter Org.BouncyCastle.Asn1.X509.DsaParameter::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DsaParameter Org.BouncyCastle.Asn1.X509.DsaParameter::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DsaParameter Org.BouncyCastle.Asn1.X509.DsaParameter::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DsaParameter::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DsaParameter::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DsaParameter::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X509.DsaParameter::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X509.DsaParameter::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X509.DsaParameter::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.DsaParameter::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.EdiPartyName Org.BouncyCastle.Asn1.X509.EdiPartyName::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.EdiPartyName Org.BouncyCastle.Asn1.X509.EdiPartyName::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.EdiPartyName::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.EdiPartyName::.ctor(Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.X500.DirectoryString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.EdiPartyName::.ctor(Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.X500.DirectoryString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.X509.EdiPartyName::get_NameAssigner()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.X509.EdiPartyName::get_PartyName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.EdiPartyName::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::FromExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::.ctor(Org.BouncyCastle.Asn1.X509.KeyPurposeID[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::.ctor(Org.BouncyCastle.Asn1.X509.KeyPurposeID[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::HasKeyPurposeId(Org.BouncyCastle.Asn1.X509.KeyPurposeID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::GetAllUsages()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier[] Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::GetAllUsagesArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Extension Org.BouncyCastle.Asn1.X509.Extension::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Extension Org.BouncyCastle.Asn1.X509.Extension::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Extension Org.BouncyCastle.Asn1.X509.Extension::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Extension::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Extension::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerBoolean,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Extension::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerBoolean,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean Org.BouncyCastle.Asn1.X509.Extension::get_Critical()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.Extension::get_ExtnID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.X509.Extension::get_ExtnValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.Extension::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extension Org.BouncyCastle.Asn1.X509.Extension::GetX509Extension()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Extension::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.X509.GeneralName::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.X509.GeneralName::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.X509.GeneralName::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.X509.GeneralName::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralName::.ctor(Org.BouncyCastle.Asn1.X509.X509Name)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralName::.ctor(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralName::.ctor(Org.BouncyCastle.Asn1.Asn1Object,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralName::.ctor(Org.BouncyCastle.Asn1.Asn1Object,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralName::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralName::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralName::.ctor(System.Int32,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralName::.ctor(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.GeneralName::get_TagNo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.X509.GeneralName::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.GeneralName::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.GeneralName::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.X509.GeneralNames::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.X509.GeneralNames::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.X509.GeneralNames::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.X509.GeneralNames::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.X509.GeneralNames::FromExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralNames::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralNames::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralNames::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralNames::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralNames::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.GeneralNames::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName[] Org.BouncyCastle.Asn1.X509.GeneralNames::GetNames()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.GeneralNames::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.GeneralNames::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralSubtree Org.BouncyCastle.Asn1.X509.GeneralSubtree::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralSubtree Org.BouncyCastle.Asn1.X509.GeneralSubtree::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralSubtree Org.BouncyCastle.Asn1.X509.GeneralSubtree::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralSubtree::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralSubtree::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralSubtree::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralSubtree::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralSubtree::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.X509.GeneralSubtree::get_Base()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X509.GeneralSubtree::get_Minimum()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X509.GeneralSubtree::get_Maximum()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.GeneralSubtree::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Holder Org.BouncyCastle.Asn1.X509.Holder::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Holder Org.BouncyCastle.Asn1.X509.Holder::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Holder Org.BouncyCastle.Asn1.X509.Holder::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Holder::.ctor(Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Holder::.ctor(Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Holder::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Holder::.ctor(Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Holder::.ctor(Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Holder::.ctor(Org.BouncyCastle.Asn1.X509.IssuerSerial,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Holder::.ctor(Org.BouncyCastle.Asn1.X509.IssuerSerial,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.Holder::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Holder::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Holder::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Holder::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Holder::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Holder::.ctor(Org.BouncyCastle.Asn1.X509.ObjectDigestInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Holder::.ctor(Org.BouncyCastle.Asn1.X509.ObjectDigestInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuerSerial Org.BouncyCastle.Asn1.X509.Holder::get_BaseCertificateID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.X509.Holder::get_EntityName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ObjectDigestInfo Org.BouncyCastle.Asn1.X509.Holder::get_ObjectDigestInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.Holder::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IetfAttrSyntax Org.BouncyCastle.Asn1.X509.IetfAttrSyntax::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IetfAttrSyntax Org.BouncyCastle.Asn1.X509.IetfAttrSyntax::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IetfAttrSyntax Org.BouncyCastle.Asn1.X509.IetfAttrSyntax::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IetfAttrSyntax::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IetfAttrSyntax::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.X509.IetfAttrSyntax::get_PolicyAuthority()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.IetfAttrSyntax::get_ValueType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Object[] Org.BouncyCastle.Asn1.X509.IetfAttrSyntax::GetValues()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.IetfAttrSyntax::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuerSerial Org.BouncyCastle.Asn1.X509.IssuerSerial::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuerSerial Org.BouncyCastle.Asn1.X509.IssuerSerial::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuerSerial Org.BouncyCastle.Asn1.X509.IssuerSerial::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuerSerial Org.BouncyCastle.Asn1.X509.IssuerSerial::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuerSerial::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuerSerial::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuerSerial::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuerSerial::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuerSerial::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuerSerial::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuerSerial::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.X509.IssuerSerial::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X509.IssuerSerial::get_Serial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.IssuerSerial::get_IssuerUid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.IssuerSerial::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ReasonFlags Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint/<>c::<.ctor>b__11_0(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::.ctor(Org.BouncyCastle.Asn1.X509.DistributionPointName,System.Boolean,System.Boolean,Org.BouncyCastle.Asn1.X509.ReasonFlags,System.Boolean,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::.ctor(Org.BouncyCastle.Asn1.X509.DistributionPointName,System.Boolean,System.Boolean,Org.BouncyCastle.Asn1.X509.ReasonFlags,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::get_OnlyContainsUserCerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::get_OnlyContainsCACerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::get_IsIndirectCrl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::get_OnlyContainsAttributeCerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPointName Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::get_DistributionPoint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ReasonFlags Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::get_OnlySomeReasons()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.KeyPurposeID::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.KeyPurposeID::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyUsage Org.BouncyCastle.Asn1.X509.KeyUsage::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyUsage Org.BouncyCastle.Asn1.X509.KeyUsage::FromExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.KeyUsage::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.KeyUsage::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.KeyUsage::.ctor(Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.KeyUsage::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.NameConstraints Org.BouncyCastle.Asn1.X509.NameConstraints::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.NameConstraints Org.BouncyCastle.Asn1.X509.NameConstraints::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.NameConstraints Org.BouncyCastle.Asn1.X509.NameConstraints::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.NameConstraints::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.NameConstraints::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.NameConstraints::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.NameConstraints::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.NameConstraints::.ctor(System.Collections.Generic.IReadOnlyCollection`1,System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.NameConstraints::.ctor(System.Collections.Generic.IReadOnlyCollection`1,System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.X509.NameConstraints::get_PermittedSubtrees()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.X509.NameConstraints::get_ExcludedSubtrees()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.NameConstraints::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.NoticeReference Org.BouncyCastle.Asn1.X509.NoticeReference::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.NoticeReference Org.BouncyCastle.Asn1.X509.NoticeReference::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.NoticeReference Org.BouncyCastle.Asn1.X509.NoticeReference::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.NoticeReference Org.BouncyCastle.Asn1.X509.NoticeReference::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.NoticeReference::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.NoticeReference::.ctor(System.String,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.NoticeReference::.ctor(System.String,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.NoticeReference::.ctor(System.String,Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.NoticeReference::.ctor(System.String,Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.NoticeReference::.ctor(Org.BouncyCastle.Asn1.X509.DisplayText,Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.NoticeReference::.ctor(Org.BouncyCastle.Asn1.X509.DisplayText,Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DisplayText Org.BouncyCastle.Asn1.X509.NoticeReference::get_Organization()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger[] Org.BouncyCastle.Asn1.X509.NoticeReference::GetNoticeNumbers()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.NoticeReference::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ObjectDigestInfo Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ObjectDigestInfo Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ObjectDigestInfo Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::.ctor(System.Int32,System.String,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::.ctor(System.Int32,System.String,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEnumerated Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::get_DigestedObjectType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::get_OtherObjectTypeID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::get_DigestAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::get_ObjectDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.OtherName Org.BouncyCastle.Asn1.X509.OtherName::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.OtherName Org.BouncyCastle.Asn1.X509.OtherName::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.OtherName Org.BouncyCastle.Asn1.X509.OtherName::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.OtherName::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.OtherName::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.OtherName::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.OtherName::get_TypeID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.X509.OtherName::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.OtherName::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyInformation Org.BouncyCastle.Asn1.X509.PolicyInformation::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyInformation Org.BouncyCastle.Asn1.X509.PolicyInformation::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyInformation Org.BouncyCastle.Asn1.X509.PolicyInformation::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyInformation::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyInformation::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyInformation::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyInformation::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyInformation::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.PolicyInformation::get_PolicyIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.X509.PolicyInformation::get_PolicyQualifiers()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.PolicyInformation::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyMappings::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyMappings::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyMappings::.ctor(System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyMappings::.ctor(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.PolicyMappings::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyQualifierID::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyQualifierID::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo::get_PolicyQualifierId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo::get_Qualifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PrivateKeyUsagePeriod Org.BouncyCastle.Asn1.X509.PrivateKeyUsagePeriod::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PrivateKeyUsagePeriod Org.BouncyCastle.Asn1.X509.PrivateKeyUsagePeriod::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PrivateKeyUsagePeriod Org.BouncyCastle.Asn1.X509.PrivateKeyUsagePeriod::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.PrivateKeyUsagePeriod::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.X509.PrivateKeyUsagePeriod::get_NotBefore()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.X509.PrivateKeyUsagePeriod::get_NotAfter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.PrivateKeyUsagePeriod::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.ReasonFlags::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.ReasonFlags::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.ReasonFlags::.ctor(Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.ReasonFlags::.ctor(Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGeneralizedTime Org.BouncyCastle.Asn1.X509.Rfc5280Asn1Utilities::CreateGeneralizedTime(System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUtcTime Org.BouncyCastle.Asn1.X509.Rfc5280Asn1Utilities::CreateUtcTime(System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Rfc5280Asn1Utilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Rfc5280Asn1Utilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.RoleSyntax Org.BouncyCastle.Asn1.X509.RoleSyntax::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.RoleSyntax Org.BouncyCastle.Asn1.X509.RoleSyntax::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.RoleSyntax Org.BouncyCastle.Asn1.X509.RoleSyntax::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.RoleSyntax::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.RoleSyntax::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.RoleSyntax::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.RoleSyntax::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.RoleSyntax::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.RoleSyntax::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.RoleSyntax::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.X509.RoleSyntax::get_RoleAuthority()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.X509.RoleSyntax::get_RoleName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.RoleSyntax::GetRoleNameAsString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String[] Org.BouncyCastle.Asn1.X509.RoleSyntax::GetRoleAuthorityAsString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.RoleSyntax::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.RoleSyntax::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure::get_Modulus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure::get_PublicExponent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo::FromExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo::get_SubjectAltPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectDirectoryAttributes Org.BouncyCastle.Asn1.X509.SubjectDirectoryAttributes::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectDirectoryAttributes Org.BouncyCastle.Asn1.X509.SubjectDirectoryAttributes::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectDirectoryAttributes Org.BouncyCastle.Asn1.X509.SubjectDirectoryAttributes::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectDirectoryAttributes::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectDirectoryAttributes::.ctor(System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectDirectoryAttributes::.ctor(System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.SubjectDirectoryAttributes::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.X509.SubjectDirectoryAttributes::get_Attributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::FromExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::GetKeyIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::CreateSha1KeyIdentifier(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::CreateTruncatedSha1KeyIdentifier(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::get_AlgorithmID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::ParsePublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::get_PublicKeyData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Target Org.BouncyCastle.Asn1.X509.Target::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Target Org.BouncyCastle.Asn1.X509.Target::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Target Org.BouncyCastle.Asn1.X509.Target::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Target Org.BouncyCastle.Asn1.X509.Target::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Target::.ctor(Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Target::.ctor(Org.BouncyCastle.Asn1.X509.Target/Choice,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Target::.ctor(Org.BouncyCastle.Asn1.X509.Target/Choice,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.X509.Target::get_TargetGroup()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.X509.Target::get_TargetName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.Target::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TargetInformation Org.BouncyCastle.Asn1.X509.TargetInformation::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TargetInformation Org.BouncyCastle.Asn1.X509.TargetInformation::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TargetInformation Org.BouncyCastle.Asn1.X509.TargetInformation::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TargetInformation::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Targets[] Org.BouncyCastle.Asn1.X509.TargetInformation::GetTargetsObjects()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TargetInformation::.ctor(Org.BouncyCastle.Asn1.X509.Targets)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TargetInformation::.ctor(Org.BouncyCastle.Asn1.X509.Targets)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TargetInformation::.ctor(Org.BouncyCastle.Asn1.X509.Target[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TargetInformation::.ctor(Org.BouncyCastle.Asn1.X509.Target[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.TargetInformation::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Targets Org.BouncyCastle.Asn1.X509.Targets::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Targets Org.BouncyCastle.Asn1.X509.Targets::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Targets Org.BouncyCastle.Asn1.X509.Targets::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Targets::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Targets::.ctor(Org.BouncyCastle.Asn1.X509.Target[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Targets::.ctor(Org.BouncyCastle.Asn1.X509.Target[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Target[] Org.BouncyCastle.Asn1.X509.Targets::GetTargets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.Targets::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateStructure Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateStructure Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateStructure Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.Validity,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.Validity,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_VersionNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Validity Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_Validity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_StartDate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_EndDate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_Subject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_SubjectPublicKeyInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_IssuerUniqueID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_SubjectUniqueID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.TbsCertificateStructure::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlEntry Org.BouncyCastle.Asn1.X509.CrlEntry::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlEntry Org.BouncyCastle.Asn1.X509.CrlEntry::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlEntry Org.BouncyCastle.Asn1.X509.CrlEntry::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CrlEntry::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CrlEntry::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X509.CrlEntry::get_UserCertificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.CrlEntry::get_RevocationDate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.X509.CrlEntry::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.CrlEntry::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration/RevokedCertificatesEnumerator::.ctor(System.Collections.Generic.IEnumerator`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration/RevokedCertificatesEnumerator::.ctor(System.Collections.Generic.IEnumerator`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration/RevokedCertificatesEnumerator::Dispose()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration/RevokedCertificatesEnumerator::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration/RevokedCertificatesEnumerator::MoveNext()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration/RevokedCertificatesEnumerator::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlEntry Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration/RevokedCertificatesEnumerator::get_Current()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateList Org.BouncyCastle.Asn1.X509.TbsCertificateList::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateList Org.BouncyCastle.Asn1.X509.TbsCertificateList::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateList Org.BouncyCastle.Asn1.X509.TbsCertificateList::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.TbsCertificateList::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.TbsCertificateList::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X509.TbsCertificateList::get_VersionNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.TbsCertificateList::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.X509.TbsCertificateList::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.TbsCertificateList::get_ThisUpdate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.TbsCertificateList::get_NextUpdate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlEntry[] Org.BouncyCastle.Asn1.X509.TbsCertificateList::GetRevokedCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.X509.TbsCertificateList::GetRevokedCertificateEnumeration()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.X509.TbsCertificateList::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.TbsCertificateList::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.Time::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.Time::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.Time::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.Time::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Time::.ctor(Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Time::.ctor(Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Time::.ctor(Org.BouncyCastle.Asn1.Asn1UtcTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Time::.ctor(Org.BouncyCastle.Asn1.Asn1UtcTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Time::.ctor(System.DateTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Time::.ctor(System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.X509.Time::ToDateTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.Time::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.Time::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.UserNotice Org.BouncyCastle.Asn1.X509.UserNotice::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.UserNotice Org.BouncyCastle.Asn1.X509.UserNotice::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.UserNotice Org.BouncyCastle.Asn1.X509.UserNotice::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.UserNotice::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.UserNotice::.ctor(Org.BouncyCastle.Asn1.X509.NoticeReference,Org.BouncyCastle.Asn1.X509.DisplayText)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.UserNotice::.ctor(Org.BouncyCastle.Asn1.X509.NoticeReference,Org.BouncyCastle.Asn1.X509.DisplayText)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.UserNotice::.ctor(Org.BouncyCastle.Asn1.X509.NoticeReference,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.UserNotice::.ctor(Org.BouncyCastle.Asn1.X509.NoticeReference,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.NoticeReference Org.BouncyCastle.Asn1.X509.UserNotice::get_NoticeRef()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DisplayText Org.BouncyCastle.Asn1.X509.UserNotice::get_ExplicitText()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.UserNotice::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetSerialNumber(Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetSignature(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetIssuer(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetValidity(Org.BouncyCastle.Asn1.X509.Validity)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetStartDate(Org.BouncyCastle.Asn1.X509.Time)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetStartDate(Org.BouncyCastle.Asn1.Asn1UtcTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetEndDate(Org.BouncyCastle.Asn1.X509.Time)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetEndDate(Org.BouncyCastle.Asn1.Asn1UtcTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetSubject(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::SetSubjectPublicKeyInfo(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateStructure Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::GenerateTbsCertificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetHolder(Org.BouncyCastle.Asn1.X509.Holder)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::AddAttribute(System.String,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::AddAttribute(Org.BouncyCastle.Asn1.X509.AttributeX509)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetSerialNumber(Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetSignature(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetIssuer(Org.BouncyCastle.Asn1.X509.AttCertIssuer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetStartDate(Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetEndDate(Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetIssuerUniqueID(Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::SetExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::GenerateAttributeCertificateInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.V2Form Org.BouncyCastle.Asn1.X509.V2Form::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.V2Form Org.BouncyCastle.Asn1.X509.V2Form::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.V2Form Org.BouncyCastle.Asn1.X509.V2Form::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.V2Form Org.BouncyCastle.Asn1.X509.V2Form::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2Form::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2Form::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2Form::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2Form::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2Form::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2Form::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.X509.ObjectDigestInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2Form::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.X509.ObjectDigestInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2Form::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.X509.IssuerSerial,Org.BouncyCastle.Asn1.X509.ObjectDigestInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2Form::.ctor(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.X509.IssuerSerial,Org.BouncyCastle.Asn1.X509.ObjectDigestInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.X509.V2Form::get_IssuerName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuerSerial Org.BouncyCastle.Asn1.X509.V2Form::get_BaseCertificateID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ObjectDigestInfo Org.BouncyCastle.Asn1.X509.V2Form::get_ObjectDigestInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.V2Form::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::SetSignature(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::SetIssuer(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::SetThisUpdate(Org.BouncyCastle.Asn1.Asn1UtcTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::SetNextUpdate(Org.BouncyCastle.Asn1.Asn1UtcTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::SetThisUpdate(Org.BouncyCastle.Asn1.X509.Time)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::SetNextUpdate(Org.BouncyCastle.Asn1.X509.Time)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::AddCrlEntry(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::AddCrlEntry(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1UtcTime,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::AddCrlEntry(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.Time,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::AddCrlEntry(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.Time,System.Int32,Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::AddCrlEntry(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.Time,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::SetExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::GeneratePreTbsCertList()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateList Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::GenerateTbsCertList()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetSerialNumber(Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetSignature(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetIssuer(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetValidity(Org.BouncyCastle.Asn1.X509.Validity)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetStartDate(Org.BouncyCastle.Asn1.X509.Time)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetStartDate(Org.BouncyCastle.Asn1.Asn1UtcTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetEndDate(Org.BouncyCastle.Asn1.X509.Time)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetEndDate(Org.BouncyCastle.Asn1.Asn1UtcTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetSubject(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetIssuerUniqueID(Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetSubjectUniqueID(Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetSubjectPublicKeyInfo(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::SetExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::GeneratePreTbsCertificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateStructure Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::GenerateTbsCertificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Validity Org.BouncyCastle.Asn1.X509.Validity::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Validity Org.BouncyCastle.Asn1.X509.Validity::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Validity Org.BouncyCastle.Asn1.X509.Validity::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Validity::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Validity::.ctor(Org.BouncyCastle.Asn1.X509.Time,Org.BouncyCastle.Asn1.X509.Time)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Validity::.ctor(Org.BouncyCastle.Asn1.X509.Time,Org.BouncyCastle.Asn1.X509.Time)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.Validity::get_NotBefore()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.Validity::get_NotAfter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.Validity::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Attributes::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Attributes::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Attributes::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509CertificateStructure Org.BouncyCastle.Asn1.X509.X509CertificateStructure::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509CertificateStructure Org.BouncyCastle.Asn1.X509.X509CertificateStructure::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509CertificateStructure Org.BouncyCastle.Asn1.X509.X509CertificateStructure::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509CertificateStructure Org.BouncyCastle.Asn1.X509.X509CertificateStructure::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509CertificateStructure::.ctor(Org.BouncyCastle.Asn1.X509.TbsCertificateStructure,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509CertificateStructure::.ctor(Org.BouncyCastle.Asn1.X509.TbsCertificateStructure,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509CertificateStructure::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateStructure Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_TbsCertificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Validity Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_Validity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_StartDate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_EndDate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_Subject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_SubjectPublicKeyInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_IssuerUniqueID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_SubjectUniqueID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_SignatureAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.X509.X509CertificateStructure::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.X509.X509CertificateStructure::GetSignatureOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.X509CertificateStructure::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.X509DefaultEntryConverter::GetConvertedValue(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509DefaultEntryConverter::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509DefaultEntryConverter::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Extension::.ctor(Org.BouncyCastle.Asn1.DerBoolean,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Extension::.ctor(Org.BouncyCastle.Asn1.DerBoolean,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Extension::.ctor(System.Boolean,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Extension::.ctor(System.Boolean,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.X509Extension::get_IsCritical()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.X509.X509Extension::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.X509Extension::GetParsedValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.X509Extension::GetHashCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.X509Extension::Equals(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.X509Extension::ConvertValueToObject(Org.BouncyCastle.Asn1.X509.X509Extension)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extension Org.BouncyCastle.Asn1.X509.X509Extensions::GetExtension(Org.BouncyCastle.Asn1.X509.X509Extensions,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.X509Extensions::GetExtensionParsedValue(Org.BouncyCastle.Asn1.X509.X509Extensions,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.X509.X509Extensions::GetExtensionValue(Org.BouncyCastle.Asn1.X509.X509Extensions,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.X509.X509Extensions::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.X509.X509Extensions::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.X509.X509Extensions::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.X509.X509Extensions::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Extensions::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Extensions::.ctor(System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Extensions::.ctor(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Extensions::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Extensions::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Extensions::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Extensions::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.X509Extensions::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.X509.X509Extensions::get_ExtensionOids()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extension Org.BouncyCastle.Asn1.X509.X509Extensions::GetExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.X509Extensions::GetExtensionParsedValue(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.X509.X509Extensions::GetExtensionValue(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.X509Extensions::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.X509.X509Extensions::ToAsn1ObjectTrimmed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.X509Extensions::Equivalent(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier[] Org.BouncyCastle.Asn1.X509.X509Extensions::GetExtensionOids()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier[] Org.BouncyCastle.Asn1.X509.X509Extensions::GetNonCriticalExtensionOids()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier[] Org.BouncyCastle.Asn1.X509.X509Extensions::GetCriticalExtensionOids()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.X509Extensions::HasAnyCriticalExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Extensions::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::AddExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,Org.BouncyCastle.Asn1.IAsn1Convertible)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::AddExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::AddExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::AddExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.X509Extension)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::AddExtension(Org.BouncyCastle.Asn1.X509.Extension)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::AddExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::Generate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extension Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::GetExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::HasExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::get_IsEmpty()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::RemoveExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::ReplaceExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,Org.BouncyCastle.Asn1.IAsn1Convertible)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::ReplaceExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::ReplaceExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::ReplaceExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.X509Extension)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::ReplaceExtension(Org.BouncyCastle.Asn1.X509.Extension)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::Reset()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.X509Name::get_DefaultReverse()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::set_DefaultReverse(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.X509.X509Name::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.X509.X509Name::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.X509.X509Name::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.X509.X509Name::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Asn1.X509.X509NameEntryConverter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Asn1.X509.X509NameEntryConverter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,Org.BouncyCastle.Asn1.X509.X509NameEntryConverter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1,Org.BouncyCastle.Asn1.X509.X509NameEntryConverter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509NameEntryConverter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.String,Org.BouncyCastle.Asn1.X509.X509NameEntryConverter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Boolean,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Boolean,System.String,Org.BouncyCastle.Asn1.X509.X509NameEntryConverter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Boolean,System.String,Org.BouncyCastle.Asn1.X509.X509NameEntryConverter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Boolean,System.Collections.Generic.IDictionary`2,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Boolean,System.Collections.Generic.IDictionary`2,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Boolean,System.Collections.Generic.IDictionary`2,System.String,Org.BouncyCastle.Asn1.X509.X509NameEntryConverter)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::.ctor(System.Boolean,System.Collections.Generic.IDictionary`2,System.String,Org.BouncyCastle.Asn1.X509.X509NameEntryConverter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Asn1.X509.X509Name::GetOidList()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Asn1.X509.X509Name::GetValueList()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Asn1.X509.X509Name::GetValueList(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.X509Name::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.X509Name::Equivalent(Org.BouncyCastle.Asn1.X509.X509Name,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.X509Name::Equivalent(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.X509Name::ToString(System.Boolean,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.X509Name::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.X509NameEntryConverter::GetConvertedValue(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509NameEntryConverter::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509NameTokenizer::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509NameTokenizer::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509NameTokenizer::.ctor(System.String,System.Char)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509NameTokenizer::.ctor(System.String,System.Char)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.X509NameTokenizer::HasMoreTokens()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.X509NameTokenizer::NextToken()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::.ctor(Org.BouncyCastle.Asn1.X500.DirectoryString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::.ctor(Org.BouncyCastle.Asn1.X500.DirectoryString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::.ctor(Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::.ctor(Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::get_Pseudonym()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::get_Surname()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString[] Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::GetGivenName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SigI.PersonalData Org.BouncyCastle.Asn1.X509.SigI.PersonalData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SigI.PersonalData Org.BouncyCastle.Asn1.X509.SigI.PersonalData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SigI.PersonalData Org.BouncyCastle.Asn1.X509.SigI.PersonalData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SigI.PersonalData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SigI.PersonalData::.ctor(Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.X500.DirectoryString,System.String,Org.BouncyCastle.Asn1.X500.DirectoryString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SigI.PersonalData::.ctor(Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.X500.DirectoryString,System.String,Org.BouncyCastle.Asn1.X500.DirectoryString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym Org.BouncyCastle.Asn1.X509.SigI.PersonalData::get_NameOrPseudonym()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X509.SigI.PersonalData::get_NameDistinguisher()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.X509.SigI.PersonalData::get_DateOfBirth()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.X509.SigI.PersonalData::get_PlaceOfBirth()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.SigI.PersonalData::get_Gender()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.X509.SigI.PersonalData::get_PostalAddress()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.SigI.PersonalData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SigI.SigIObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.SigI.SigIObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.BiometricData Org.BouncyCastle.Asn1.X509.Qualified.BiometricData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.BiometricData Org.BouncyCastle.Asn1.X509.Qualified.BiometricData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.BiometricData Org.BouncyCastle.Asn1.X509.Qualified.BiometricData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.BiometricData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.BiometricData::.ctor(Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.BiometricData::.ctor(Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.BiometricData::.ctor(Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.DerIA5String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.BiometricData::.ctor(Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.DerIA5String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData Org.BouncyCastle.Asn1.X509.Qualified.BiometricData::get_TypeOfBiometricData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.X509.Qualified.BiometricData::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.X509.Qualified.BiometricData::get_BiometricDataHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String Org.BouncyCastle.Asn1.X509.Qualified.BiometricData::get_SourceDataUri()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.Qualified.BiometricData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.EtsiQCObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.EtsiQCObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode::get_IsAlphabetic()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode::get_Alphabetic()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode::get_Numeric()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue::.ctor(Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue::.ctor(Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue::get_Currency()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue::get_Amount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue::get_Exponent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.QCStatement Org.BouncyCastle.Asn1.X509.Qualified.QCStatement::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.QCStatement Org.BouncyCastle.Asn1.X509.Qualified.QCStatement::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.QCStatement Org.BouncyCastle.Asn1.X509.Qualified.QCStatement::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.QCStatement::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.QCStatement::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.QCStatement::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.QCStatement::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.QCStatement::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.Qualified.QCStatement::get_StatementId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.X509.Qualified.QCStatement::get_StatementInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.Qualified.QCStatement::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.Rfc3739QCObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.Rfc3739QCObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.GeneralName[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.GeneralName[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::get_SemanticsIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName[] Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::GetNameRegistrationAuthorities()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::get_IsPredefined()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::get_PredefinedBiometricType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::get_BiometricDataOid()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.X500.DirectoryString::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.X500.DirectoryString::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.X500.DirectoryString::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.X500.DirectoryString::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.DirectoryString::.ctor(Org.BouncyCastle.Asn1.DerStringBase)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.DirectoryString::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.DirectoryString::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X500.DirectoryString::GetString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X500.DirectoryString::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.Rdn Org.BouncyCastle.Asn1.X500.Rdn::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.Rdn Org.BouncyCastle.Asn1.X500.Rdn::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.Rdn Org.BouncyCastle.Asn1.X500.Rdn::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.Rdn::.ctor(Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.Rdn::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.Rdn::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.Rdn::.ctor(Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.Rdn::.ctor(Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.Rdn::.ctor(Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.Rdn::.ctor(Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X500.Rdn::get_IsMultiValued()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X500.Rdn::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue Org.BouncyCastle.Asn1.X500.Rdn::GetFirst()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue[] Org.BouncyCastle.Asn1.X500.Rdn::GetTypesAndValues()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X500.Rdn::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X500.Style.IetfUtilities::Unescape(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X500.Style.IetfUtilities::ValueToString(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X500.Style.IetfUtilities::Canonicalize(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X500.Style.IetfUtilities::CanonicalString(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X500.Style.IetfUtilities::StripInternalSpaces(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X500.Style.IetfUtilities::RdnAreEqual(Org.BouncyCastle.Asn1.X500.Rdn,Org.BouncyCastle.Asn1.X500.Rdn)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X500.Style.IetfUtilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Utilities.Asn1Dump::Dump(System.IO.Stream,System.IO.TextWriter)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Utilities.Asn1Dump::DumpAsString(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Utilities.Asn1Dump::DumpAsString(Org.BouncyCastle.Asn1.Asn1Encodable,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.Accuracy Org.BouncyCastle.Asn1.Tsp.Accuracy::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.Accuracy Org.BouncyCastle.Asn1.Tsp.Accuracy::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.Accuracy Org.BouncyCastle.Asn1.Tsp.Accuracy::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.Accuracy Org.BouncyCastle.Asn1.Tsp.Accuracy::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.Accuracy::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.Accuracy::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.Accuracy::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Tsp.Accuracy::get_Seconds()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Tsp.Accuracy::get_Millis()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Tsp.Accuracy::get_Micros()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Tsp.Accuracy::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Tsp.PartialHashtree[],Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Tsp.PartialHashtree[],Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Cms.Attributes,Org.BouncyCastle.Asn1.Tsp.PartialHashtree[],Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Cms.Attributes,Org.BouncyCastle.Asn1.Tsp.PartialHashtree[],Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::GetDigestAlgorithmIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::GetTimeStampDigestValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::DigestAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.PartialHashtree Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::GetHashTreeLeaf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.PartialHashtree[] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::GetReducedHashTree()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::get_TimeStamp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain::.ctor(Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain::.ctor(Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain::.ctor(Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain::.ctor(Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp[] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain::GetArchiveTimestamps()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain::Append(Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence::.ctor(Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence::.ctor(Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence::.ctor(Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence::.ctor(Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain[] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence::GetArchiveTimeStampChains()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence::Append(Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.CryptoInfos Org.BouncyCastle.Asn1.Tsp.CryptoInfos::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.CryptoInfos Org.BouncyCastle.Asn1.Tsp.CryptoInfos::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.CryptoInfos Org.BouncyCastle.Asn1.Tsp.CryptoInfos::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.CryptoInfos::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.CryptoInfos::.ctor(Org.BouncyCastle.Asn1.Cms.Attribute[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.CryptoInfos::.ctor(Org.BouncyCastle.Asn1.Cms.Attribute[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attribute[] Org.BouncyCastle.Asn1.Tsp.CryptoInfos::GetAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Tsp.CryptoInfos::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.EncryptionInfo Org.BouncyCastle.Asn1.Tsp.EncryptionInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.EncryptionInfo Org.BouncyCastle.Asn1.Tsp.EncryptionInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.EncryptionInfo Org.BouncyCastle.Asn1.Tsp.EncryptionInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.EncryptionInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.EncryptionInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.EncryptionInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Tsp.EncryptionInfo::get_EncryptionInfoType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Tsp.EncryptionInfo::get_EncryptionInfoValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Tsp.EncryptionInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.EvidenceRecord Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.EvidenceRecord Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.EvidenceRecord Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::.ctor(Org.BouncyCastle.Asn1.Tsp.EvidenceRecord,Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence,Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::.ctor(Org.BouncyCastle.Asn1.Tsp.CryptoInfos,Org.BouncyCastle.Asn1.Tsp.EncryptionInfo,Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::.ctor(Org.BouncyCastle.Asn1.Tsp.CryptoInfos,Org.BouncyCastle.Asn1.Tsp.EncryptionInfo,Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier[],Org.BouncyCastle.Asn1.Tsp.CryptoInfos,Org.BouncyCastle.Asn1.Tsp.EncryptionInfo,Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier[],Org.BouncyCastle.Asn1.Tsp.CryptoInfos,Org.BouncyCastle.Asn1.Tsp.EncryptionInfo,Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier[] Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::GetDigestAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.CryptoInfos Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::get_CryptoInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.EncryptionInfo Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::get_EncryptionInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::get_ArchiveTimeStampSequence()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.EvidenceRecord Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::AddArchiveTimeStamp(Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.EvidenceRecord::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.MessageImprint Org.BouncyCastle.Asn1.Tsp.MessageImprint::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.MessageImprint Org.BouncyCastle.Asn1.Tsp.MessageImprint::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.MessageImprint Org.BouncyCastle.Asn1.Tsp.MessageImprint::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.MessageImprint::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.MessageImprint::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.MessageImprint::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.MessageImprint::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.MessageImprint::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Tsp.MessageImprint::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Tsp.MessageImprint::get_HashedMessage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Tsp.MessageImprint::GetHashedMessage()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Tsp.MessageImprint::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.PartialHashtree/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.PartialHashtree/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.PartialHashtree/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Tsp.PartialHashtree/<>c::b__8_0(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.PartialHashtree Org.BouncyCastle.Asn1.Tsp.PartialHashtree::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.PartialHashtree Org.BouncyCastle.Asn1.Tsp.PartialHashtree::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.PartialHashtree Org.BouncyCastle.Asn1.Tsp.PartialHashtree::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.PartialHashtree::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.PartialHashtree::.ctor(System.Byte[][])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.PartialHashtree::.ctor(System.Byte[][])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Tsp.PartialHashtree::get_ValueCount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Asn1.Tsp.PartialHashtree::GetValues()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Tsp.PartialHashtree::ContainsHash(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Tsp.PartialHashtree::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TimeStampReq Org.BouncyCastle.Asn1.Tsp.TimeStampReq::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TimeStampReq Org.BouncyCastle.Asn1.Tsp.TimeStampReq::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TimeStampReq Org.BouncyCastle.Asn1.Tsp.TimeStampReq::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.TimeStampReq::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.TimeStampReq::.ctor(Org.BouncyCastle.Asn1.Tsp.MessageImprint,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerBoolean,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.TimeStampReq::.ctor(Org.BouncyCastle.Asn1.Tsp.MessageImprint,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerBoolean,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Tsp.TimeStampReq::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.MessageImprint Org.BouncyCastle.Asn1.Tsp.TimeStampReq::get_MessageImprint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Tsp.TimeStampReq::get_ReqPolicy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Tsp.TimeStampReq::get_Nonce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean Org.BouncyCastle.Asn1.Tsp.TimeStampReq::get_CertReq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.Tsp.TimeStampReq::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Tsp.TimeStampReq::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TimeStampResp Org.BouncyCastle.Asn1.Tsp.TimeStampResp::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TimeStampResp Org.BouncyCastle.Asn1.Tsp.TimeStampResp::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TimeStampResp Org.BouncyCastle.Asn1.Tsp.TimeStampResp::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.TimeStampResp::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.TimeStampResp::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo,Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.TimeStampResp::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo,Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo Org.BouncyCastle.Asn1.Tsp.TimeStampResp::get_Status()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Asn1.Tsp.TimeStampResp::get_TimeStampToken()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Tsp.TimeStampResp::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TstInfo Org.BouncyCastle.Asn1.Tsp.TstInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TstInfo Org.BouncyCastle.Asn1.Tsp.TstInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TstInfo Org.BouncyCastle.Asn1.Tsp.TstInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.TstInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.TstInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Tsp.MessageImprint,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Tsp.Accuracy,Org.BouncyCastle.Asn1.DerBoolean,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.TstInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Tsp.MessageImprint,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Tsp.Accuracy,Org.BouncyCastle.Asn1.DerBoolean,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Tsp.TstInfo::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.MessageImprint Org.BouncyCastle.Asn1.Tsp.TstInfo::get_MessageImprint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Tsp.TstInfo::get_Policy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Tsp.TstInfo::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.Accuracy Org.BouncyCastle.Asn1.Tsp.TstInfo::get_Accuracy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Tsp.TstInfo::get_GenTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean Org.BouncyCastle.Asn1.Tsp.TstInfo::get_Ordering()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Tsp.TstInfo::get_Nonce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.Tsp.TstInfo::get_Tsa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.Tsp.TstInfo::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Tsp.TstInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP160r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP160r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP160t1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP160t1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP192r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP192r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP192t1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP192t1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP224r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP224r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP224t1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP224t1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP256r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP256r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP256t1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP256t1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP320r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP320r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP320t1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP320t1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP384r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP384r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP384t1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP384t1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP512r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP512r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP512t1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP512t1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves::GetByName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves::GetByNameLazy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves::GetByOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves::GetByOidLazy(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves::GetName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves::GetOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves::get_Names()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeAttributes::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeAttributes::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Smime.SmimeCapabilities Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Smime.SmimeCapabilities Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Smime.SmimeCapabilities Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::GetCapabilitiesForOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapabilitiesAttribute::.ctor(Org.BouncyCastle.Asn1.Smime.SmimeCapabilityVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapabilitiesAttribute::.ctor(Org.BouncyCastle.Asn1.Smime.SmimeCapabilityVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Smime.SmimeCapability Org.BouncyCastle.Asn1.Smime.SmimeCapability::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Smime.SmimeCapability Org.BouncyCastle.Asn1.Smime.SmimeCapability::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Smime.SmimeCapability Org.BouncyCastle.Asn1.Smime.SmimeCapability::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapability::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapability::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapability::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapability::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapability::get_CapabilityID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Smime.SmimeCapability::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Smime.SmimeCapability::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapability::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapabilityVector::AddCapability(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapabilityVector::AddCapability(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapabilityVector::AddCapability(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1EncodableVector Org.BouncyCastle.Asn1.Smime.SmimeCapabilityVector::ToAsn1EncodableVector()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapabilityVector::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapabilityVector::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeEncryptionKeyPreferenceAttribute::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeEncryptionKeyPreferenceAttribute::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeEncryptionKeyPreferenceAttribute::.ctor(Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeEncryptionKeyPreferenceAttribute::.ctor(Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeEncryptionKeyPreferenceAttribute::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeEncryptionKeyPreferenceAttribute::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure/<>c::<.ctor>b__7_0(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::.ctor(System.Int32,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::.ctor(System.Int32,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::.ctor(System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::.ctor(System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::.ctor(System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::.ctor(System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::get_PrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::get_Parameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::GetKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::GetPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::GetParameters()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp112r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp112r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp112r2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp112r2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp128r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp128r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp128r2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp128r2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160k1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160k1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160r2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160r2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp192k1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp192k1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp192r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp192r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp224k1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp224k1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp224r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp224r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp256k1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp256k1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp256r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp256r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp384r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp384r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp521r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp521r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect113r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect113r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect113r2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect113r2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect131r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect131r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect131r2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect131r2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163k1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163k1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163r2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163r2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect193r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect193r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect193r2Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect193r2Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect233k1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect233k1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect233r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect233r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect239k1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect239k1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect283k1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect283k1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect283r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect283r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect409k1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect409k1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect409r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect409r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect571k1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect571k1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect571r1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect571r1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves::GetByName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.Sec.SecNamedCurves::GetByNameLazy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves::GetByOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.Sec.SecNamedCurves::GetByOidLazy(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Sec.SecNamedCurves::GetName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecNamedCurves::GetOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.Sec.SecNamedCurves::get_Names()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.AttributePkcs Org.BouncyCastle.Asn1.Pkcs.AttributePkcs::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.AttributePkcs Org.BouncyCastle.Asn1.Pkcs.AttributePkcs::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.AttributePkcs Org.BouncyCastle.Asn1.Pkcs.AttributePkcs::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.AttributePkcs::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.AttributePkcs::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.AttributePkcs::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.AttributePkcs::get_AttrType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Pkcs.AttributePkcs::get_AttrValues()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.AttributePkcs::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe::.ctor(Org.BouncyCastle.Asn1.Pkcs.ContentInfo[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe::.ctor(Org.BouncyCastle.Asn1.Pkcs.ContentInfo[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.ContentInfo[] Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe::GetContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertBag Org.BouncyCastle.Asn1.Pkcs.CertBag::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertBag Org.BouncyCastle.Asn1.Pkcs.CertBag::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertBag Org.BouncyCastle.Asn1.Pkcs.CertBag::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CertBag::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CertBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CertBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CertBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CertBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.CertBag::get_CertID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.CertBag::get_CertValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Pkcs.CertBag::get_CertValueEncodable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.CertBag::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertificationRequest Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertificationRequest Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertificationRequest Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::.ctor(Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::.ctor(Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::GetCertificationRequestInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::get_SignatureAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::GetSignatureOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.CertificationRequest::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::get_Subject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::get_SubjectPublicKeyInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::get_Attributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.ContentInfo Org.BouncyCastle.Asn1.Pkcs.ContentInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.ContentInfo Org.BouncyCastle.Asn1.Pkcs.ContentInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.ContentInfo Org.BouncyCastle.Asn1.Pkcs.ContentInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.ContentInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.ContentInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.ContentInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.ContentInfo::get_ContentType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Pkcs.ContentInfo::get_Content()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.ContentInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CrlBag Org.BouncyCastle.Asn1.Pkcs.CrlBag::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CrlBag Org.BouncyCastle.Asn1.Pkcs.CrlBag::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CrlBag Org.BouncyCastle.Asn1.Pkcs.CrlBag::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CrlBag::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CrlBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.CrlBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.CrlBag::get_CrlID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Pkcs.CrlBag::get_CrlValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.CrlBag::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.DHParameter Org.BouncyCastle.Asn1.Pkcs.DHParameter::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.DHParameter Org.BouncyCastle.Asn1.Pkcs.DHParameter::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.DHParameter Org.BouncyCastle.Asn1.Pkcs.DHParameter::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.DHParameter::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.DHParameter::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.DHParameter::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.DHParameter::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.DHParameter::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.DHParameter::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.DHParameter::get_L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.DHParameter::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedData Org.BouncyCastle.Asn1.Pkcs.EncryptedData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedData Org.BouncyCastle.Asn1.Pkcs.EncryptedData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedData Org.BouncyCastle.Asn1.Pkcs.EncryptedData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptedData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptedData::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptedData::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.EncryptedData::get_ContentType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.EncryptedData::get_EncryptionAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Pkcs.EncryptedData::get_Content()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.EncryptedData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::get_EncryptedData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::get_EncryptionAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::GetEncryptedData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme::get_Asn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::get_CertificateSerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.MacData Org.BouncyCastle.Asn1.Pkcs.MacData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.MacData Org.BouncyCastle.Asn1.Pkcs.MacData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.MacData Org.BouncyCastle.Asn1.Pkcs.MacData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.MacData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.MacData::.ctor(Org.BouncyCastle.Asn1.X509.DigestInfo,System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.MacData::.ctor(Org.BouncyCastle.Asn1.X509.DigestInfo,System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.MacData::.ctor(Org.BouncyCastle.Asn1.X509.DigestInfo,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.MacData::.ctor(Org.BouncyCastle.Asn1.X509.DigestInfo,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DigestInfo Org.BouncyCastle.Asn1.Pkcs.MacData::get_Mac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Pkcs.MacData::GetSalt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.MacData::get_IterationCount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.MacData::get_Iterations()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Pkcs.MacData::get_MacSalt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.MacData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PbeParameter Org.BouncyCastle.Asn1.Pkcs.PbeParameter::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PbeParameter Org.BouncyCastle.Asn1.Pkcs.PbeParameter::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PbeParameter Org.BouncyCastle.Asn1.Pkcs.PbeParameter::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PbeParameter::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PbeParameter::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PbeParameter::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Pkcs.PbeParameter::GetSalt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.PbeParameter::get_IterationCount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.PbeParameter::get_IterationCountObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Pkcs.PbeParameter::get_Salt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.PbeParameter::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters::.ctor(Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc,Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters::.ctor(Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc,Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters::get_KeyDerivationFunc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters::get_EncryptionScheme()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::.ctor(System.Byte[],System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::.ctor(System.Byte[],System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::.ctor(System.Byte[],System.Int32,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::.ctor(System.Byte[],System.Int32,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::.ctor(System.Byte[],System.Int32,System.Int32,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::.ctor(System.Byte[],System.Int32,System.Int32,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::GetSalt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::get_IterationCount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::get_IterationCountObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::get_KeyLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::get_KeyLengthObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::get_IsDefaultPrf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::get_Prf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::get_Salt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pbmac1Params Org.BouncyCastle.Asn1.Pkcs.Pbmac1Params::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pbmac1Params Org.BouncyCastle.Asn1.Pkcs.Pbmac1Params::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pbmac1Params Org.BouncyCastle.Asn1.Pkcs.Pbmac1Params::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbmac1Params::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbmac1Params::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pbmac1Params::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.Pbmac1Params::get_KeyDerivationFunc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.Pbmac1Params::get_MessageAuthScheme()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.Pbmac1Params::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pfx Org.BouncyCastle.Asn1.Pkcs.Pfx::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pfx Org.BouncyCastle.Asn1.Pkcs.Pfx::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pfx Org.BouncyCastle.Asn1.Pkcs.Pfx::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pfx::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pfx::.ctor(Org.BouncyCastle.Asn1.Pkcs.ContentInfo,Org.BouncyCastle.Asn1.Pkcs.MacData)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pfx::.ctor(Org.BouncyCastle.Asn1.Pkcs.ContentInfo,Org.BouncyCastle.Asn1.Pkcs.MacData)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.ContentInfo Org.BouncyCastle.Asn1.Pkcs.Pfx::get_AuthSafe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.MacData Org.BouncyCastle.Asn1.Pkcs.Pfx::get_MacData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.Pfx::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams::get_Iterations()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams::get_IterationsObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams::GetIV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams::get_IV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::Create(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Set,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Set,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::get_Attributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::get_HasPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::get_PrivateKeyAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::get_PrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::get_PrivateKeyData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::get_PrivateKeyLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::ParsePrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::ParsePublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::get_PublicKeyData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::.ctor(System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::.ctor(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::get_RC2ParameterVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::get_RC2ParameterVersionData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::get_IV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::GetIV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::get_MaskGenAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::get_PSourceAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::get_Modulus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::get_PublicExponent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::get_PrivateExponent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::get_Prime1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::get_Prime2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::get_Exponent1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::get_Exponent2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::get_Coefficient()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::get_MaskGenAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::get_SaltLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::get_TrailerField()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.SafeBag Org.BouncyCastle.Asn1.Pkcs.SafeBag::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.SafeBag Org.BouncyCastle.Asn1.Pkcs.SafeBag::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.SafeBag Org.BouncyCastle.Asn1.Pkcs.SafeBag::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SafeBag::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SafeBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SafeBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SafeBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Object,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SafeBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Object,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SafeBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SafeBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SafeBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SafeBag::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.SafeBag::get_BagID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.SafeBag::get_BagValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Pkcs.SafeBag::get_BagValueEncodable()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Pkcs.SafeBag::get_BagAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.SafeBag::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.SignedData Org.BouncyCastle.Asn1.Pkcs.SignedData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.SignedData Org.BouncyCastle.Asn1.Pkcs.SignedData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.SignedData Org.BouncyCastle.Asn1.Pkcs.SignedData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SignedData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SignedData::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Pkcs.ContentInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SignedData::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Pkcs.ContentInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.SignedData::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Pkcs.SignedData::get_DigestAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.ContentInfo Org.BouncyCastle.Asn1.Pkcs.SignedData::get_ContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Pkcs.SignedData::get_Certificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Pkcs.SignedData::get_Crls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Pkcs.SignedData::get_SignerInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.SignedData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.SignerInfo Org.BouncyCastle.Asn1.Pkcs.SignerInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.SignerInfo Org.BouncyCastle.Asn1.Pkcs.SignerInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.SignerInfo Org.BouncyCastle.Asn1.Pkcs.SignerInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SignerInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SignerInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SignerInfo::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Pkcs.SignerInfo::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.SignerInfo::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber Org.BouncyCastle.Asn1.Pkcs.SignerInfo::get_IssuerAndSerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Pkcs.SignerInfo::get_AuthenticatedAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.SignerInfo::get_DigestAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Pkcs.SignerInfo::get_EncryptedDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.SignerInfo::get_DigestEncryptionAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Pkcs.SignerInfo::get_UnauthenticatedAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Pkcs.SignerInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Oiw.ElGamalParameter Org.BouncyCastle.Asn1.Oiw.ElGamalParameter::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Oiw.ElGamalParameter Org.BouncyCastle.Asn1.Oiw.ElGamalParameter::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Oiw.ElGamalParameter Org.BouncyCastle.Asn1.Oiw.ElGamalParameter::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Oiw.ElGamalParameter::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Oiw.ElGamalParameter::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Oiw.ElGamalParameter::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Oiw.ElGamalParameter::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Oiw.ElGamalParameter::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Oiw.ElGamalParameter::get_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Oiw.ElGamalParameter::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse::.ctor(Org.BouncyCastle.Asn1.Ocsp.ResponseData,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse::.ctor(Org.BouncyCastle.Asn1.Ocsp.ResponseData,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponseData Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse::get_TbsResponseData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse::get_SignatureAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse::GetSignatureOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse::get_Certs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertID Org.BouncyCastle.Asn1.Ocsp.CertID::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertID Org.BouncyCastle.Asn1.Ocsp.CertID::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertID Org.BouncyCastle.Asn1.Ocsp.CertID::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.CertID::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.CertID::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.CertID::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Ocsp.CertID::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Ocsp.CertID::get_IssuerNameHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Ocsp.CertID::get_IssuerKeyHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Ocsp.CertID::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.CertID::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertStatus Org.BouncyCastle.Asn1.Ocsp.CertStatus::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertStatus Org.BouncyCastle.Asn1.Ocsp.CertStatus::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertStatus Org.BouncyCastle.Asn1.Ocsp.CertStatus::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertStatus Org.BouncyCastle.Asn1.Ocsp.CertStatus::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.CertStatus::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.CertStatus::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.CertStatus::.ctor(Org.BouncyCastle.Asn1.Ocsp.RevokedInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.CertStatus::.ctor(Org.BouncyCastle.Asn1.Ocsp.RevokedInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.CertStatus::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.CertStatus::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.CertStatus::.ctor(Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.CertStatus::.ctor(Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Ocsp.CertStatus::get_TagNo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Ocsp.CertStatus::get_Status()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.CertStatus::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CrlID Org.BouncyCastle.Asn1.Ocsp.CrlID::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CrlID Org.BouncyCastle.Asn1.Ocsp.CrlID::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CrlID Org.BouncyCastle.Asn1.Ocsp.CrlID::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.CrlID::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.CrlID::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String Org.BouncyCastle.Asn1.Ocsp.CrlID::get_CrlUrl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Ocsp.CrlID::get_CrlNum()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Ocsp.CrlID::get_CrlTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.CrlID::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.OcspObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.OcspObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.OcspRequest Org.BouncyCastle.Asn1.Ocsp.OcspRequest::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.OcspRequest Org.BouncyCastle.Asn1.Ocsp.OcspRequest::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.OcspRequest Org.BouncyCastle.Asn1.Ocsp.OcspRequest::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.OcspRequest::.ctor(Org.BouncyCastle.Asn1.Ocsp.TbsRequest,Org.BouncyCastle.Asn1.Ocsp.Signature)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.OcspRequest::.ctor(Org.BouncyCastle.Asn1.Ocsp.TbsRequest,Org.BouncyCastle.Asn1.Ocsp.Signature)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.OcspRequest::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.TbsRequest Org.BouncyCastle.Asn1.Ocsp.OcspRequest::get_TbsRequest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.Signature Org.BouncyCastle.Asn1.Ocsp.OcspRequest::get_OptionalSignature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.OcspRequest::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.OcspResponse Org.BouncyCastle.Asn1.Ocsp.OcspResponse::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.OcspResponse Org.BouncyCastle.Asn1.Ocsp.OcspResponse::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.OcspResponse Org.BouncyCastle.Asn1.Ocsp.OcspResponse::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.OcspResponse::.ctor(Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus,Org.BouncyCastle.Asn1.Ocsp.ResponseBytes)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.OcspResponse::.ctor(Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus,Org.BouncyCastle.Asn1.Ocsp.ResponseBytes)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.OcspResponse::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus Org.BouncyCastle.Asn1.Ocsp.OcspResponse::get_ResponseStatus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponseBytes Org.BouncyCastle.Asn1.Ocsp.OcspResponse::get_ResponseBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.OcspResponse::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus::.ctor(Org.BouncyCastle.Asn1.DerEnumerated)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus::.ctor(Org.BouncyCastle.Asn1.DerEnumerated)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.Request Org.BouncyCastle.Asn1.Ocsp.Request::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.Request Org.BouncyCastle.Asn1.Ocsp.Request::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.Request Org.BouncyCastle.Asn1.Ocsp.Request::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.Request::.ctor(Org.BouncyCastle.Asn1.Ocsp.CertID,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.Request::.ctor(Org.BouncyCastle.Asn1.Ocsp.CertID,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.Request::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertID Org.BouncyCastle.Asn1.Ocsp.Request::get_ReqCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.Ocsp.Request::get_SingleRequestExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.Request::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponderID Org.BouncyCastle.Asn1.Ocsp.ResponderID::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponderID Org.BouncyCastle.Asn1.Ocsp.ResponderID::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponderID Org.BouncyCastle.Asn1.Ocsp.ResponderID::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponderID Org.BouncyCastle.Asn1.Ocsp.ResponderID::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ResponderID::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ResponderID::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ResponderID::.ctor(Org.BouncyCastle.Asn1.X509.X509Name)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ResponderID::.ctor(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Ocsp.ResponderID::GetKeyHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.Ocsp.ResponderID::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.ResponderID::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponseBytes Org.BouncyCastle.Asn1.Ocsp.ResponseBytes::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponseBytes Org.BouncyCastle.Asn1.Ocsp.ResponseBytes::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponseBytes Org.BouncyCastle.Asn1.Ocsp.ResponseBytes::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ResponseBytes::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ResponseBytes::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ResponseBytes::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ocsp.ResponseBytes::get_ResponseType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Ocsp.ResponseBytes::get_Response()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.ResponseBytes::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponseData Org.BouncyCastle.Asn1.Ocsp.ResponseData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponseData Org.BouncyCastle.Asn1.Ocsp.ResponseData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponseData Org.BouncyCastle.Asn1.Ocsp.ResponseData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ResponseData::.ctor(Org.BouncyCastle.Asn1.Ocsp.ResponderID,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Asn1Sequence,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ResponseData::.ctor(Org.BouncyCastle.Asn1.Ocsp.ResponderID,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Asn1Sequence,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ResponseData::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Ocsp.ResponderID,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Asn1Sequence,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ResponseData::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Ocsp.ResponderID,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Asn1Sequence,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ResponseData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Ocsp.ResponseData::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponderID Org.BouncyCastle.Asn1.Ocsp.ResponseData::get_ResponderID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Ocsp.ResponseData::get_ProducedAt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Ocsp.ResponseData::get_Responses()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.Ocsp.ResponseData::get_ResponseExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.ResponseData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ResponseData::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.RevokedInfo/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.RevokedInfo/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.RevokedInfo/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlReason Org.BouncyCastle.Asn1.Ocsp.RevokedInfo/<>c::<.ctor>b__7_0(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.RevokedInfo Org.BouncyCastle.Asn1.Ocsp.RevokedInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.RevokedInfo Org.BouncyCastle.Asn1.Ocsp.RevokedInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.RevokedInfo Org.BouncyCastle.Asn1.Ocsp.RevokedInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.RevokedInfo::.ctor(Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.RevokedInfo::.ctor(Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.RevokedInfo::.ctor(Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.X509.CrlReason)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.RevokedInfo::.ctor(Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.X509.CrlReason)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.RevokedInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Ocsp.RevokedInfo::get_RevocationTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlReason Org.BouncyCastle.Asn1.Ocsp.RevokedInfo::get_RevocationReason()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.RevokedInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ServiceLocator Org.BouncyCastle.Asn1.Ocsp.ServiceLocator::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ServiceLocator Org.BouncyCastle.Asn1.Ocsp.ServiceLocator::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ServiceLocator Org.BouncyCastle.Asn1.Ocsp.ServiceLocator::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ServiceLocator::.ctor(Org.BouncyCastle.Asn1.X509.X509Name)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ServiceLocator::.ctor(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ServiceLocator::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.Asn1Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ServiceLocator::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.ServiceLocator::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.Ocsp.ServiceLocator::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.ServiceLocator::get_Locator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.ServiceLocator::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.Signature Org.BouncyCastle.Asn1.Ocsp.Signature::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.Signature Org.BouncyCastle.Asn1.Ocsp.Signature::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.Signature Org.BouncyCastle.Asn1.Ocsp.Signature::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.Signature::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.Signature::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.Signature::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.Signature::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.Signature::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Ocsp.Signature::get_SignatureAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Ocsp.Signature::get_SignatureValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Ocsp.Signature::GetSignatureOctets()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Ocsp.Signature::get_Certs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.Signature::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.SingleResponse Org.BouncyCastle.Asn1.Ocsp.SingleResponse::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.SingleResponse Org.BouncyCastle.Asn1.Ocsp.SingleResponse::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.SingleResponse Org.BouncyCastle.Asn1.Ocsp.SingleResponse::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.SingleResponse::.ctor(Org.BouncyCastle.Asn1.Ocsp.CertID,Org.BouncyCastle.Asn1.Ocsp.CertStatus,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.SingleResponse::.ctor(Org.BouncyCastle.Asn1.Ocsp.CertID,Org.BouncyCastle.Asn1.Ocsp.CertStatus,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.SingleResponse::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.SingleResponse::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertID Org.BouncyCastle.Asn1.Ocsp.SingleResponse::get_CertId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertStatus Org.BouncyCastle.Asn1.Ocsp.SingleResponse::get_CertStatus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Ocsp.SingleResponse::get_ThisUpdate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Ocsp.SingleResponse::get_NextUpdate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.Ocsp.SingleResponse::get_SingleExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.SingleResponse::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.TbsRequest Org.BouncyCastle.Asn1.Ocsp.TbsRequest::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.TbsRequest Org.BouncyCastle.Asn1.Ocsp.TbsRequest::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.TbsRequest Org.BouncyCastle.Asn1.Ocsp.TbsRequest::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.TbsRequest::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.Asn1Sequence,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.TbsRequest::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.Asn1Sequence,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.TbsRequest::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Ocsp.TbsRequest::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.Ocsp.TbsRequest::get_RequestorName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Ocsp.TbsRequest::get_RequestList()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.Ocsp.TbsRequest::get_RequestExtensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ocsp.TbsRequest::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ocsp.TbsRequest::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::.ctor(System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::.ctor(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::get_OutputLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::get_CustomizationString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::.ctor(System.Int32,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::.ctor(System.Int32,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::get_OutputLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::get_CustomizationString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.NistNamedCurves::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Nist.NistNamedCurves::GetByName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.Nist.NistNamedCurves::GetByNameLazy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Nist.NistNamedCurves::GetByOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.Nist.NistNamedCurves::GetByOidLazy(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Nist.NistNamedCurves::GetName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistNamedCurves::GetOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.Nist.NistNamedCurves::get_Names()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge::.ctor(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.DerIA5String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge::.ctor(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.DerIA5String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge::get_Challenge()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge::get_Spki()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge::get_SubjectPublicKeyInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge::.ctor(Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge::.ctor(Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge::get_PublicKeyAndChallenge()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge::get_SignatureAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters::get_IV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters::GetIV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters::get_KeyLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Misc.IdeaCbcPar Org.BouncyCastle.Asn1.Misc.IdeaCbcPar::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Misc.IdeaCbcPar Org.BouncyCastle.Asn1.Misc.IdeaCbcPar::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Misc.IdeaCbcPar Org.BouncyCastle.Asn1.Misc.IdeaCbcPar::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.IdeaCbcPar::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.IdeaCbcPar::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.IdeaCbcPar::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.IdeaCbcPar::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.IdeaCbcPar::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Misc.IdeaCbcPar::get_IV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Misc.IdeaCbcPar::GetIV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Misc.IdeaCbcPar::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.NetscapeCertType::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.NetscapeCertType::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.NetscapeCertType::.ctor(Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.NetscapeCertType::.ctor(Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Misc.NetscapeCertType::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.NetscapeRevocationUrl::.ctor(Org.BouncyCastle.Asn1.DerIA5String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.NetscapeRevocationUrl::.ctor(Org.BouncyCastle.Asn1.DerIA5String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Misc.NetscapeRevocationUrl::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.VerisignCzagExtension::.ctor(Org.BouncyCastle.Asn1.DerIA5String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Misc.VerisignCzagExtension::.ctor(Org.BouncyCastle.Asn1.DerIA5String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Misc.VerisignCzagExtension::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Microsoft.MicrosoftObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Microsoft.MicrosoftObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Kisa.KisaObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Kisa.KisaObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.AdditionalInformationSyntax Org.BouncyCastle.Asn1.IsisMtt.X509.AdditionalInformationSyntax::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.AdditionalInformationSyntax Org.BouncyCastle.Asn1.IsisMtt.X509.AdditionalInformationSyntax::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.AdditionalInformationSyntax Org.BouncyCastle.Asn1.IsisMtt.X509.AdditionalInformationSyntax::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.AdditionalInformationSyntax::.ctor(Org.BouncyCastle.Asn1.X500.DirectoryString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.AdditionalInformationSyntax::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.AdditionalInformationSyntax::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.IsisMtt.X509.AdditionalInformationSyntax::get_Information()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.IsisMtt.X509.AdditionalInformationSyntax::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority,Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority,Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions::get_AdmissionAuthority()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions::get_NamingAuthority()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo[] Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions::GetProfessionInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax::get_AdmissionAuthority()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions[] Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax::GetContentsOfAdmissions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::.ctor(System.Boolean,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::.ctor(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::.ctor(Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::.ctor(Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::get_NotYoungerThan()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::get_FullAgeAtCountry()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::get_DateOfBirth()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit::.ctor(System.String,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit::.ctor(System.String,System.Int32,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit::get_Currency()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit::get_Amount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit::get_Exponent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority::get_NamingAuthorityID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority::get_NamingAuthorityText()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority::get_NamingAuthorityUrl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority::get_NamingAuthorityUrlData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String,Org.BouncyCastle.Asn1.X500.DirectoryString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String,Org.BouncyCastle.Asn1.X500.DirectoryString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::.ctor(System.String,Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::.ctor(System.String,Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::.ctor(System.String,Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::.ctor(System.String,Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::get_Country()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::get_TypeOfSubstitution()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::get_ThirdPerson()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuerSerial Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::get_CertRef()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::.ctor(Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority,Org.BouncyCastle.Asn1.X500.DirectoryString[],Org.BouncyCastle.Asn1.DerObjectIdentifier[],System.String,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::.ctor(Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority,Org.BouncyCastle.Asn1.X500.DirectoryString[],Org.BouncyCastle.Asn1.DerObjectIdentifier[],System.String,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::get_AddProfessionInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::get_NamingAuthority()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString[] Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::GetProfessionItems()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier[] Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::GetProfessionOids()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::get_RegistrationNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.Restriction Org.BouncyCastle.Asn1.IsisMtt.X509.Restriction::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.Restriction Org.BouncyCastle.Asn1.IsisMtt.X509.Restriction::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.Restriction Org.BouncyCastle.Asn1.IsisMtt.X509.Restriction::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.Restriction::.ctor(Org.BouncyCastle.Asn1.X500.DirectoryString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.Restriction::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.X509.Restriction::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.IsisMtt.X509.Restriction::get_RestrictionString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.IsisMtt.X509.Restriction::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.CertHash Org.BouncyCastle.Asn1.IsisMtt.Ocsp.CertHash::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.CertHash Org.BouncyCastle.Asn1.IsisMtt.Ocsp.CertHash::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.CertHash Org.BouncyCastle.Asn1.IsisMtt.Ocsp.CertHash::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.Ocsp.CertHash::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.Ocsp.CertHash::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.Ocsp.CertHash::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.IsisMtt.Ocsp.CertHash::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.CertHash::get_CertificateHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.IsisMtt.Ocsp.CertHash::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate::.ctor(Org.BouncyCastle.Asn1.Asn1TaggedObject)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate::.ctor(Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate::.ctor(Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate::GetCertificateBytes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Isara.IsaraObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.CscaMasterList Org.BouncyCastle.Asn1.Icao.CscaMasterList::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.CscaMasterList Org.BouncyCastle.Asn1.Icao.CscaMasterList::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.CscaMasterList Org.BouncyCastle.Asn1.Icao.CscaMasterList::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.CscaMasterList::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.CscaMasterList::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.CscaMasterList::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Icao.CscaMasterList::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509CertificateStructure[] Org.BouncyCastle.Asn1.Icao.CscaMasterList::GetCertStructs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Icao.CscaMasterList::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.DataGroupHash Org.BouncyCastle.Asn1.Icao.DataGroupHash::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.DataGroupHash Org.BouncyCastle.Asn1.Icao.DataGroupHash::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.DataGroupHash Org.BouncyCastle.Asn1.Icao.DataGroupHash::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.DataGroupHash::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.DataGroupHash::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.DataGroupHash::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Icao.DataGroupHash::get_DataGroupNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Icao.DataGroupHash::get_DataGroupHashValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Icao.DataGroupHash::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.IcaoObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.IcaoObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.LdsSecurityObject Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.LdsSecurityObject Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.LdsSecurityObject Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Icao.DataGroupHash[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Icao.DataGroupHash[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Icao.DataGroupHash[],Org.BouncyCastle.Asn1.Icao.LdsVersionInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Icao.DataGroupHash[],Org.BouncyCastle.Asn1.Icao.LdsVersionInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::get_DigestAlgorithmIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.DataGroupHash[] Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::GetDatagroupHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.LdsVersionInfo Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::get_VersionInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.LdsVersionInfo Org.BouncyCastle.Asn1.Icao.LdsVersionInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.LdsVersionInfo Org.BouncyCastle.Asn1.Icao.LdsVersionInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.LdsVersionInfo Org.BouncyCastle.Asn1.Icao.LdsVersionInfo::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.LdsVersionInfo Org.BouncyCastle.Asn1.Icao.LdsVersionInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.LdsVersionInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.LdsVersionInfo::.ctor(System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.LdsVersionInfo::.ctor(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Icao.LdsVersionInfo::GetLdsVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Icao.LdsVersionInfo::GetUnicodeVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Icao.LdsVersionInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.GM.GMNamedCurves/SM2P256V1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.GM.GMNamedCurves/SM2P256V1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.GM.GMNamedCurves/WapiP192V1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.GM.GMNamedCurves/WapiP192V1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.GM.GMNamedCurves::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.GM.GMNamedCurves::GetByName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.GM.GMNamedCurves::GetByNameLazy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.GM.GMNamedCurves::GetByOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.GM.GMNamedCurves::GetByOidLazy(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.GM.GMNamedCurves::GetName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMNamedCurves::GetOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.GM.GMNamedCurves::get_Names()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.ContentHints Org.BouncyCastle.Asn1.Ess.ContentHints::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.ContentHints Org.BouncyCastle.Asn1.Ess.ContentHints::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.ContentHints Org.BouncyCastle.Asn1.Ess.ContentHints::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.ContentHints::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.ContentHints::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.ContentHints::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.ContentHints::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerUtf8String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.ContentHints::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerUtf8String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ess.ContentHints::get_ContentType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUtf8String Org.BouncyCastle.Asn1.Ess.ContentHints::get_ContentDescription()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ess.ContentHints::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.ContentIdentifier Org.BouncyCastle.Asn1.Ess.ContentIdentifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.ContentIdentifier Org.BouncyCastle.Asn1.Ess.ContentIdentifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.ContentIdentifier Org.BouncyCastle.Asn1.Ess.ContentIdentifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.ContentIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.ContentIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.ContentIdentifier::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.ContentIdentifier::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Ess.ContentIdentifier::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ess.ContentIdentifier::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.EssCertID Org.BouncyCastle.Asn1.Ess.EssCertID::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.EssCertID Org.BouncyCastle.Asn1.Ess.EssCertID::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.EssCertID Org.BouncyCastle.Asn1.Ess.EssCertID::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertID::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertID::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertID::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertID::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertID::.ctor(System.Byte[],Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertID::.ctor(System.Byte[],Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertID::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertID::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Ess.EssCertID::get_CertHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Ess.EssCertID::GetCertHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuerSerial Org.BouncyCastle.Asn1.Ess.EssCertID::get_IssuerSerial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ess.EssCertID::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.EssCertIDv2 Org.BouncyCastle.Asn1.Ess.EssCertIDv2::From(Org.BouncyCastle.Asn1.Ess.EssCertID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.EssCertIDv2 Org.BouncyCastle.Asn1.Ess.EssCertIDv2::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.EssCertIDv2 Org.BouncyCastle.Asn1.Ess.EssCertIDv2::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.EssCertIDv2 Org.BouncyCastle.Asn1.Ess.EssCertIDv2::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertIDv2::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertIDv2::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertIDv2::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertIDv2::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertIDv2::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertIDv2::.ctor(System.Byte[],Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertIDv2::.ctor(System.Byte[],Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertIDv2::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertIDv2::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertIDv2::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertIDv2::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Ess.EssCertIDv2::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Ess.EssCertIDv2::get_CertHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Ess.EssCertIDv2::GetCertHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuerSerial Org.BouncyCastle.Asn1.Ess.EssCertIDv2::get_IssuerSerial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ess.EssCertIDv2::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.EssCertIDv2::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.SigningCertificate Org.BouncyCastle.Asn1.Ess.SigningCertificate::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.SigningCertificate Org.BouncyCastle.Asn1.Ess.SigningCertificate::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.SigningCertificate Org.BouncyCastle.Asn1.Ess.SigningCertificate::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.SigningCertificate::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.SigningCertificate::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.SigningCertificate::.ctor(Org.BouncyCastle.Asn1.Ess.EssCertID)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.SigningCertificate::.ctor(Org.BouncyCastle.Asn1.Ess.EssCertID)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.EssCertID[] Org.BouncyCastle.Asn1.Ess.SigningCertificate::GetCerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyInformation[] Org.BouncyCastle.Asn1.Ess.SigningCertificate::GetPolicies()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ess.SigningCertificate::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.SigningCertificateV2 Org.BouncyCastle.Asn1.Ess.SigningCertificateV2::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.SigningCertificateV2 Org.BouncyCastle.Asn1.Ess.SigningCertificateV2::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.SigningCertificateV2 Org.BouncyCastle.Asn1.Ess.SigningCertificateV2::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.SigningCertificateV2::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.SigningCertificateV2::.ctor(Org.BouncyCastle.Asn1.Ess.EssCertIDv2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.SigningCertificateV2::.ctor(Org.BouncyCastle.Asn1.Ess.EssCertIDv2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.SigningCertificateV2::.ctor(Org.BouncyCastle.Asn1.Ess.EssCertIDv2[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.SigningCertificateV2::.ctor(Org.BouncyCastle.Asn1.Ess.EssCertIDv2[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.SigningCertificateV2::.ctor(Org.BouncyCastle.Asn1.Ess.EssCertIDv2[],Org.BouncyCastle.Asn1.X509.PolicyInformation[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Ess.SigningCertificateV2::.ctor(Org.BouncyCastle.Asn1.Ess.EssCertIDv2[],Org.BouncyCastle.Asn1.X509.PolicyInformation[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.EssCertIDv2[] Org.BouncyCastle.Asn1.Ess.SigningCertificateV2::GetCerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyInformation[] Org.BouncyCastle.Asn1.Ess.SigningCertificateV2::GetPolicies()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Ess.SigningCertificateV2::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CertificateValues Org.BouncyCastle.Asn1.Esf.CertificateValues::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CertificateValues Org.BouncyCastle.Asn1.Esf.CertificateValues::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CertificateValues Org.BouncyCastle.Asn1.Esf.CertificateValues::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CertificateValues::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CertificateValues::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CertificateValues::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CertificateValues::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CertificateValues::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CertificateValues::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CertificateValues::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509CertificateStructure[] Org.BouncyCastle.Asn1.Esf.CertificateValues::GetCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.CertificateValues::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeIdentifier::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeIdentifier::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication::get_CommitmentTypeID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication::get_CommitmentTypeQualifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier::get_CommitmentTypeIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier::get_QualifierData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier::get_Qualifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs::.ctor(Org.BouncyCastle.Asn1.Esf.OtherCertID[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs::.ctor(Org.BouncyCastle.Asn1.Esf.OtherCertID[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherCertID[] Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs::GetOtherCertIDs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs::.ctor(Org.BouncyCastle.Asn1.Esf.CrlOcspRef[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs::.ctor(Org.BouncyCastle.Asn1.Esf.CrlOcspRef[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlOcspRef[] Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs::GetCrlOcspRefs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlIdentifier Org.BouncyCastle.Asn1.Esf.CrlIdentifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlIdentifier Org.BouncyCastle.Asn1.Esf.CrlIdentifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlIdentifier Org.BouncyCastle.Asn1.Esf.CrlIdentifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,System.DateTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,System.DateTime,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,System.DateTime,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.Asn1UtcTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.Asn1UtcTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.Asn1UtcTime,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.Asn1UtcTime,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.Esf.CrlIdentifier::get_CrlIssuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Esf.CrlIdentifier::get_CrlIssuedTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1UtcTime Org.BouncyCastle.Asn1.Esf.CrlIdentifier::get_CrlIssuedTimeObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Esf.CrlIdentifier::get_CrlNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Esf.CrlIdentifier::get_CrlNumberObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.CrlIdentifier::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlListID Org.BouncyCastle.Asn1.Esf.CrlListID::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlListID Org.BouncyCastle.Asn1.Esf.CrlListID::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlListID Org.BouncyCastle.Asn1.Esf.CrlListID::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlListID::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlListID::.ctor(Org.BouncyCastle.Asn1.Esf.CrlValidatedID[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlListID::.ctor(Org.BouncyCastle.Asn1.Esf.CrlValidatedID[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlListID::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlListID::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlListID::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlListID::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlValidatedID[] Org.BouncyCastle.Asn1.Esf.CrlListID::GetCrls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.CrlListID::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlOcspRef Org.BouncyCastle.Asn1.Esf.CrlOcspRef::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlOcspRef Org.BouncyCastle.Asn1.Esf.CrlOcspRef::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlOcspRef Org.BouncyCastle.Asn1.Esf.CrlOcspRef::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlOcspRef::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlOcspRef::.ctor(Org.BouncyCastle.Asn1.Esf.CrlListID,Org.BouncyCastle.Asn1.Esf.OcspListID,Org.BouncyCastle.Asn1.Esf.OtherRevRefs)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlOcspRef::.ctor(Org.BouncyCastle.Asn1.Esf.CrlListID,Org.BouncyCastle.Asn1.Esf.OcspListID,Org.BouncyCastle.Asn1.Esf.OtherRevRefs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlListID Org.BouncyCastle.Asn1.Esf.CrlOcspRef::get_CrlIDs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspListID Org.BouncyCastle.Asn1.Esf.CrlOcspRef::get_OcspIDs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherRevRefs Org.BouncyCastle.Asn1.Esf.CrlOcspRef::get_OtherRev()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.CrlOcspRef::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlValidatedID Org.BouncyCastle.Asn1.Esf.CrlValidatedID::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlValidatedID Org.BouncyCastle.Asn1.Esf.CrlValidatedID::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlValidatedID Org.BouncyCastle.Asn1.Esf.CrlValidatedID::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlValidatedID::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlValidatedID::.ctor(Org.BouncyCastle.Asn1.Esf.OtherHash)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlValidatedID::.ctor(Org.BouncyCastle.Asn1.Esf.OtherHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlValidatedID::.ctor(Org.BouncyCastle.Asn1.Esf.OtherHash,Org.BouncyCastle.Asn1.Esf.CrlIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.CrlValidatedID::.ctor(Org.BouncyCastle.Asn1.Esf.OtherHash,Org.BouncyCastle.Asn1.Esf.CrlIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHash Org.BouncyCastle.Asn1.Esf.CrlValidatedID::get_CrlHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlIdentifier Org.BouncyCastle.Asn1.Esf.CrlValidatedID::get_CrlIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.CrlValidatedID::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.EsfAttributes::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.EsfAttributes::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspIdentifier Org.BouncyCastle.Asn1.Esf.OcspIdentifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspIdentifier Org.BouncyCastle.Asn1.Esf.OcspIdentifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspIdentifier Org.BouncyCastle.Asn1.Esf.OcspIdentifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspIdentifier::.ctor(Org.BouncyCastle.Asn1.Ocsp.ResponderID,System.DateTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspIdentifier::.ctor(Org.BouncyCastle.Asn1.Ocsp.ResponderID,System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspIdentifier::.ctor(Org.BouncyCastle.Asn1.Ocsp.ResponderID,Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspIdentifier::.ctor(Org.BouncyCastle.Asn1.Ocsp.ResponderID,Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponderID Org.BouncyCastle.Asn1.Esf.OcspIdentifier::get_OcspResponderID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Esf.OcspIdentifier::get_ProducedAtData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Esf.OcspIdentifier::get_ProducedAt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.OcspIdentifier::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspListID Org.BouncyCastle.Asn1.Esf.OcspListID::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspListID Org.BouncyCastle.Asn1.Esf.OcspListID::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspListID Org.BouncyCastle.Asn1.Esf.OcspListID::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspListID::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspListID::.ctor(Org.BouncyCastle.Asn1.Esf.OcspResponsesID[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspListID::.ctor(Org.BouncyCastle.Asn1.Esf.OcspResponsesID[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspListID::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspListID::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspListID::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspListID::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspResponsesID[] Org.BouncyCastle.Asn1.Esf.OcspListID::GetOcspResponses()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.OcspListID::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspResponsesID Org.BouncyCastle.Asn1.Esf.OcspResponsesID::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspResponsesID Org.BouncyCastle.Asn1.Esf.OcspResponsesID::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspResponsesID Org.BouncyCastle.Asn1.Esf.OcspResponsesID::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspResponsesID::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspResponsesID::.ctor(Org.BouncyCastle.Asn1.Esf.OcspIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspResponsesID::.ctor(Org.BouncyCastle.Asn1.Esf.OcspIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspResponsesID::.ctor(Org.BouncyCastle.Asn1.Esf.OcspIdentifier,Org.BouncyCastle.Asn1.Esf.OtherHash)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OcspResponsesID::.ctor(Org.BouncyCastle.Asn1.Esf.OcspIdentifier,Org.BouncyCastle.Asn1.Esf.OtherHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspIdentifier Org.BouncyCastle.Asn1.Esf.OcspResponsesID::get_OcspIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHash Org.BouncyCastle.Asn1.Esf.OcspResponsesID::get_OcspRepHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.OcspResponsesID::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherCertID Org.BouncyCastle.Asn1.Esf.OtherCertID::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherCertID Org.BouncyCastle.Asn1.Esf.OtherCertID::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherCertID Org.BouncyCastle.Asn1.Esf.OtherCertID::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherCertID::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherCertID::.ctor(Org.BouncyCastle.Asn1.Esf.OtherHash)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherCertID::.ctor(Org.BouncyCastle.Asn1.Esf.OtherHash)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherCertID::.ctor(Org.BouncyCastle.Asn1.Esf.OtherHash,Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherCertID::.ctor(Org.BouncyCastle.Asn1.Esf.OtherHash,Org.BouncyCastle.Asn1.X509.IssuerSerial)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHash Org.BouncyCastle.Asn1.Esf.OtherCertID::get_OtherCertHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuerSerial Org.BouncyCastle.Asn1.Esf.OtherCertID::get_IssuerSerial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.OtherCertID::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHash Org.BouncyCastle.Asn1.Esf.OtherHash::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHash Org.BouncyCastle.Asn1.Esf.OtherHash::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHash Org.BouncyCastle.Asn1.Esf.OtherHash::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHash Org.BouncyCastle.Asn1.Esf.OtherHash::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherHash::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherHash::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherHash::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherHash::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherHash::.ctor(Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherHash::.ctor(Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Esf.OtherHash::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Esf.OtherHash::GetHashValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.OtherHash::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue::get_HashAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue::GetHashValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherRevRefs Org.BouncyCastle.Asn1.Esf.OtherRevRefs::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherRevRefs Org.BouncyCastle.Asn1.Esf.OtherRevRefs::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherRevRefs Org.BouncyCastle.Asn1.Esf.OtherRevRefs::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherRevRefs::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherRevRefs::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherRevRefs::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.OtherRevRefs::get_OtherRevRefType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Esf.OtherRevRefs::get_OtherRevRefsData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.OtherRevRefs::get_OtherRevRefsObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.OtherRevRefs::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherRevVals Org.BouncyCastle.Asn1.Esf.OtherRevVals::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherRevVals Org.BouncyCastle.Asn1.Esf.OtherRevVals::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherRevVals Org.BouncyCastle.Asn1.Esf.OtherRevVals::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherRevVals::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherRevVals::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherRevVals::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.OtherRevVals::get_OtherRevValType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Esf.OtherRevVals::get_OtherRevValsData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.OtherRevVals::get_OtherRevValsObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.OtherRevVals::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::.ctor(Org.BouncyCastle.Asn1.Esf.OtherCertID[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::.ctor(Org.BouncyCastle.Asn1.Esf.OtherCertID[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::.ctor(Org.BouncyCastle.Asn1.Esf.OtherCertID[],Org.BouncyCastle.Asn1.X509.PolicyInformation[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::.ctor(Org.BouncyCastle.Asn1.Esf.OtherCertID[],Org.BouncyCastle.Asn1.X509.PolicyInformation[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::.ctor(System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::.ctor(System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::.ctor(System.Collections.Generic.IEnumerable`1,System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::.ctor(System.Collections.Generic.IEnumerable`1,System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::.ctor(System.Collections.Generic.IReadOnlyCollection`1,System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::.ctor(System.Collections.Generic.IReadOnlyCollection`1,System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherCertID[] Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::GetCerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyInformation[] Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::GetPolicies()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.RevocationValues Org.BouncyCastle.Asn1.Esf.RevocationValues::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.RevocationValues Org.BouncyCastle.Asn1.Esf.RevocationValues::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.RevocationValues Org.BouncyCastle.Asn1.Esf.RevocationValues::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.RevocationValues::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.RevocationValues::.ctor(Org.BouncyCastle.Asn1.X509.CertificateList[],Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse[],Org.BouncyCastle.Asn1.Esf.OtherRevVals)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.RevocationValues::.ctor(Org.BouncyCastle.Asn1.X509.CertificateList[],Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse[],Org.BouncyCastle.Asn1.Esf.OtherRevVals)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.RevocationValues::.ctor(System.Collections.Generic.IEnumerable`1,System.Collections.Generic.IEnumerable`1,Org.BouncyCastle.Asn1.Esf.OtherRevVals)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.RevocationValues::.ctor(System.Collections.Generic.IEnumerable`1,System.Collections.Generic.IEnumerable`1,Org.BouncyCastle.Asn1.Esf.OtherRevVals)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.RevocationValues::.ctor(System.Collections.Generic.IReadOnlyCollection`1,System.Collections.Generic.IReadOnlyCollection`1,Org.BouncyCastle.Asn1.Esf.OtherRevVals)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.RevocationValues::.ctor(System.Collections.Generic.IReadOnlyCollection`1,System.Collections.Generic.IReadOnlyCollection`1,Org.BouncyCastle.Asn1.Esf.OtherRevVals)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificateList[] Org.BouncyCastle.Asn1.Esf.RevocationValues::GetCrlVals()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse[] Org.BouncyCastle.Asn1.Esf.RevocationValues::GetOcspVals()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherRevVals Org.BouncyCastle.Asn1.Esf.RevocationValues::get_OtherRevVals()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.RevocationValues::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignaturePolicyId Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignaturePolicyId Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignaturePolicyId Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignaturePolicyId Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue,Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue,Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue,System.Collections.Generic.IEnumerable`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue,System.Collections.Generic.IEnumerable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue,System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue,System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::get_SigPolicyIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::get_SigPolicyHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo[] Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::GetSigPolicyQualifiers()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.SignaturePolicyId::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier::.ctor(Org.BouncyCastle.Asn1.Esf.SignaturePolicyId)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier::.ctor(Org.BouncyCastle.Asn1.Esf.SignaturePolicyId)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignaturePolicyId Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier::get_SignaturePolicyId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignerAttribute Org.BouncyCastle.Asn1.Esf.SignerAttribute::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignerAttribute Org.BouncyCastle.Asn1.Esf.SignerAttribute::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignerAttribute Org.BouncyCastle.Asn1.Esf.SignerAttribute::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerAttribute::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerAttribute::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerAttribute::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerAttribute::.ctor(Org.BouncyCastle.Asn1.X509.AttributeCertificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerAttribute::.ctor(Org.BouncyCastle.Asn1.X509.AttributeCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Esf.SignerAttribute::get_ClaimedAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeCertificate Org.BouncyCastle.Asn1.Esf.SignerAttribute::get_CertifiedAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.SignerAttribute::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c::<.ctor>b__6_0(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c::b__14_0(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignerLocation Org.BouncyCastle.Asn1.Esf.SignerLocation::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignerLocation Org.BouncyCastle.Asn1.Esf.SignerLocation::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignerLocation Org.BouncyCastle.Asn1.Esf.SignerLocation::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerLocation::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerLocation::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerLocation::.ctor(Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerLocation::.ctor(Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.X500.DirectoryString[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerLocation::.ctor(Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.X500.DirectoryString,Org.BouncyCastle.Asn1.X500.DirectoryString[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerLocation::.ctor(Org.BouncyCastle.Asn1.DerUtf8String,Org.BouncyCastle.Asn1.DerUtf8String,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SignerLocation::.ctor(Org.BouncyCastle.Asn1.DerUtf8String,Org.BouncyCastle.Asn1.DerUtf8String,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.Esf.SignerLocation::get_Country()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString Org.BouncyCastle.Asn1.Esf.SignerLocation::get_Locality()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString[] Org.BouncyCastle.Asn1.Esf.SignerLocation::GetPostal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Esf.SignerLocation::get_PostalAddress()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.SignerLocation::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo::get_SigPolicyQualifierId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo::get_SigQualifierData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo::get_SigQualifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.EdEC.EdECObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.EdEC.EdECObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_A::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_A::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_B::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_B::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_C::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_C::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_256_paramSetA::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_256_paramSetA::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetA::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetA::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetB::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetB::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetC::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetC::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves::GetByName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves::GetByNameLazy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves::GetByOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves::GetByOidLazy(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves::GetName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves::GetOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves::get_Names()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::.ctor(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::get_A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::get_B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::get_Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost28147Parameters Org.BouncyCastle.Asn1.CryptoPro.Gost28147Parameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost28147Parameters Org.BouncyCastle.Asn1.CryptoPro.Gost28147Parameters::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost28147Parameters Org.BouncyCastle.Asn1.CryptoPro.Gost28147Parameters::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.Gost28147Parameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.Gost28147Parameters::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.Gost28147Parameters::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.CryptoPro.Gost28147Parameters::get_IV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.Gost28147Parameters::get_EncryptionParamSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.CryptoPro.Gost28147Parameters::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.Gost3410NamedParameters::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters Org.BouncyCastle.Asn1.CryptoPro.Gost3410NamedParameters::GetByName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters Org.BouncyCastle.Asn1.CryptoPro.Gost3410NamedParameters::GetByOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.Gost3410NamedParameters::GetOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.CryptoPro.Gost3410NamedParameters::get_Names()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters::.ctor(System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters::.ctor(System.Int32,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters::get_KeySize()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters::get_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters::get_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters::get_A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters::get_PublicKeyParamSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters::get_DigestParamSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters::get_EncryptionParamSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cryptlib.CryptlibObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue::.ctor(System.String,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue::.ctor(System.String,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertId Org.BouncyCastle.Asn1.Crmf.CertId::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertId Org.BouncyCastle.Asn1.Crmf.CertId::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertId Org.BouncyCastle.Asn1.Crmf.CertId::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertId::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertId::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertId::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.Crmf.CertId::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Crmf.CertId::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.CertId::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertReqMessages Org.BouncyCastle.Asn1.Crmf.CertReqMessages::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertReqMessages Org.BouncyCastle.Asn1.Crmf.CertReqMessages::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertReqMessages Org.BouncyCastle.Asn1.Crmf.CertReqMessages::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertReqMessages::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertReqMessages::.ctor(Org.BouncyCastle.Asn1.Crmf.CertReqMsg)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertReqMessages::.ctor(Org.BouncyCastle.Asn1.Crmf.CertReqMsg)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertReqMessages::.ctor(Org.BouncyCastle.Asn1.Crmf.CertReqMsg[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertReqMessages::.ctor(Org.BouncyCastle.Asn1.Crmf.CertReqMsg[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertReqMsg[] Org.BouncyCastle.Asn1.Crmf.CertReqMessages::ToCertReqMsgArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.CertReqMessages::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertReqMsg Org.BouncyCastle.Asn1.Crmf.CertReqMsg::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertReqMsg Org.BouncyCastle.Asn1.Crmf.CertReqMsg::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertReqMsg Org.BouncyCastle.Asn1.Crmf.CertReqMsg::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertReqMsg::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertReqMsg::.ctor(Org.BouncyCastle.Asn1.Crmf.CertRequest,Org.BouncyCastle.Asn1.Crmf.ProofOfPossession,Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertReqMsg::.ctor(Org.BouncyCastle.Asn1.Crmf.CertRequest,Org.BouncyCastle.Asn1.Crmf.ProofOfPossession,Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertRequest Org.BouncyCastle.Asn1.Crmf.CertReqMsg::get_CertReq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.ProofOfPossession Org.BouncyCastle.Asn1.Crmf.CertReqMsg::get_Pop()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.ProofOfPossession Org.BouncyCastle.Asn1.Crmf.CertReqMsg::get_Popo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue[] Org.BouncyCastle.Asn1.Crmf.CertReqMsg::GetRegInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.CertReqMsg::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertRequest Org.BouncyCastle.Asn1.Crmf.CertRequest::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertRequest Org.BouncyCastle.Asn1.Crmf.CertRequest::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertRequest Org.BouncyCastle.Asn1.Crmf.CertRequest::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertRequest::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertRequest::.ctor(System.Int32,Org.BouncyCastle.Asn1.Crmf.CertTemplate,Org.BouncyCastle.Asn1.Crmf.Controls)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertRequest::.ctor(System.Int32,Org.BouncyCastle.Asn1.Crmf.CertTemplate,Org.BouncyCastle.Asn1.Crmf.Controls)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertRequest::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Crmf.CertTemplate,Org.BouncyCastle.Asn1.Crmf.Controls)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertRequest::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Crmf.CertTemplate,Org.BouncyCastle.Asn1.Crmf.Controls)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Crmf.CertRequest::get_CertReqID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplate Org.BouncyCastle.Asn1.Crmf.CertRequest::get_CertTemplate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.Controls Org.BouncyCastle.Asn1.Crmf.CertRequest::get_Controls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.CertRequest::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplate Org.BouncyCastle.Asn1.Crmf.CertTemplate::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplate Org.BouncyCastle.Asn1.Crmf.CertTemplate::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplate Org.BouncyCastle.Asn1.Crmf.CertTemplate::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertTemplate::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertTemplate::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.Crmf.OptionalValidity,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertTemplate::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.Crmf.OptionalValidity,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.CertTemplate::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Crmf.CertTemplate::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Crmf.CertTemplate::get_SigningAlg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.Crmf.CertTemplate::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.OptionalValidity Org.BouncyCastle.Asn1.Crmf.CertTemplate::get_Validity()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.Crmf.CertTemplate::get_Subject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Asn1.Crmf.CertTemplate::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Crmf.CertTemplate::get_IssuerUID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Crmf.CertTemplate::get_SubjectUID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.Crmf.CertTemplate::get_Extensions()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.CertTemplate::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::SetVersion(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::SetSerialNumber(Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::SetSigningAlg(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::SetIssuer(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::SetValidity(Org.BouncyCastle.Asn1.Crmf.OptionalValidity)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::SetValidity(System.Nullable`1,System.Nullable`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::SetSubject(Org.BouncyCastle.Asn1.X509.X509Name)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::SetPublicKey(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::SetSubjectPublicKeyInfo(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::SetIssuerUID(Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::SetSubjectUID(Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::SetExtensions(Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplate Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.Controls Org.BouncyCastle.Asn1.Crmf.Controls::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.Controls Org.BouncyCastle.Asn1.Crmf.Controls::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.Controls Org.BouncyCastle.Asn1.Crmf.Controls::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.Controls Org.BouncyCastle.Asn1.Crmf.Controls::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.Controls::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.Controls::.ctor(Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.Controls::.ctor(Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue[] Org.BouncyCastle.Asn1.Crmf.Controls::ToAttributeTypeAndValueArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.Controls::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncKeyWithID Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncKeyWithID Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncKeyWithID Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::.ctor(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::.ctor(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::.ctor(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::.ctor(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo,Org.BouncyCastle.Asn1.DerUtf8String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::.ctor(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo,Org.BouncyCastle.Asn1.DerUtf8String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::.ctor(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::.ctor(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::get_PrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::get_HasIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::get_IsIdentifierUtf8String()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::get_Identifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedKey Org.BouncyCastle.Asn1.Crmf.EncryptedKey::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedKey Org.BouncyCastle.Asn1.Crmf.EncryptedKey::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedKey Org.BouncyCastle.Asn1.Crmf.EncryptedKey::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedKey Org.BouncyCastle.Asn1.Crmf.EncryptedKey::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncryptedKey::.ctor(Org.BouncyCastle.Asn1.Cms.EnvelopedData)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncryptedKey::.ctor(Org.BouncyCastle.Asn1.Cms.EnvelopedData)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncryptedKey::.ctor(Org.BouncyCastle.Asn1.Crmf.EncryptedValue)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncryptedKey::.ctor(Org.BouncyCastle.Asn1.Crmf.EncryptedValue)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Crmf.EncryptedKey::get_IsEncryptedValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Crmf.EncryptedKey::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.EncryptedKey::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedValue Org.BouncyCastle.Asn1.Crmf.EncryptedValue::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedValue Org.BouncyCastle.Asn1.Crmf.EncryptedValue::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedValue Org.BouncyCastle.Asn1.Crmf.EncryptedValue::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedValue Org.BouncyCastle.Asn1.Crmf.EncryptedValue::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncryptedValue::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncryptedValue::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.EncryptedValue::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Crmf.EncryptedValue::get_IntendedAlg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Crmf.EncryptedValue::get_SymmAlg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Crmf.EncryptedValue::get_EncSymmKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Crmf.EncryptedValue::get_KeyAlg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Crmf.EncryptedValue::get_ValueHint()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Crmf.EncryptedValue::get_EncValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.EncryptedValue::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.OptionalValidity Org.BouncyCastle.Asn1.Crmf.OptionalValidity::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.OptionalValidity Org.BouncyCastle.Asn1.Crmf.OptionalValidity::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.OptionalValidity Org.BouncyCastle.Asn1.Crmf.OptionalValidity::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.OptionalValidity::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.OptionalValidity::.ctor(Org.BouncyCastle.Asn1.X509.Time,Org.BouncyCastle.Asn1.X509.Time)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.OptionalValidity::.ctor(Org.BouncyCastle.Asn1.X509.Time,Org.BouncyCastle.Asn1.X509.Time)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.Crmf.OptionalValidity::get_NotBefore()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.Crmf.OptionalValidity::get_NotAfter()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.OptionalValidity::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::.ctor(Org.BouncyCastle.Asn1.Crmf.EncryptedKey)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::.ctor(Org.BouncyCastle.Asn1.Crmf.EncryptedKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::.ctor(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::.ctor(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::.ctor(Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::.ctor(Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::.ctor(Org.BouncyCastle.Asn1.Crmf.SinglePubInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::.ctor(Org.BouncyCastle.Asn1.Crmf.SinglePubInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::.ctor(Org.BouncyCastle.Asn1.Crmf.SinglePubInfo[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::.ctor(Org.BouncyCastle.Asn1.Crmf.SinglePubInfo[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::get_Action()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.SinglePubInfo[] Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::GetPubInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PKMacValue Org.BouncyCastle.Asn1.Crmf.PKMacValue::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PKMacValue Org.BouncyCastle.Asn1.Crmf.PKMacValue::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PKMacValue Org.BouncyCastle.Asn1.Crmf.PKMacValue::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PKMacValue::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PKMacValue::.ctor(Org.BouncyCastle.Asn1.Cmp.PbmParameter,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PKMacValue::.ctor(Org.BouncyCastle.Asn1.Cmp.PbmParameter,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PKMacValue::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PKMacValue::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Crmf.PKMacValue::get_AlgID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Crmf.PKMacValue::get_MacValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.PKMacValue::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoPrivKey Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoPrivKey Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoPrivKey Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoPrivKey Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::.ctor(Org.BouncyCastle.Asn1.Crmf.PKMacValue)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::.ctor(Org.BouncyCastle.Asn1.Crmf.PKMacValue)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::.ctor(Org.BouncyCastle.Asn1.Crmf.SubsequentMessage)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::.ctor(Org.BouncyCastle.Asn1.Crmf.SubsequentMessage)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoSigningKey Org.BouncyCastle.Asn1.Crmf.PopoSigningKey::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoSigningKey Org.BouncyCastle.Asn1.Crmf.PopoSigningKey::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoSigningKey Org.BouncyCastle.Asn1.Crmf.PopoSigningKey::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PopoSigningKey::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PopoSigningKey::.ctor(Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PopoSigningKey::.ctor(Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput Org.BouncyCastle.Asn1.Crmf.PopoSigningKey::get_PoposkInput()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Crmf.PopoSigningKey::get_AlgorithmIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Crmf.PopoSigningKey::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.PopoSigningKey::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput::.ctor(Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput::.ctor(Org.BouncyCastle.Asn1.Crmf.PKMacValue,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput::.ctor(Org.BouncyCastle.Asn1.Crmf.PKMacValue,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput::get_Sender()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PKMacValue Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput::get_PublicKeyMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.ProofOfPossession Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.ProofOfPossession Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.ProofOfPossession Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.ProofOfPossession Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::.ctor(Org.BouncyCastle.Asn1.Crmf.PopoSigningKey)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::.ctor(Org.BouncyCastle.Asn1.Crmf.PopoSigningKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::.ctor(System.Int32,Org.BouncyCastle.Asn1.Crmf.PopoPrivKey)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::.ctor(System.Int32,Org.BouncyCastle.Asn1.Crmf.PopoPrivKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::get_Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.OptionalValidity Org.BouncyCastle.Asn1.Crmf.Rfc4211Asn1Utilities::CheckValidityFieldPresent(Org.BouncyCastle.Asn1.Crmf.OptionalValidity)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.Rfc4211Asn1Utilities::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.Rfc4211Asn1Utilities::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.SinglePubInfo Org.BouncyCastle.Asn1.Crmf.SinglePubInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.SinglePubInfo Org.BouncyCastle.Asn1.Crmf.SinglePubInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.SinglePubInfo Org.BouncyCastle.Asn1.Crmf.SinglePubInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.SinglePubInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.Crmf.SinglePubInfo::get_PubLocation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Crmf.SinglePubInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.SubsequentMessage::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.SubsequentMessage Org.BouncyCastle.Asn1.Crmf.SubsequentMessage::ValueOf(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Crmf.SubsequentMessage::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attribute Org.BouncyCastle.Asn1.Cms.Attribute::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attribute Org.BouncyCastle.Asn1.Cms.Attribute::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attribute Org.BouncyCastle.Asn1.Cms.Attribute::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Attribute::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Attribute::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Attribute::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Attribute::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.Attribute::get_AttrType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.Attribute::get_AttrValues()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.Attribute::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attributes Org.BouncyCastle.Asn1.Cms.Attributes::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attributes Org.BouncyCastle.Asn1.Cms.Attributes::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attributes Org.BouncyCastle.Asn1.Cms.Attributes::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attributes Org.BouncyCastle.Asn1.Cms.Attributes::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Attributes::.ctor(Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Attributes::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Attributes::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Attributes::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Attributes::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.Attributes::get_AttributeSet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attribute[] Org.BouncyCastle.Asn1.Cms.Attributes::GetAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.Attributes::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable/d__25::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable/d__25::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cms.AttributeTable/d__25::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable::.ctor(System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable::.ctor(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable::.ctor(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable::.ctor(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable::.ctor(Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable::.ctor(Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable::.ctor(Org.BouncyCastle.Asn1.Cms.Attributes)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable::.ctor(Org.BouncyCastle.Asn1.Cms.Attributes)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable::.ctor(System.Collections.Generic.Dictionary`2,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attribute Org.BouncyCastle.Asn1.Cms.AttributeTable::get_Item(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cms.AttributeTable::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Asn1.Cms.AttributeTable::GetEnumerator()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Asn1.Cms.AttributeTable::GetEnumerator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1EncodableVector Org.BouncyCastle.Asn1.Cms.AttributeTable::GetAll(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Asn1.Cms.AttributeTable::ToDictionary()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1EncodableVector Org.BouncyCastle.Asn1.Cms.AttributeTable::ToAsn1EncodableVector()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attributes Org.BouncyCastle.Asn1.Cms.AttributeTable::ToAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Asn1.Cms.AttributeTable::Add(Org.BouncyCastle.Asn1.Cms.Attribute[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Asn1.Cms.AttributeTable::Add(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Asn1.Cms.AttributeTable::Remove(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Asn1.Cms.AttributeTableExtensions::ToAttributeTable(Org.BouncyCastle.Asn1.Asn1EncodableVector)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Asn1.Cms.AttributeTableExtensions::ToAttributeTable(System.Collections.Generic.IReadOnlyCollection`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable Org.BouncyCastle.Asn1.Cms.AttributeTableExtensions::ToAttributeTable(Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AuthenticatedData Org.BouncyCastle.Asn1.Cms.AuthenticatedData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AuthenticatedData Org.BouncyCastle.Asn1.Cms.AuthenticatedData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AuthenticatedData Org.BouncyCastle.Asn1.Cms.AuthenticatedData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AuthenticatedData::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Cms.ContentInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AuthenticatedData::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Cms.ContentInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AuthenticatedData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.AuthenticatedData::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorInfo Org.BouncyCastle.Asn1.Cms.AuthenticatedData::get_OriginatorInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.AuthenticatedData::get_RecipientInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.AuthenticatedData::get_MacAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.AuthenticatedData::get_DigestAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Asn1.Cms.AuthenticatedData::get_EncapsulatedContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.AuthenticatedData::get_AuthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.AuthenticatedData::get_Mac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.AuthenticatedData::get_UnauthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.AuthenticatedData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cms.AuthenticatedData::CalculateVersion(Org.BouncyCastle.Asn1.Cms.OriginatorInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorInfo Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser::GetOriginatorInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser::GetRecipientInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser::GetMacAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser::GetDigestAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfoParser Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser::GetEnapsulatedContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser::GetAuthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser::GetUnauthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorInfo Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::get_OriginatorInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::get_RecipientInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::get_AuthEncryptedContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::get_AuthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::get_Mac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::get_UnauthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AuthEnvelopedDataParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AuthEnvelopedDataParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.AuthEnvelopedDataParser::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorInfo Org.BouncyCastle.Asn1.Cms.AuthEnvelopedDataParser::GetOriginatorInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser Org.BouncyCastle.Asn1.Cms.AuthEnvelopedDataParser::GetRecipientInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedContentInfoParser Org.BouncyCastle.Asn1.Cms.AuthEnvelopedDataParser::GetAuthEncryptedContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser Org.BouncyCastle.Asn1.Cms.AuthEnvelopedDataParser::GetAuthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.AuthEnvelopedDataParser::GetMac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser Org.BouncyCastle.Asn1.Cms.AuthEnvelopedDataParser::GetUnauthAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CcmParameters Org.BouncyCastle.Asn1.Cms.CcmParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CcmParameters Org.BouncyCastle.Asn1.Cms.CcmParameters::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CcmParameters Org.BouncyCastle.Asn1.Cms.CcmParameters::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CcmParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CcmParameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CcmParameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Cms.CcmParameters::GetNonce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cms.CcmParameters::get_IcvLen()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.CcmParameters::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int32,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int32,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection::get_DigestAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection::get_MacAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection::get_SignatureAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CmsAttributes::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CmsAttributes::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CompressedData Org.BouncyCastle.Asn1.Cms.CompressedData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CompressedData Org.BouncyCastle.Asn1.Cms.CompressedData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CompressedData Org.BouncyCastle.Asn1.Cms.CompressedData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CompressedData::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CompressedData::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CompressedData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CompressedData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.CompressedData::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.CompressedData::get_CompressionAlgorithmIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Asn1.Cms.CompressedData::get_EncapContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.CompressedData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CompressedDataParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.CompressedDataParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.CompressedDataParser::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.CompressedDataParser::get_CompressionAlgorithmIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfoParser Org.BouncyCastle.Asn1.Cms.CompressedDataParser::GetEncapContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Asn1.Cms.ContentInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Asn1.Cms.ContentInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Asn1.Cms.ContentInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.ContentInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.ContentInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.ContentInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.ContentInfo::get_ContentType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cms.ContentInfo::get_Content()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cms.ContentInfo::get_IsDefiniteLength()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.ContentInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.ContentInfoParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.ContentInfoParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.ContentInfoParser::get_ContentType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Cms.ContentInfoParser::GetContent(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo::get_ContentType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo::get_ContentEncryptionAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo::get_EncryptedContent()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EncryptedContentInfoParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EncryptedContentInfoParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.EncryptedContentInfoParser::get_ContentType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.EncryptedContentInfoParser::get_ContentEncryptionAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible Org.BouncyCastle.Asn1.Cms.EncryptedContentInfoParser::GetEncryptedContent(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedData Org.BouncyCastle.Asn1.Cms.EncryptedData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedData Org.BouncyCastle.Asn1.Cms.EncryptedData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedData Org.BouncyCastle.Asn1.Cms.EncryptedData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EncryptedData::.ctor(Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EncryptedData::.ctor(Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EncryptedData::.ctor(Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EncryptedData::.ctor(Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EncryptedData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.EncryptedData::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo Org.BouncyCastle.Asn1.Cms.EncryptedData::get_EncryptedContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.EncryptedData::get_UnprotectedAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.EncryptedData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EnvelopedData Org.BouncyCastle.Asn1.Cms.EnvelopedData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EnvelopedData Org.BouncyCastle.Asn1.Cms.EnvelopedData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EnvelopedData Org.BouncyCastle.Asn1.Cms.EnvelopedData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EnvelopedData::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EnvelopedData::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EnvelopedData::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo,Org.BouncyCastle.Asn1.Cms.Attributes)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EnvelopedData::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo,Org.BouncyCastle.Asn1.Cms.Attributes)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EnvelopedData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.EnvelopedData::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorInfo Org.BouncyCastle.Asn1.Cms.EnvelopedData::get_OriginatorInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.EnvelopedData::get_RecipientInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo Org.BouncyCastle.Asn1.Cms.EnvelopedData::get_EncryptedContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.EnvelopedData::get_UnprotectedAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.EnvelopedData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cms.EnvelopedData::CalculateVersion(Org.BouncyCastle.Asn1.Cms.OriginatorInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EnvelopedDataParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.EnvelopedDataParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.EnvelopedDataParser::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorInfo Org.BouncyCastle.Asn1.Cms.EnvelopedDataParser::GetOriginatorInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser Org.BouncyCastle.Asn1.Cms.EnvelopedDataParser::GetRecipientInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedContentInfoParser Org.BouncyCastle.Asn1.Cms.EnvelopedDataParser::GetEncryptedContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser Org.BouncyCastle.Asn1.Cms.EnvelopedDataParser::GetUnprotectedAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Evidence Org.BouncyCastle.Asn1.Cms.Evidence::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Evidence Org.BouncyCastle.Asn1.Cms.Evidence::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Evidence Org.BouncyCastle.Asn1.Cms.Evidence::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Evidence Org.BouncyCastle.Asn1.Cms.Evidence::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Evidence::.ctor(Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Evidence::.ctor(Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Evidence::.ctor(Org.BouncyCastle.Asn1.Tsp.EvidenceRecord)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Evidence::.ctor(Org.BouncyCastle.Asn1.Tsp.EvidenceRecord)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Evidence::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence Org.BouncyCastle.Asn1.Cms.Evidence::get_TstEvidence()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.EvidenceRecord Org.BouncyCastle.Asn1.Cms.Evidence::get_ErsEvidence()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.Evidence::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.GcmParameters Org.BouncyCastle.Asn1.Cms.GcmParameters::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.GcmParameters Org.BouncyCastle.Asn1.Cms.GcmParameters::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.GcmParameters Org.BouncyCastle.Asn1.Cms.GcmParameters::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.GcmParameters::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.GcmParameters::.ctor(System.Byte[],System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.GcmParameters::.ctor(System.Byte[],System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.Cms.GcmParameters::GetNonce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cms.GcmParameters::get_IcvLen()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.GcmParameters::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::get_Name()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::get_SerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KekIdentifier Org.BouncyCastle.Asn1.Cms.KekIdentifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KekIdentifier Org.BouncyCastle.Asn1.Cms.KekIdentifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KekIdentifier Org.BouncyCastle.Asn1.Cms.KekIdentifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KekIdentifier::.ctor(System.Byte[],Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KekIdentifier::.ctor(System.Byte[],Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KekIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KekIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.KekIdentifier::get_KeyIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Cms.KekIdentifier::get_Date()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute Org.BouncyCastle.Asn1.Cms.KekIdentifier::get_Other()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.KekIdentifier::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KekRecipientInfo Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KekRecipientInfo Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KekRecipientInfo Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.KekIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.KekIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KekIdentifier Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::get_KekID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::get_KeyEncryptionAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::get_EncryptedKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.KekRecipientInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KemRecipientInfo Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KemRecipientInfo Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KemRecipientInfo Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.RecipientIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.RecipientIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientIdentifier Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::get_RecipientIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::get_Kem()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::get_Kemct()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::get_Kdf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::get_Wrap()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::get_Ukm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::get_EncryptedKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KemRecipientInfo::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::.ctor(Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::.ctor(Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::get_IssuerAndSerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::get_RKeyID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_Originator()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_UserKeyingMaterial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_KeyEncryptionAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::get_RecipientEncryptedKeys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.RecipientIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.RecipientIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientIdentifier Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::get_RecipientIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::get_KeyEncryptionAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::get_EncryptedKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.MetaData Org.BouncyCastle.Asn1.Cms.MetaData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.MetaData Org.BouncyCastle.Asn1.Cms.MetaData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.MetaData Org.BouncyCastle.Asn1.Cms.MetaData::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.MetaData Org.BouncyCastle.Asn1.Cms.MetaData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.MetaData::.ctor(Org.BouncyCastle.Asn1.DerBoolean,Org.BouncyCastle.Asn1.DerUtf8String,Org.BouncyCastle.Asn1.DerIA5String,Org.BouncyCastle.Asn1.Cms.Attributes)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.MetaData::.ctor(Org.BouncyCastle.Asn1.DerBoolean,Org.BouncyCastle.Asn1.DerUtf8String,Org.BouncyCastle.Asn1.DerIA5String,Org.BouncyCastle.Asn1.Cms.Attributes)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.MetaData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cms.MetaData::get_IsHashProtected()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUtf8String Org.BouncyCastle.Asn1.Cms.MetaData::get_FileName()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String Org.BouncyCastle.Asn1.Cms.MetaData::get_MediaType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attributes Org.BouncyCastle.Asn1.Cms.MetaData::get_OtherMetaData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.MetaData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::.ctor(Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::.ctor(Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::get_ID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::get_IssuerAndSerialNumber()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::get_SubjectKeyIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::get_OriginatorPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorInfo Org.BouncyCastle.Asn1.Cms.OriginatorInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorInfo Org.BouncyCastle.Asn1.Cms.OriginatorInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorInfo Org.BouncyCastle.Asn1.Cms.OriginatorInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.OriginatorInfo::get_Certificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.OriginatorInfo::get_Crls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.OriginatorInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::get_Algorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::get_PublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::get_KeyAttrId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::get_KeyAttr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo::get_OriType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo::get_OriValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat::get_InfoFormat()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat::get_Info()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::get_KeyDerivationAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::get_KeyEncryptionAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::get_EncryptedKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::.ctor(Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::.ctor(Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::get_Identifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::get_EncryptedKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientIdentifier Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientIdentifier Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientIdentifier Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientIdentifier Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::get_IsTagged()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::get_ID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.RecipientIdentifier::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientInfo Org.BouncyCastle.Asn1.Cms.RecipientInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientInfo Org.BouncyCastle.Asn1.Cms.RecipientInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientInfo Org.BouncyCastle.Asn1.Cms.RecipientInfo::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientInfo Org.BouncyCastle.Asn1.Cms.RecipientInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.KekRecipientInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.KekRecipientInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.RecipientInfo::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cms.RecipientInfo::get_IsTagged()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cms.RecipientInfo::get_Info()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.RecipientInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cms.RecipientInfo::IsKeyTransV0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cms.RecipientInfo::IsPasswordOrOther()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::.ctor(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::.ctor(System.Byte[],Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::.ctor(System.Byte[],Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::get_SubjectKeyIdentifier()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::get_Date()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::get_OtherKeyAttribute()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ScvpReqRes Org.BouncyCastle.Asn1.Cms.ScvpReqRes::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ScvpReqRes Org.BouncyCastle.Asn1.Cms.ScvpReqRes::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ScvpReqRes Org.BouncyCastle.Asn1.Cms.ScvpReqRes::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.ScvpReqRes::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.ScvpReqRes::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.ScvpReqRes::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.ScvpReqRes::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo,Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.ScvpReqRes::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo,Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Asn1.Cms.ScvpReqRes::get_Request()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Asn1.Cms.ScvpReqRes::get_Response()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.ScvpReqRes::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignedData Org.BouncyCastle.Asn1.Cms.SignedData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignedData Org.BouncyCastle.Asn1.Cms.SignedData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignedData Org.BouncyCastle.Asn1.Cms.SignedData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignedData::.ctor(Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Cms.ContentInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignedData::.ctor(Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Cms.ContentInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignedData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.SignedData::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.SignedData::get_DigestAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Asn1.Cms.SignedData::get_EncapContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.SignedData::get_Certificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.SignedData::get_CRLs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.SignedData::get_SignerInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.SignedData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignedDataParser Org.BouncyCastle.Asn1.Cms.SignedDataParser::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignedDataParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignedDataParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.SignedDataParser::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser Org.BouncyCastle.Asn1.Cms.SignedDataParser::GetDigestAlgorithms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfoParser Org.BouncyCastle.Asn1.Cms.SignedDataParser::GetEncapContentInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser Org.BouncyCastle.Asn1.Cms.SignedDataParser::GetCertificates()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser Org.BouncyCastle.Asn1.Cms.SignedDataParser::GetCrls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser Org.BouncyCastle.Asn1.Cms.SignedDataParser::GetSignerInfos()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerIdentifier Org.BouncyCastle.Asn1.Cms.SignerIdentifier::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerIdentifier Org.BouncyCastle.Asn1.Cms.SignerIdentifier::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerIdentifier Org.BouncyCastle.Asn1.Cms.SignerIdentifier::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerIdentifier Org.BouncyCastle.Asn1.Cms.SignerIdentifier::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignerIdentifier::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignerIdentifier::.ctor(Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignerIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignerIdentifier::.ctor(Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignerIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignerIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignerIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignerIdentifier::.ctor(Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cms.SignerIdentifier::get_IsTagged()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cms.SignerIdentifier::get_ID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.SignerIdentifier::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerInfo Org.BouncyCastle.Asn1.Cms.SignerInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerInfo Org.BouncyCastle.Asn1.Cms.SignerInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerInfo Org.BouncyCastle.Asn1.Cms.SignerInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignerInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignerInfo::.ctor(Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Cms.Attributes,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Cms.Attributes)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignerInfo::.ctor(Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Cms.Attributes,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Cms.Attributes)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignerInfo::.ctor(Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1Set)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.SignerInfo::.ctor(Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1Set)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.SignerInfo::get_AuthenticatedAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.SignerInfo::get_DigestAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.SignerInfo::get_DigestEncryptionAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.SignerInfo::get_EncryptedDigest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.SignerInfo::get_Signature()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cms.SignerInfo::get_SignatureAlgorithm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.SignerInfo::get_SignedAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerIdentifier Org.BouncyCastle.Asn1.Cms.SignerInfo::get_SignerID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.SignerInfo::get_UnauthenticatedAttributes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.SignerInfo::get_UnsignedAttrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.SignerInfo::get_Version()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.SignerInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Time Org.BouncyCastle.Asn1.Cms.Time::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Time Org.BouncyCastle.Asn1.Cms.Time::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Time Org.BouncyCastle.Asn1.Cms.Time::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Time Org.BouncyCastle.Asn1.Cms.Time::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Time::.ctor(Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Time::.ctor(Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Time::.ctor(Org.BouncyCastle.Asn1.Asn1UtcTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Time::.ctor(Org.BouncyCastle.Asn1.Asn1UtcTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Time::.ctor(System.DateTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Time::.ctor(System.DateTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Cms.Time::ToDateTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Cms.Time::get_Date()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.Time::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Cms.Time::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo,Org.BouncyCastle.Asn1.X509.CertificateList)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl::.ctor(Org.BouncyCastle.Asn1.Cms.ContentInfo,Org.BouncyCastle.Asn1.X509.CertificateList)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl::get_TimeStampToken()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificateList Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl::get_Crl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampedData Org.BouncyCastle.Asn1.Cms.TimeStampedData::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampedData Org.BouncyCastle.Asn1.Cms.TimeStampedData::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampedData Org.BouncyCastle.Asn1.Cms.TimeStampedData::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampedData::.ctor(Org.BouncyCastle.Asn1.DerIA5String,Org.BouncyCastle.Asn1.Cms.MetaData,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Cms.Evidence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampedData::.ctor(Org.BouncyCastle.Asn1.DerIA5String,Org.BouncyCastle.Asn1.Cms.MetaData,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Cms.Evidence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampedData::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String Org.BouncyCastle.Asn1.Cms.TimeStampedData::get_DataUri()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.MetaData Org.BouncyCastle.Asn1.Cms.TimeStampedData::get_MetaData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.TimeStampedData::get_Content()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Evidence Org.BouncyCastle.Asn1.Cms.TimeStampedData::get_TemporalEvidence()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.TimeStampedData::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampedDataParser::.ctor(Org.BouncyCastle.Asn1.Asn1SequenceParser)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampedDataParser Org.BouncyCastle.Asn1.Cms.TimeStampedDataParser::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String Org.BouncyCastle.Asn1.Cms.TimeStampedDataParser::get_DataUri()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.MetaData Org.BouncyCastle.Asn1.Cms.TimeStampedDataParser::get_MetaData()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetStringParser Org.BouncyCastle.Asn1.Cms.TimeStampedDataParser::get_Content()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Evidence Org.BouncyCastle.Asn1.Cms.TimeStampedDataParser::GetTemporalEvidence()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence::.ctor(Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence::.ctor(Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence::.ctor(Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence::.ctor(Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl[] Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence::ToTimeStampAndCrlArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::.ctor(Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::get_EphemeralPublicKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::get_AddedUkm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CAKeyUpdAnnContent Org.BouncyCastle.Asn1.Cmp.CAKeyUpdAnnContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CAKeyUpdAnnContent Org.BouncyCastle.Asn1.Cmp.CAKeyUpdAnnContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CAKeyUpdAnnContent Org.BouncyCastle.Asn1.Cmp.CAKeyUpdAnnContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CAKeyUpdAnnContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Asn1.Cmp.CAKeyUpdAnnContent::get_OldWithNew()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Asn1.Cmp.CAKeyUpdAnnContent::get_NewWithOld()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Asn1.Cmp.CAKeyUpdAnnContent::get_NewWithNew()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.CAKeyUpdAnnContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertAnnContent Org.BouncyCastle.Asn1.Cmp.CertAnnContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertAnnContent Org.BouncyCastle.Asn1.Cmp.CertAnnContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertAnnContent Org.BouncyCastle.Asn1.Cmp.CertAnnContent::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertAnnContent Org.BouncyCastle.Asn1.Cmp.CertAnnContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertAnnContent::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertAnnContent::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertAnnContent::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertAnnContent::.ctor(Org.BouncyCastle.Asn1.Cmp.CmpCertificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertAnnContent::.ctor(Org.BouncyCastle.Asn1.Cmp.CmpCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertAnnContent::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertAnnContent::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertConfirmContent Org.BouncyCastle.Asn1.Cmp.CertConfirmContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertConfirmContent Org.BouncyCastle.Asn1.Cmp.CertConfirmContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertConfirmContent Org.BouncyCastle.Asn1.Cmp.CertConfirmContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertConfirmContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertStatus[] Org.BouncyCastle.Asn1.Cmp.CertConfirmContent::ToCertStatusArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.CertConfirmContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::.ctor(Org.BouncyCastle.Asn1.Cmp.CertOrEncCert)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::.ctor(Org.BouncyCastle.Asn1.Cmp.CertOrEncCert)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::.ctor(Org.BouncyCastle.Asn1.Cmp.CertOrEncCert,Org.BouncyCastle.Asn1.Crmf.EncryptedValue,Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::.ctor(Org.BouncyCastle.Asn1.Cmp.CertOrEncCert,Org.BouncyCastle.Asn1.Crmf.EncryptedValue,Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::.ctor(Org.BouncyCastle.Asn1.Cmp.CertOrEncCert,Org.BouncyCastle.Asn1.Crmf.EncryptedKey,Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::.ctor(Org.BouncyCastle.Asn1.Cmp.CertOrEncCert,Org.BouncyCastle.Asn1.Crmf.EncryptedKey,Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertOrEncCert Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::get_CertOrEncCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedKey Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::get_PrivateKey()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::get_PublicationInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertOrEncCert Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertOrEncCert Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertOrEncCert Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertOrEncCert Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::.ctor(Org.BouncyCastle.Asn1.Cmp.CmpCertificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::.ctor(Org.BouncyCastle.Asn1.Cmp.CmpCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::.ctor(Org.BouncyCastle.Asn1.Crmf.EncryptedValue)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::.ctor(Org.BouncyCastle.Asn1.Crmf.EncryptedValue)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::.ctor(Org.BouncyCastle.Asn1.Crmf.EncryptedKey)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::.ctor(Org.BouncyCastle.Asn1.Crmf.EncryptedKey)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::get_Certificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedKey Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::get_EncryptedCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::get_HasEncryptedCertificate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.CertOrEncCert::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertRepMessage Org.BouncyCastle.Asn1.Cmp.CertRepMessage::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertRepMessage Org.BouncyCastle.Asn1.Cmp.CertRepMessage::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertRepMessage Org.BouncyCastle.Asn1.Cmp.CertRepMessage::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertRepMessage::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertRepMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.CmpCertificate[],Org.BouncyCastle.Asn1.Cmp.CertResponse[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertRepMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.CmpCertificate[],Org.BouncyCastle.Asn1.Cmp.CertResponse[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate[] Org.BouncyCastle.Asn1.Cmp.CertRepMessage::GetCAPubs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertResponse[] Org.BouncyCastle.Asn1.Cmp.CertRepMessage::GetResponse()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.CertRepMessage::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent::.ctor(Org.BouncyCastle.Asn1.Crmf.CertTemplate,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent::.ctor(Org.BouncyCastle.Asn1.Crmf.CertTemplate,Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplate Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent::get_CertTemplate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent::get_KeySpec()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.Controls Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent::get_KeySpecControls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertResponse Org.BouncyCastle.Asn1.Cmp.CertResponse::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertResponse Org.BouncyCastle.Asn1.Cmp.CertResponse::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertResponse Org.BouncyCastle.Asn1.Cmp.CertResponse::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertResponse::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertResponse::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertResponse::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertResponse::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo,Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertResponse::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo,Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cmp.CertResponse::get_CertReqID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo Org.BouncyCastle.Asn1.Cmp.CertResponse::get_Status()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair Org.BouncyCastle.Asn1.Cmp.CertResponse::get_CertifiedKeyPair()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.CertResponse::get_RspInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.CertResponse::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertStatus Org.BouncyCastle.Asn1.Cmp.CertStatus::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertStatus Org.BouncyCastle.Asn1.Cmp.CertStatus::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertStatus Org.BouncyCastle.Asn1.Cmp.CertStatus::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertStatus::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertStatus::.ctor(System.Byte[],Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertStatus::.ctor(System.Byte[],Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertStatus::.ctor(System.Byte[],Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertStatus::.ctor(System.Byte[],Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertStatus::.ctor(System.Byte[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertStatus::.ctor(System.Byte[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertStatus::.ctor(System.Byte[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CertStatus::.ctor(System.Byte[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.CertStatus::get_CertHash()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cmp.CertStatus::get_CertReqID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo Org.BouncyCastle.Asn1.Cmp.CertStatus::get_StatusInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cmp.CertStatus::get_HashAlg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.CertStatus::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.Challenge/Rand Org.BouncyCastle.Asn1.Cmp.Challenge/Rand::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.Challenge/Rand Org.BouncyCastle.Asn1.Cmp.Challenge/Rand::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.Challenge/Rand::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.Challenge/Rand::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.Challenge/Rand::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.Challenge/Rand::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cmp.Challenge/Rand::get_IntVal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.Cmp.Challenge/Rand::get_Sender()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.Challenge/Rand::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.Challenge Org.BouncyCastle.Asn1.Cmp.Challenge::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.Challenge Org.BouncyCastle.Asn1.Cmp.Challenge::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.Challenge Org.BouncyCastle.Asn1.Cmp.Challenge::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.Challenge::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.Challenge::.ctor(System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.Challenge::.ctor(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.Challenge::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.Challenge::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cmp.Challenge::get_Owf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.Challenge::get_Witness()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.Challenge::get_ChallengeValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.Challenge::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Asn1.Cmp.CmpCertificate::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Asn1.Cmp.CmpCertificate::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Asn1.Cmp.CmpCertificate::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Asn1.Cmp.CmpCertificate::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CmpCertificate::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CmpCertificate::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CmpCertificate::.ctor(Org.BouncyCastle.Asn1.Cmp.CmpCertificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CmpCertificate::.ctor(Org.BouncyCastle.Asn1.Cmp.CmpCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CmpCertificate::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CmpCertificate::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cmp.CmpCertificate::get_IsX509v3PKCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509CertificateStructure Org.BouncyCastle.Asn1.Cmp.CmpCertificate::get_X509v3PKCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.CmpCertificate::get_OtherCertTag()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cmp.CmpCertificate::get_OtherCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.CmpCertificate::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlAnnContent Org.BouncyCastle.Asn1.Cmp.CrlAnnContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlAnnContent Org.BouncyCastle.Asn1.Cmp.CrlAnnContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlAnnContent Org.BouncyCastle.Asn1.Cmp.CrlAnnContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CrlAnnContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CrlAnnContent::.ctor(Org.BouncyCastle.Asn1.X509.CertificateList)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CrlAnnContent::.ctor(Org.BouncyCastle.Asn1.X509.CertificateList)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificateList[] Org.BouncyCastle.Asn1.Cmp.CrlAnnContent::ToCertificateListArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.CrlAnnContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlSource Org.BouncyCastle.Asn1.Cmp.CrlSource::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlSource Org.BouncyCastle.Asn1.Cmp.CrlSource::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlSource Org.BouncyCastle.Asn1.Cmp.CrlSource::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlSource Org.BouncyCastle.Asn1.Cmp.CrlSource::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CrlSource::.ctor(Org.BouncyCastle.Asn1.X509.DistributionPointName,Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CrlSource::.ctor(Org.BouncyCastle.Asn1.X509.DistributionPointName,Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPointName Org.BouncyCastle.Asn1.Cmp.CrlSource::get_Dpn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.Cmp.CrlSource::get_Issuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.CrlSource::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlStatus Org.BouncyCastle.Asn1.Cmp.CrlStatus::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlStatus Org.BouncyCastle.Asn1.Cmp.CrlStatus::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlStatus Org.BouncyCastle.Asn1.Cmp.CrlStatus::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CrlStatus::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CrlStatus::.ctor(Org.BouncyCastle.Asn1.Cmp.CrlSource,Org.BouncyCastle.Asn1.X509.Time)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.CrlStatus::.ctor(Org.BouncyCastle.Asn1.Cmp.CrlSource,Org.BouncyCastle.Asn1.X509.Time)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlSource Org.BouncyCastle.Asn1.Cmp.CrlStatus::get_Source()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.Cmp.CrlStatus::get_ThisUpdate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.CrlStatus::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.DhbmParameter Org.BouncyCastle.Asn1.Cmp.DhbmParameter::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.DhbmParameter Org.BouncyCastle.Asn1.Cmp.DhbmParameter::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.DhbmParameter Org.BouncyCastle.Asn1.Cmp.DhbmParameter::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.DhbmParameter::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.DhbmParameter::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.DhbmParameter::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cmp.DhbmParameter::get_Owf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cmp.DhbmParameter::get_Mac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.DhbmParameter::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Cmp.PkiFreeText)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Cmp.PkiFreeText)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent::get_PkiStatusInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent::get_ErrorCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFreeText Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent::get_ErrorDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.GenMsgContent Org.BouncyCastle.Asn1.Cmp.GenMsgContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.GenMsgContent Org.BouncyCastle.Asn1.Cmp.GenMsgContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.GenMsgContent Org.BouncyCastle.Asn1.Cmp.GenMsgContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.GenMsgContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.GenMsgContent::.ctor(Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.GenMsgContent::.ctor(Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.GenMsgContent::.ctor(Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.GenMsgContent::.ctor(Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue[] Org.BouncyCastle.Asn1.Cmp.GenMsgContent::ToInfoTypeAndValueArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.GenMsgContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.GenRepContent Org.BouncyCastle.Asn1.Cmp.GenRepContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.GenRepContent Org.BouncyCastle.Asn1.Cmp.GenRepContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.GenRepContent Org.BouncyCastle.Asn1.Cmp.GenRepContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.GenRepContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.GenRepContent::.ctor(Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.GenRepContent::.ctor(Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.GenRepContent::.ctor(Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.GenRepContent::.ctor(Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue[] Org.BouncyCastle.Asn1.Cmp.GenRepContent::ToInfoTypeAndValueArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.GenRepContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue::.ctor(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue::get_InfoType()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue::get_InfoValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KemBMParameter Org.BouncyCastle.Asn1.Cmp.KemBMParameter::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KemBMParameter Org.BouncyCastle.Asn1.Cmp.KemBMParameter::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KemBMParameter Org.BouncyCastle.Asn1.Cmp.KemBMParameter::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemBMParameter::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemBMParameter::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemBMParameter::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemBMParameter::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int64,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemBMParameter::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int64,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cmp.KemBMParameter::get_Kdf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cmp.KemBMParameter::get_Len()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cmp.KemBMParameter::get_Mac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.KemBMParameter::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KemCiphertextInfo Org.BouncyCastle.Asn1.Cmp.KemCiphertextInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KemCiphertextInfo Org.BouncyCastle.Asn1.Cmp.KemCiphertextInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KemCiphertextInfo Org.BouncyCastle.Asn1.Cmp.KemCiphertextInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemCiphertextInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemCiphertextInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemCiphertextInfo::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cmp.KemCiphertextInfo::get_Kem()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.KemCiphertextInfo::get_Ct()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.KemCiphertextInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KemOtherInfo Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KemOtherInfo Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KemOtherInfo Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1OctetString,System.Int64,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.Asn1OctetString,System.Int64,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::get_TransactionID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::get_SenderNonce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::get_RecipNonce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::get_Len()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::get_Mac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::get_Ct()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KemOtherInfo::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::get_Status()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::get_NewSigCert()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate[] Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::GetCACerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair[] Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::GetKeyPairHist()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.NestedMessageContent Org.BouncyCastle.Asn1.Cmp.NestedMessageContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.NestedMessageContent Org.BouncyCastle.Asn1.Cmp.NestedMessageContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.NestedMessageContent Org.BouncyCastle.Asn1.Cmp.NestedMessageContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.NestedMessageContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessage)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.NestedMessageContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessage)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.NestedMessageContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessage[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.NestedMessageContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessage[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.NestedMessageContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.NestedMessageContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.NestedMessageContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessages)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.NestedMessageContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessages)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.OobCert Org.BouncyCastle.Asn1.Cmp.OobCert::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.OobCert Org.BouncyCastle.Asn1.Cmp.OobCert::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.OobCert Org.BouncyCastle.Asn1.Cmp.OobCert::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.OobCert Org.BouncyCastle.Asn1.Cmp.OobCert::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.OobCert::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.OobCert::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.OobCert::.ctor(Org.BouncyCastle.Asn1.Cmp.CmpCertificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.OobCert::.ctor(Org.BouncyCastle.Asn1.Cmp.CmpCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.OobCert::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.OobCert::.ctor(Org.BouncyCastle.Asn1.X509.X509CertificateStructure)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.OobCertHash Org.BouncyCastle.Asn1.Cmp.OobCertHash::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.OobCertHash Org.BouncyCastle.Asn1.Cmp.OobCertHash::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.OobCertHash Org.BouncyCastle.Asn1.Cmp.OobCertHash::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.OobCertHash::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.OobCertHash::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Crmf.CertId,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.OobCertHash::.ctor(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.Crmf.CertId,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertId Org.BouncyCastle.Asn1.Cmp.OobCertHash::get_CertID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cmp.OobCertHash::get_HashAlg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Cmp.OobCertHash::get_HashVal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.OobCertHash::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PbmParameter Org.BouncyCastle.Asn1.Cmp.PbmParameter::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PbmParameter Org.BouncyCastle.Asn1.Cmp.PbmParameter::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PbmParameter Org.BouncyCastle.Asn1.Cmp.PbmParameter::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PbmParameter::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PbmParameter::.ctor(System.Byte[],Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int32,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PbmParameter::.ctor(System.Byte[],Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int32,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PbmParameter::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PbmParameter::.ctor(Org.BouncyCastle.Asn1.Asn1OctetString,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cmp.PbmParameter::get_IterationCount()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cmp.PbmParameter::get_Mac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cmp.PbmParameter::get_Owf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.PbmParameter::get_Salt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.PbmParameter::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiBody Org.BouncyCastle.Asn1.Cmp.PkiBody::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiBody Org.BouncyCastle.Asn1.Cmp.PkiBody::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiBody Org.BouncyCastle.Asn1.Cmp.PkiBody::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiBody Org.BouncyCastle.Asn1.Cmp.PkiBody::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiBody::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiBody::.ctor(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiBody::.ctor(Org.BouncyCastle.Asn1.Asn1Encodable,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cmp.PkiBody::get_Content()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::get_Type()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.PkiBody::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiConfirmContent Org.BouncyCastle.Asn1.Cmp.PkiConfirmContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiConfirmContent Org.BouncyCastle.Asn1.Cmp.PkiConfirmContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiConfirmContent Org.BouncyCastle.Asn1.Cmp.PkiConfirmContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiConfirmContent::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiConfirmContent::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiConfirmContent::.ctor(Org.BouncyCastle.Asn1.Asn1Null)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.PkiConfirmContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::.ctor(Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::.ctor(Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFreeText/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFreeText/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFreeText/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cmp.PkiFreeText/<>c::<.ctor>b__9_0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFreeText Org.BouncyCastle.Asn1.Cmp.PkiFreeText::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFreeText Org.BouncyCastle.Asn1.Cmp.PkiFreeText::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFreeText Org.BouncyCastle.Asn1.Cmp.PkiFreeText::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFreeText Org.BouncyCastle.Asn1.Cmp.PkiFreeText::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFreeText::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFreeText::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFreeText::.ctor(Org.BouncyCastle.Asn1.DerUtf8String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFreeText::.ctor(Org.BouncyCastle.Asn1.DerUtf8String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFreeText::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFreeText::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFreeText::.ctor(Org.BouncyCastle.Asn1.DerUtf8String[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFreeText::.ctor(Org.BouncyCastle.Asn1.DerUtf8String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFreeText::.ctor(System.String[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiFreeText::.ctor(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFreeText::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUtf8String Org.BouncyCastle.Asn1.Cmp.PkiFreeText::get_Item(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.PkiFreeText::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeader Org.BouncyCastle.Asn1.Cmp.PkiHeader::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeader Org.BouncyCastle.Asn1.Cmp.PkiHeader::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeader Org.BouncyCastle.Asn1.Cmp.PkiHeader::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiHeader::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiHeader::.ctor(System.Int32,Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiHeader::.ctor(System.Int32,Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiHeader::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cmp.PkiHeader::get_Pvno()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.Cmp.PkiHeader::get_Sender()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.Cmp.PkiHeader::get_Recipient()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Cmp.PkiHeader::get_MessageTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Cmp.PkiHeader::get_ProtectionAlg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.PkiHeader::get_SenderKID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.PkiHeader::get_RecipKID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.PkiHeader::get_TransactionID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.PkiHeader::get_SenderNonce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Cmp.PkiHeader::get_RecipNonce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFreeText Org.BouncyCastle.Asn1.Cmp.PkiHeader::get_FreeText()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue[] Org.BouncyCastle.Asn1.Cmp.PkiHeader::GetGeneralInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.PkiHeader::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiHeader::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::.ctor(System.Int32,Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::.ctor(System.Int32,Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetMessageTime(Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetProtectionAlg(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetSenderKID(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetSenderKID(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetRecipKID(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetRecipKID(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetTransactionID(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetTransactionID(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetSenderNonce(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetSenderNonce(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetRecipNonce(System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetRecipNonce(Org.BouncyCastle.Asn1.Asn1OctetString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetFreeText(Org.BouncyCastle.Asn1.Cmp.PkiFreeText)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetGeneralInfo(Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetGeneralInfo(Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::SetGeneralInfo(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeader Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiMessage Org.BouncyCastle.Asn1.Cmp.PkiMessage::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiMessage Org.BouncyCastle.Asn1.Cmp.PkiMessage::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiMessage Org.BouncyCastle.Asn1.Cmp.PkiMessage::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiMessage::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiHeader,Org.BouncyCastle.Asn1.Cmp.PkiBody,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.Cmp.CmpCertificate[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiHeader,Org.BouncyCastle.Asn1.Cmp.PkiBody,Org.BouncyCastle.Asn1.DerBitString,Org.BouncyCastle.Asn1.Cmp.CmpCertificate[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiHeader,Org.BouncyCastle.Asn1.Cmp.PkiBody,Org.BouncyCastle.Asn1.DerBitString)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiHeader,Org.BouncyCastle.Asn1.Cmp.PkiBody,Org.BouncyCastle.Asn1.DerBitString)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiHeader,Org.BouncyCastle.Asn1.Cmp.PkiBody)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiMessage::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiHeader,Org.BouncyCastle.Asn1.Cmp.PkiBody)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeader Org.BouncyCastle.Asn1.Cmp.PkiMessage::get_Header()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiBody Org.BouncyCastle.Asn1.Cmp.PkiMessage::get_Body()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Cmp.PkiMessage::get_Protection()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate[] Org.BouncyCastle.Asn1.Cmp.PkiMessage::GetExtraCerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.PkiMessage::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiMessages Org.BouncyCastle.Asn1.Cmp.PkiMessages::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiMessages Org.BouncyCastle.Asn1.Cmp.PkiMessages::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiMessages Org.BouncyCastle.Asn1.Cmp.PkiMessages::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiMessages::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiMessages::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiMessages::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessages)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiMessages::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessages)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiMessages::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessage[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiMessages::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiMessage[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiMessage[] Org.BouncyCastle.Asn1.Cmp.PkiMessages::ToPkiMessageArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.PkiMessages::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiStatus)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::.ctor(Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::get_Status()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::get_Value()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::GetOptional(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::.ctor(System.Int32,Org.BouncyCastle.Asn1.Cmp.PkiFreeText)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::.ctor(System.Int32,Org.BouncyCastle.Asn1.Cmp.PkiFreeText)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::.ctor(System.Int32,Org.BouncyCastle.Asn1.Cmp.PkiFreeText,Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::.ctor(System.Int32,Org.BouncyCastle.Asn1.Cmp.PkiFreeText,Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::get_Status()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::get_StatusObject()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFreeText Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::get_StatusString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::get_FailInfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PollRepContent Org.BouncyCastle.Asn1.Cmp.PollRepContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PollRepContent Org.BouncyCastle.Asn1.Cmp.PollRepContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PollRepContent Org.BouncyCastle.Asn1.Cmp.PollRepContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollRepContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollRepContent::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollRepContent::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollRepContent::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Cmp.PkiFreeText)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollRepContent::.ctor(Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.DerInteger,Org.BouncyCastle.Asn1.Cmp.PkiFreeText)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PollRepContent::get_Count()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cmp.PollRepContent::GetCertReqID(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cmp.PollRepContent::GetCheckAfter(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFreeText Org.BouncyCastle.Asn1.Cmp.PollRepContent::GetReason(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.PollRepContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::<.ctor>b__6_0(Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::<.ctor>b__8_0(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger[] Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::b__9_0(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::b__10_0(Org.BouncyCastle.Asn1.Asn1Encodable)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PollReqContent Org.BouncyCastle.Asn1.Cmp.PollReqContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PollReqContent Org.BouncyCastle.Asn1.Cmp.PollReqContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PollReqContent Org.BouncyCastle.Asn1.Cmp.PollReqContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollReqContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollReqContent::.ctor(Org.BouncyCastle.Asn1.DerInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollReqContent::.ctor(Org.BouncyCastle.Asn1.DerInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollReqContent::.ctor(Org.BouncyCastle.Asn1.DerInteger[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollReqContent::.ctor(Org.BouncyCastle.Asn1.DerInteger[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollReqContent::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollReqContent::.ctor(Org.BouncyCastle.Math.BigInteger)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollReqContent::.ctor(Org.BouncyCastle.Math.BigInteger[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PollReqContent::.ctor(Org.BouncyCastle.Math.BigInteger[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger[][] Org.BouncyCastle.Asn1.Cmp.PollReqContent::GetCertReqIDs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Asn1.Cmp.PollReqContent::GetCertReqIDValues()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.PollReqContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PopoDecKeyChallContent Org.BouncyCastle.Asn1.Cmp.PopoDecKeyChallContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PopoDecKeyChallContent Org.BouncyCastle.Asn1.Cmp.PopoDecKeyChallContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PopoDecKeyChallContent Org.BouncyCastle.Asn1.Cmp.PopoDecKeyChallContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PopoDecKeyChallContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.Challenge[] Org.BouncyCastle.Asn1.Cmp.PopoDecKeyChallContent::ToChallengeArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.PopoDecKeyChallContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PopoDecKeyRespContent Org.BouncyCastle.Asn1.Cmp.PopoDecKeyRespContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PopoDecKeyRespContent Org.BouncyCastle.Asn1.Cmp.PopoDecKeyRespContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PopoDecKeyRespContent Org.BouncyCastle.Asn1.Cmp.PopoDecKeyRespContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.PopoDecKeyRespContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger[] Org.BouncyCastle.Asn1.Cmp.PopoDecKeyRespContent::ToIntegerArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.PopoDecKeyRespContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.ProtectedPart Org.BouncyCastle.Asn1.Cmp.ProtectedPart::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.ProtectedPart Org.BouncyCastle.Asn1.Cmp.ProtectedPart::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.ProtectedPart Org.BouncyCastle.Asn1.Cmp.ProtectedPart::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.ProtectedPart::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.ProtectedPart::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiHeader,Org.BouncyCastle.Asn1.Cmp.PkiBody)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.ProtectedPart::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiHeader,Org.BouncyCastle.Asn1.Cmp.PkiBody)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeader Org.BouncyCastle.Asn1.Cmp.ProtectedPart::get_Header()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiBody Org.BouncyCastle.Asn1.Cmp.ProtectedPart::get_Body()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.ProtectedPart::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevAnnContent Org.BouncyCastle.Asn1.Cmp.RevAnnContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevAnnContent Org.BouncyCastle.Asn1.Cmp.RevAnnContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevAnnContent Org.BouncyCastle.Asn1.Cmp.RevAnnContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevAnnContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable,Org.BouncyCastle.Asn1.Crmf.CertId,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevAnnContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable,Org.BouncyCastle.Asn1.Crmf.CertId,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Asn1GeneralizedTime)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevAnnContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable,Org.BouncyCastle.Asn1.Crmf.CertId,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevAnnContent::.ctor(Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable,Org.BouncyCastle.Asn1.Crmf.CertId,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.Asn1GeneralizedTime,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevAnnContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable Org.BouncyCastle.Asn1.Cmp.RevAnnContent::get_Status()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertId Org.BouncyCastle.Asn1.Cmp.RevAnnContent::get_CertID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Cmp.RevAnnContent::get_WillBeRevokedAt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime Org.BouncyCastle.Asn1.Cmp.RevAnnContent::get_BadSinceDate()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.Cmp.RevAnnContent::get_CrlDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.RevAnnContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevDetails Org.BouncyCastle.Asn1.Cmp.RevDetails::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevDetails Org.BouncyCastle.Asn1.Cmp.RevDetails::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevDetails Org.BouncyCastle.Asn1.Cmp.RevDetails::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevDetails::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevDetails::.ctor(Org.BouncyCastle.Asn1.Crmf.CertTemplate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevDetails::.ctor(Org.BouncyCastle.Asn1.Crmf.CertTemplate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevDetails::.ctor(Org.BouncyCastle.Asn1.Crmf.CertTemplate,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevDetails::.ctor(Org.BouncyCastle.Asn1.Crmf.CertTemplate,Org.BouncyCastle.Asn1.X509.X509Extensions)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplate Org.BouncyCastle.Asn1.Cmp.RevDetails::get_CertDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Asn1.Cmp.RevDetails::get_CrlEntryDetails()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.RevDetails::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevRepContent Org.BouncyCastle.Asn1.Cmp.RevRepContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevRepContent Org.BouncyCastle.Asn1.Cmp.RevRepContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevRepContent Org.BouncyCastle.Asn1.Cmp.RevRepContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevRepContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo[] Org.BouncyCastle.Asn1.Cmp.RevRepContent::GetStatus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertId[] Org.BouncyCastle.Asn1.Cmp.RevRepContent::GetRevCerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificateList[] Org.BouncyCastle.Asn1.Cmp.RevRepContent::GetCrls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.RevRepContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevRepContentBuilder Org.BouncyCastle.Asn1.Cmp.RevRepContentBuilder::Add(Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevRepContentBuilder Org.BouncyCastle.Asn1.Cmp.RevRepContentBuilder::Add(Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo,Org.BouncyCastle.Asn1.Crmf.CertId)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevRepContentBuilder Org.BouncyCastle.Asn1.Cmp.RevRepContentBuilder::AddCrl(Org.BouncyCastle.Asn1.X509.CertificateList)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevRepContent Org.BouncyCastle.Asn1.Cmp.RevRepContentBuilder::Build()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevRepContentBuilder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevRepContentBuilder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevReqContent Org.BouncyCastle.Asn1.Cmp.RevReqContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevReqContent Org.BouncyCastle.Asn1.Cmp.RevReqContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevReqContent Org.BouncyCastle.Asn1.Cmp.RevReqContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevReqContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevReqContent::.ctor(Org.BouncyCastle.Asn1.Cmp.RevDetails)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevReqContent::.ctor(Org.BouncyCastle.Asn1.Cmp.RevDetails)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevReqContent::.ctor(Org.BouncyCastle.Asn1.Cmp.RevDetails[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RevReqContent::.ctor(Org.BouncyCastle.Asn1.Cmp.RevDetails[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevDetails[] Org.BouncyCastle.Asn1.Cmp.RevReqContent::ToRevDetailsArray()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.RevReqContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent::.ctor(Org.BouncyCastle.Asn1.Cmp.CmpCertificate,Org.BouncyCastle.Asn1.Cmp.CmpCertificate,Org.BouncyCastle.Asn1.Cmp.CmpCertificate)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent::.ctor(Org.BouncyCastle.Asn1.Cmp.CmpCertificate,Org.BouncyCastle.Asn1.Cmp.CmpCertificate,Org.BouncyCastle.Asn1.Cmp.CmpCertificate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent::get_NewWithNew()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent::get_NewWithOld()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent::get_OldWithNew()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BC.LinkedCertificate Org.BouncyCastle.Asn1.BC.LinkedCertificate::GetInstance(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BC.LinkedCertificate Org.BouncyCastle.Asn1.BC.LinkedCertificate::GetInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BC.LinkedCertificate Org.BouncyCastle.Asn1.BC.LinkedCertificate::GetTagged(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BC.LinkedCertificate::.ctor(Org.BouncyCastle.Asn1.X509.DigestInfo,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BC.LinkedCertificate::.ctor(Org.BouncyCastle.Asn1.X509.DigestInfo,Org.BouncyCastle.Asn1.X509.GeneralName)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BC.LinkedCertificate::.ctor(Org.BouncyCastle.Asn1.X509.DigestInfo,Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BC.LinkedCertificate::.ctor(Org.BouncyCastle.Asn1.X509.DigestInfo,Org.BouncyCastle.Asn1.X509.GeneralName,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.GeneralNames)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BC.LinkedCertificate::.ctor(Org.BouncyCastle.Asn1.Asn1Sequence)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DigestInfo Org.BouncyCastle.Asn1.BC.LinkedCertificate::get_Digest()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.BC.LinkedCertificate::get_CertLocation()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name Org.BouncyCastle.Asn1.BC.LinkedCertificate::get_CertIssuer()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames Org.BouncyCastle.Asn1.BC.LinkedCertificate::get_CACerts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.BC.LinkedCertificate::ToAsn1Object()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves/Frp256v1Holder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves/Frp256v1Holder::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves::GetByName(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves::GetByNameLazy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves::GetByOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves::GetByOidLazy(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves::GetName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves::GetOid(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves::get_Names()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Anssi.AnssiObjectIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Anssi.AnssiObjectIdentifiers::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Zlib.ZInputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Zlib.ZInputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Zlib.ZInputStreamLeaveOpen::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Zlib.ZInputStreamLeaveOpen::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Zlib.ZOutputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Zlib.ZOutputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Zlib.ZOutputStreamLeaveOpen::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Zlib.ZOutputStreamLeaveOpen::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.IO.FilterStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.IO.FilterStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.IO.Streams/d__8::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.IO.Streams/d__8::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.IO.Streams/d__20::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.IO.Streams/d__20::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.IO.TeeInputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.IO.TeeInputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.IO.TeeOutputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.IO.TeeOutputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStreamLeaveOpen::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStreamLeaveOpen::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStreamLeaveOpen::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStreamLeaveOpen::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore/ErasableByteStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore/ErasableByteStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.CipherStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.CipherStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.DigestStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.DigestStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.MacStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.MacStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.SignerStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.IO.SignerStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator/CmsAuthenticatedDataOutputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator/CmsAuthenticatedDataOutputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator/CmsCompressedOutputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator/CmsCompressedOutputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator/CmsEnvelopedDataOutputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator/CmsEnvelopedDataOutputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsPbeKey::Finalize()] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsPbeKey::Finalize()] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/CmsSignedDataOutputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/CmsSignedDataOutputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredInputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredInputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgInputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgInputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.WrappedGeneratorStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.WrappedGeneratorStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1InputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OutputStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OutputStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetStringGenerator/BufferedBerOctetStream::Dispose(System.Boolean)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerOctetStringGenerator/BufferedBerOctetStream::Dispose(System.Boolean)] Some other Method in the Method group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find Method References in Modules... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find Field References in Instructions... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Skip Methods... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::FbD7WTlA(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::XeTu0emp(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::vkqAq86i(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::wOWVu0dI(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::Oa4Lie8m(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::QthNq464(System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::VfqaSbWp(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::BiZjSXHQ(System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::D48q02ZG(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::QJMgrTDA(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::5Hasrehb(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::BNRR25Mv(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::SeK9H3nn(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::YGIGRtQF(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::ltTWWhKQ(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::cfxfCXXV(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::9U6B5RMK(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::VTGV_Y1W(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::FYP0FT_X(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::_BLtgK7A(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::Qpkyka6Q(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::Nz0nExgr(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::zMmijXfx(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::a8iJuGlI(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::irvlqSSH(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::8dEhQcOb(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::ZjS8a3Pl(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::KYB5IA1D(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::beyMPxFT(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::8vk3_8GL(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::V2ZCnezJ(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::roUuJbwZ(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::3uaj5Kfx(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::O1aknKTn(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::LdqUyloh(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::HilP612a(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::P6iUTiN3(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::YIWiwe7K(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::1IH3zDJA(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::qH5av_1q(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::LsSEN2s6(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::_CEafsee(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::0yjIeDnT(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::wUpPf3GM(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::1s1WPq31(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::Htbow26E(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::cmXKj1po(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::8ChPWOd4(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::04iUdUp6(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::hBGZoZoS(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::HEfY93_h(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::X1h9XgTT(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::CCohSSZi(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::MnvLKYGv(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::fZ0s2CmH(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::7_SLryNk(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::_Ivh684x(System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::9qHBC0OZ(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::PuLO4a2T(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::Jl83Chqd(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::9PbcYNp2(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::6i_iWgA4(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::TRnAd7lr(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::3VoX96LW(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::eGJxYhbJ(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::AEL35ZzY(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::D_SO46NF(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::Jp8uP5ms(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::Mb0z0sEl(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::4SJ61D28(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::4coJPKrB(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::fcXYIzWO(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::lXgyovbE(System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::JX_AnOBm(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::a_All6pX(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::H27feYRN(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::9EwpQjhV(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::KFISYv3n(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::Qycw652K(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::XAy2vb2p(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::y3NQIlXv(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::I4a0uTek(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::IiwMIsQq(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::RwPgSjg3(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::WGsu2xcq(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::_OwiXuxF(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::eSgzSnZB(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::GGb5VhlE(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::NsCd9MRW(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::IA1iELNz(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::YuSykRUF(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::hsjNiw4T(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::OioVi2Ol(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::6NJHlfMi(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::e7OGQnfK(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::sYTZVGyD(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::6YCnq3LO(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::iubTDYk0(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::VE9U6MgC(System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::82k_Bp9v(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::LFrs6bhV(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::LYIJTNbN(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::Fu7VMapy(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::DvzcH2IK(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::9zP2Q3hT(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::GNNPor8U(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::oVyo6nFc(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::P7uOWHKk(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::yfnKndL7(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::GeYyTD7W(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::kcqTIHWM(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::GkdDnXhZ(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::aUVkgaPC(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::XEtlyhac(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::NXKlOpaM(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::K7wn54ZI(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::nKxySEQG(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::fEmtbuWu(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::QMjFwSdf(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::a74mdFHz(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::d_0WzSC5(System.Exception)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::E6BHaAdv(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::8UWoA9oG(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::iuigT8P9(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::zOIVixfd(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean Loom/ebQxZhqF::ySi9Zi5N(Loom/16u4fQjx)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean Loom/ebQxZhqF::B0Cm4JK2(Loom/16u4fQjx)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean Loom/ebQxZhqF::oq5bhFn8(Loom/16u4fQjx)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean Loom/ebQxZhqF::ysvD9Sz3(Loom/16u4fQjx)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom/ebQxZhqF::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean Loom/ebQxZhqF::Z58pAzPj(Loom/16u4fQjx)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom/ebQxZhqF::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom/ebQxZhqF::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean Loom/ebQxZhqF::ii2mQmvz(Loom/16u4fQjx)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::zVVP_oAW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::xQBBNLVk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::ab4DMr28(System.Action`1,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::W_nbQCS0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::Update()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::ltj2aZ1w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::jyhqFSe1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::eabntYOv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::dZqkNngg(System.Action`1,System.Object,System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::C26l2tFw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::nXTZ_vBU(System.Action`1,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::Ghy97Pj4(System.Action`1,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::Start()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::swsZsXz6(System.Action`1,System.Object,System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::FG_bkg1P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::T2Mu0d7i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::nxV0oyiE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::HSteOCnL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::4pKlbtVy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::dvjV0JQ8(System.Action`1,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Thread Loom::Hp7p_HUb(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::AbBhNHhr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::6vLrcwId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::2IpFzpLA(System.Action`1,System.Object,System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::wWHCictc(System.Action`1,System.Object,System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::1nzb3GcO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::WoGg1yYF(System.Action`1,System.Object,System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::i4q6c7Jo(System.Action`1,System.Object,System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::0dANmrHm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::9INkZoeP(System.Action`1,System.Object,System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::uFlVJB9L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::YjkDgag8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::m60ceO0K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::SQjf6IVK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::zkwwjeE_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::MIj7vRQq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::OnDisable()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Thread Loom::MpCtvHMo(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::um7Xsu4m()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::bLOzBGpM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::HRdkrggO(System.Action`1,System.Object,System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::cTPcgofY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::Tizv2x17(System.Action`1,System.Object,System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::Cr3YplY5(System.Action`1,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Thread Loom::fqC1VxEG(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Thread Loom::iVcxkgAu(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::lp2cKazo(System.Action`1,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Thread Loom::yXSPTqYn(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] Loom Loom::iBn3S1jD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::kMsMdsno(System.Action`1,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::vt7PO9a3(System.Action`1,System.Object,System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void pXJcQ90q::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void pXJcQ90q::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer/TimerManager/<>c::jWHL3xV0(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer/TimerManager/<>c::O6aLnBpk(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer/TimerManager/<>c::b__7_0(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer/TimerManager/<>c::mmQPIR49(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer/TimerManager/<>c::2QccnooA(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer/TimerManager/<>c::EfOgwueP(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer/TimerManager/<>c::rlhrRY0D(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer/TimerManager/<>c::jAtCbV8A(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer/TimerManager/<>c::66N7heSE(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::CancelAllTimers()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::6Wkp98CZ(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::0mXw_OVi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::rITJFjrq(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::1WTcP7uu(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::RegisterTimer(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::9KqLm_1l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::aWrgkvHx(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::4DjS4wB9(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::MEv87Bna()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::mTJyDYjM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::qaT7V4vp(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::CKLJLCKa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::Update()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::X_bEMG2U()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::q9w19kqL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::IzbIK3Aj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::2RMIowZN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::U4BrHMww(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::5stGZcCz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::Q1yAgcBD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::hrHSROls(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::CaOieeV7(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::yXg6I8MB(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::ciUQuxp3(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::0LVM03Gl(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::Gqi8dWkX(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::1flTOxZM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::c1hP3l1J(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::pRDkGLap(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::kXHcg2ig()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::UHSXMODu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::99ozEdcF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::uhJ_8UOT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::C7D3fje9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::HFeGSxWp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::Bxh6X0rG(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::1rbl8vVd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::iqRkqjsd(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::ogANRC9i(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::0GVBg2vX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::PauseAllTimers()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::ResumeAllTimers()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::PauseAllRegisteredTimers()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::als18HMh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::963ISsiE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::__BRLChW(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::Y94qwerJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::CjrISe3U()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::l1fhoK1K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::WIr_xIMu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::LvdiKETZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::5XTfDsfG(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::W9z05dAx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::GQmgEzfl(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::RQbQq8gM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::ppJjIzKb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::get_isCompleted()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::REGQTjbB(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.Timer::v3LEiv1o(System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean,UnityEngine.MonoBehaviour)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.Timer::6D1Zk5cX(System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean,UnityEngine.MonoBehaviour)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::XxrKoyPd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::kV5twzBP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::LrGBXw9a()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::XBhTofmf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::i9kM2Hsj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::TswscGnI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::AylkFOOs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::YmQ_YD4R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::KhyypBgK(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::r4AHSMfa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::GetRatioRemaining()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::o38DjHRy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::GetRatioComplete()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::l2ZY2EQR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::4W9_jKER()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::UhGP8IUr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::GR0CepUA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::9nJZlozl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::9WNPOpIg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::NFPUXVtN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::P2673uqe(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::sGx_f9s1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::VdBgdJHH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::get_isLooped()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::IlnzSX8N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::ZgOxMiHk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::2KemhUrR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::zpbqh_GR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::do8dnQLR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::G1n4lBcQ(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::V4EMPt4N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::p1n74vdQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::56jVy24y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::PT3n3qsN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::9r6Y5vPg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::0molAh_o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::8wtQETWr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::BWH1pUYb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::B1xidWx_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::EfT6Dgv7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::Cancel()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::d2l9GyBE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::get_isDone()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::6uTQJM_I()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::x9iHxqXJ(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::lW4D6l9C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::Resume(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::p8Yt1P4E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::uLs9eit8(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::zdAX8C38()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::ehVdPclI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::i6YAszA4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::UwGY5d6w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::CFa0DARV(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::ZTy9SCHE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::ZaxTz0Pa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::8AOa7a78()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::I1qCSH93(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::TDWbXLXI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::YxBCpuUZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::s7iedOWH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::iWV9LQKX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::ZSI0MUat()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::LcKHVnqH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::0egVYZEh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::Pause()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::vXwnv3Ow()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::zXnSiuDs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::n_OJrdC6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::PE6BNTbn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::U5BP9S7X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::oZsMGgJl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::Resume()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::d6Zh_XuA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::w9UCR83x()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::OzvX9NZq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::hnP3FzBQ(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::VzaXfsxx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::wWLo1p7v()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::BsKvKV9h(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::PTts5ygv(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::Mypja5pC(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::A3w5dLmn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::M825eZ5o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::wH8t95ND()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::WDm_D86g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::iMivDuMP(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::h9HXAROB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::p3bqEwkN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::vq4G_1vs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::GetTimeElapsed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::rmGDqJyW(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::GetTimeRemaining()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::NUQC6cLY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::XxzqJeAi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.Timer::oua4bEvo(System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean,UnityEngine.MonoBehaviour)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::get_duration()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::f8KtijIG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::f4Acbv8M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::W0hq1_1x()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::lzqdMeRC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::a42k4pah()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::_ZHCXIBk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::H0cGDf7D(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::WX9cV3zW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::oMYIxhkU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::qFbGYvkz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::mmAXfiTa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::692nCIPb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::v5LGxsrU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::r1X5ei7H()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::CG4x_L2x()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::o2HcWvR_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::iGvKuaTl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::lqmpTlNX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::aMMFp97J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::mDi0nlH3(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::b5BIesks(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::Dgqs4YxU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::6lBpn9VE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::UZ7GECQp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::Bxisnr4g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::SmfxOMoW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::OOEvsVXP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::wAW6vEhy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::7ngr8RPk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::STroHW27()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::PCtkUEMf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::i1MtLZKO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::FffXWCf9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::get_usesRealTime()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::tJpSXUEr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::OsJcKyVc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::hB4Pgrtt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::zjzQMQx9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.Timer::66wf_d0E(System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean,UnityEngine.MonoBehaviour)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::aOZDG7k5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::9XlVpGKh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.Timer::dmjAac7O(System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean,UnityEngine.MonoBehaviour)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.Timer::5bCeMou2(System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean,UnityEngine.MonoBehaviour)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::TkoVp7GW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::goHpuZVW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::CancelAllRegisteredTimers()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::CJxwGhlq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::get_isPaused()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::vc4mAY_3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::1W55DWw6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::ResumeAllRegisteredTimers()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::qFkujKfc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::h4W_D1RU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::kQ6WnsZ8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::G1HGQhhW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::cNJc2I3z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::7VovI6NJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.Timer::UtNjfQld(System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean,UnityEngine.MonoBehaviour)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::YIwFyACY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::9uUWxFRG(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::XXXsXjPF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::d4Y2UuzJ(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::Mh4RW0GK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::nXq6DfeZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::DMgZBYCz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::DjpwSykr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::PjXUz76S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::50XUZc8H()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::Nh24HkCN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::mfeDiLd_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::9rNGXY3k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::hacViMnq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::Lrseeu5e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::5J9yZP_e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::eSh5vFih()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::jSuOl1ah()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::rS2gCINF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::k0XJCWrs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::Xi3lbmUe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::syuxTD6d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::InKs8LH3(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::RA0gCbKK(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::qbcLXcZm(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::jlTLTWYS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::XHK5pCfz(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::CEsZgsI7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::ZMlLabAJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::WYRzLa7u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::UD0CNGBW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.Timer::Register(System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean,UnityEngine.MonoBehaviour)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::GngLAZvK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::RTuJ2Px3(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::GG1L50rZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::UbXH8mGl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::kDj6gshX(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::ULXpTMax()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::LUJcLUFn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::ZdVCMtcX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::uA4HDBkC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::2oRPkJwx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::set_isLooped(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::get_isCancelled()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::wFVktAHZ(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::UuT3Fjbi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::wuc2XbAr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::FsCmjnVC(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::LXnc8ZKr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::N1FtNH8t(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::Cancel(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.Timer::vWWiVbTx(System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean,UnityEngine.MonoBehaviour)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::Pause(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::iVJf97uR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::lgj1Sayf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::clcvPJ8S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.Timer::HmFEnrLt(System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean,UnityEngine.MonoBehaviour)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::.ctor(System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean,UnityEngine.MonoBehaviour)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::5KCComUZ(UnityTimer.Timer)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::uSxL5QVp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.TimerExtensions::TmJYojwY(UnityEngine.MonoBehaviour,System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.TimerExtensions::Hc1oX9Dd(UnityEngine.MonoBehaviour,System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.TimerExtensions::AttachTimer(UnityEngine.MonoBehaviour,System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.TimerExtensions::EYnv2ri8(UnityEngine.MonoBehaviour,System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.TimerExtensions::sUr92laP(UnityEngine.MonoBehaviour,System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer UnityTimer.TimerExtensions::mEmbJAPj(UnityEngine.MonoBehaviour,System.Single,System.Action,System.Action`1,System.Boolean,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.E6E02u_K/njyPR3dq::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K/njyPR3dq::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K/njyPR3dq::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.E6E02u_K::ZKrpUxXg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::1P2L0Ox8(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::et7ITeWt(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::9OE5XgXi(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::WoJnBvFn(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::LVbzJvke(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::0dAQB0HR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::zSOTU71w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::d0O4zVwA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.E6E02u_K::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::K3v8QZ1b(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::wQqkD2yl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::IkNbYp_K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::ELf0KkE2(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::eUBHzRis()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::zLWm5U0C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::vaqq_cT2(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::9PuU1jcE(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::X2bzFsZ5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::aY4MZpiF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::LmFCBJTk(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::XHCDaXbi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::I1lHaMcb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::OUSFpJ1a()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::7GgepL_f(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::ZGaFjW6b(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::lxdq0UhZ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::59RsSLwv(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::v3IKNA6f(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::R3n25zR6(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::zbQKWfHI(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.E6E02u_K::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.E6E02u_K::CW1_tAdk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::nKoNaA6i(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.E6E02u_K::gURvRXMd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::ST00k7op(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::W6FpcmNj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::6gM7RutG(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::ShRrX1BQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::Lyfx6WKW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::NFPPVmrH(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.E6E02u_K::iKligaV_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::q857_mUr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::658B4C7Q(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::8dlzVZEt(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.E6E02u_K::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::ixE5IPG6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.E6E02u_K::ch62XdcV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::UcQWRyoD(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.E6E02u_K::qz3qSQLR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::_Z6Ztkzb(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.E6E02u_K::DO4IgxvN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::C1Idhdvx(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::SNj2lL3w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::yh38IuE2(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.E6E02u_K::ABFowo6B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::UdW2zOSt(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::e0X3BmUp(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.E6E02u_K::ANateSFU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::YvEjJIbh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::yUa4q8DR(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.E6E02u_K::geHGXXel()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::ddm4DGjF(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::SacDmn93()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.E6E02u_K::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::gMhiGYRQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::LpAoEwFF(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.E6E02u_K::ZgPTzzwL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s/6Q18rR3q::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s/6Q18rR3q::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s/6Q18rR3q::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::c7VQw_oL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::aEoZmeoM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::hOs9gc5K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::dRY0jZpe(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::H9sS_5PR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::XhtjrFfl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::qHCtwggv(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::lgkOOCad()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::HK6wUQW6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::2VcnU0kz(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::sEJaRaWl(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::aOXKHjZV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::RYaikcBl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::tBz0kWR8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::L7LjJvw5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::GqOFXJKJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::yjSe_ioC(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::i9p4qe_L(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::NZWuU4WS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::iXIPjR_g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::frTVVytT(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::aAp4p75e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::peAN16oS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::ehhJMAjE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::mtJUHeMx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::0x9xFfhZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::XIz5u56x()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::xm6maQzW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::n4Im4w2B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::ZjAhDd48()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::JwtiFKqm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::6vcB3UYh(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::YJFSXqym()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::gwBiC4gB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::pAgyTIBr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::yOAnt6bE(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::9PJLgJwQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::iID1G6CA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::4mntXzey(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::J4frItsL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::OWP3QUJa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::rBE5xxeK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::372Ddxxq(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::n1LCY4zy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::2TatxOfC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::kUDTzoul()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::4yKKewNM(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::9v372QLU(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::Fnjqizcp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::O_Qk0oTD(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::uiBAMdDP(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::sM5Ac55e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::TvVHn4zM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::8_Er9WTP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::cIQYsYlW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::SK6YK9Pa(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::fnV4J18F()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::fX9D7Fie()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::kRk1D5CA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::m8hPLbcP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::tECmNwR2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::Iv5ZsFuk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::fQwoIByV(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::SgK9SZ89()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::nUhDXYju()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::JFS2SpRg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::8uxU36Ze()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::BjZgiLHz(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::E85AVVIs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::CWkKjwFr(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::QuadeEub(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::LoYU8DaJ(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::MSxwAyJn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::oVA7OcMR(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::O_cI_EFh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::xWvDVUDB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::KhFGzZmf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::tPAhkhoh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::N9qlbGRa(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::DVlOhLk3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::dz_UEfp2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::gy8a5bW6(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::1zaCTIQf(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::hAlSMqsP(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::dHiVRi88(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::mLfUDq9P(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::sSo8D1tZ(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::LoPIcIoB(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::TNXqiHN_(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::V9nuPp0K(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::gvqcJKLA(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::COFWd79B(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::0IezegJf(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::VlmbVnkA(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::gMIqtD6H(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::g7_4HXn0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::pa0SacR3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::1MN6FcPq(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::GIaBbMDg(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::CWbxD_dl(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::woUlbwSI(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::Jg8wmunX(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::znZ3xYD5(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::znTL7anB(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::FUVv_eAr(GoogleMobileAds.Api.InitializationStatus)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::BF_HxlSR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::saNNTvF7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::iRvebfZr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::fwhh6MaP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::uH9bDB7C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::bajPGH57()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::sMTiBQw3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::AbEMkPSI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::5CeWcwUV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::vUJye3Fd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::aoWOe3NF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::FMr9w0r5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim::Lm3Z0Wh4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim::p0SvuMb0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim::FqzYZnMG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim::gIjfsm4D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim::asyrNllu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim::fOsN_YUX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim::qvhWfGGS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim::QmlaBXcm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim::F6WE_jbD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::5SabiWGK(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::X6gQ7dgD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::sQPa62KK(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::byRNTiEq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::SaeObxVd(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::m9PHH0OX(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::hk8DX9s2(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::knu_Xys1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::bYPY9ZDu(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::Mk6QPTqf(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::5ZDGVBLr(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::dqtG7__4(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::vICFX2yg(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::eiDcef02(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::2ZFwzjDW(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::G4AgSk74(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::WT_o6a7f(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::GwJD9D8B(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::Vt1RgQ9K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::B32XsZoE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::49gngNt8(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::VBOiR0wb(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::mLBpaDor(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::nVbBAgir(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::EifJyxDm(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::tq4R_EfZ(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::PdZQHQUZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::rbnYYJo_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::Htg_f6MV(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::9TrVKvP_(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::dQTbhyRX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::QJssLEjS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::uKRFC1F5(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::DwWs7NCh(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::uAF6i1ZW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::Pe_XnYXy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::DsE0PFCM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::AyMTzuUS(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::xMYOBWOl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::GV4nJ05Q(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::R11z2g2f(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::TginZXil(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::uf_PpFGo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::sp25tCMb(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::DEzkD5Y_(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::pyQcHp2Q(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::6k6Fn8WH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::yt2tENbU(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::cO_e5ro8(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::3b7s4Qld()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::guDAn8P_(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::9FHuWnuj(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::JlioUFW2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::8MOMIKw4(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::uMUVzIu4(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::WdjwCx2F(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::z0gw_svD(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::sUdpscf8(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::vLBEVg53(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::68_3sNpA(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::YvgeMVwc(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::m0S0JF0q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::VPmqVt51(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::OcIu8u2D(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::sLYfmghy(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::d1EKnzJh(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::zgP3pWw6(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::s4H2l9X9(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::nrt2ULHX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::ocZGWZZs(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::Wn18M0wf(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::KiVLFpMw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::BRQNacoP(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::j_7Rx6NR(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::96UlFZCC(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::_3I6bhku(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::UtFuFv6i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::wlFXuJUK(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::yF67RipZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::vBszMmFL(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::NXR4TGeK(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::X_Zpah1F()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::Aw07TvQw(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::tbX8hHqG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::8DKYIDqk(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::GrirX0ln()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::bxSwDKce(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::nb8fP_1o(System.Action`3)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::xYJUZu1X(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::9Ny40MR_(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::tDI5zgn6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::rSKe3NQ2(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq::uEhwMCKA(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.upOI0mf9/qz2l1RNN::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9/qz2l1RNN::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9/qz2l1RNN::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::4kc31X2u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::ZAT3gooq(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::rfDbZe9l(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::tJmSvKEd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::ufkoJeuW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::99nNd0rP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::mQ51KbWj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::WmPzN_gE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::iOnt1k0b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::gQw4rCcs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.upOI0mf9::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::BnpkBx0b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::HRxRAhIg(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::k_GuRnxG(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::SJGueqFG(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::TeQHTT_h(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::QPXJKFTg(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.upOI0mf9::nPg02Jgh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::mfklyYJR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::gbSemisP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::Bv0uSz9C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::u4xK1f9z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::Z0uQnXZm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.upOI0mf9::qAkfBlbT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::sYqs5lxq(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::EfVcp0lK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::zmIGh2hi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::_5SRVzhn(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::jhl73Hvv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.upOI0mf9::qCPkYdE5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::xIHEck54(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::Cm_sc1pv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::Gfymo87S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.upOI0mf9::IN5eJBbt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::ili9AfCg(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::D1aubpy2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::Qpyo7Dkc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::2gSyf8pF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::mFtFtznK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::M4ECOiz2(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::GieCf4eO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::O_3dA0NL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::5YWBORaS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::y1CYby1Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::1mV254UI(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::rIcAf0BQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::xE6t3CdL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::7RHEgLJC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::HqIm9ezL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::ZzSUqjPy(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::44OPMTrI(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::6_GpDVNJ(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::1l55GiA_(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::IVzvIOye()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::TyzzGEzJ(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::GXR9d73J(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::5MIYjWKs(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::8on7zd2c(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::b035GpvP(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::iHL3RgcG(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.upOI0mf9::SaSzUMcW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::BC3fAa7D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::pdasUTm0(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::xDfPOnMj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::F9z7OTAh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.upOI0mf9::6CusOJKo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::BFWbPO_h(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::FBxnZ78C(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::9ICbkadX(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::5agz7Qtc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::mNRHVo4k(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::4ONcQ4SB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::fdMhEthl(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::sqHowiJE(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::gvLykUzm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::hW0YRSKQ(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::xCyjUVn7(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::QstWZKmf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::8zqj5rAf(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.upOI0mf9::RHOGilU0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::V1vOgvX5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::duIya6Zw(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::1996s7pO(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::UtAzdGTg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::7n34tz1e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.upOI0mf9::XIuTeBgN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::cP9EN4yt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::lkOlfqpj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::jRk6ie4x(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::q5kMSC7P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::SMGP2Rk1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::RNI47c9U()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::0EqlsFDf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::NE5dRe9F(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::yacp3wS9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.upOI0mf9::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::0S74OUcT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::HzznXonD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.upOI0mf9::QySJOBxy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::L2nPKbQ8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::F8GO4tRz(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::UZjgJAx2(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::IsnMTCxe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::sJ0sQ7L8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.upOI0mf9::F56hIx9S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.upOI0mf9::QvgCcw3H()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.upOI0mf9::tpbadWgB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::RsUNGElM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::6h6Hkzqb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::onAppOpenAttribution(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::HL2AZaaX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::Start()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::R2lzIvEC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::DYNK9Sph(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::AbIFG5M1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::onConversionDataFail(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::c8WaES9S(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::OnApplicationQuit()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::IRYgdG9c(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::TbOIyX4p(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::7YDPaYeQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::OnApplicationPause(System.Boolean)] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::8qxIPRGP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::PsdSYQni(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::qeXtF2Tk(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::Update()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::fZJgl9wG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::onConversionDataSuccess(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::onAppOpenAttributionFailure(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::Q1yvGP3d(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::th21yNjw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::QsAFLBlC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AppsFlyerAdapter::EuJfb01Z(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HvtfMocC::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HvtfMocC::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HvtfMocC::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DRzio_A9::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DRzio_A9::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::dn624neF(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::Dzg0MHWG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::_nFx2G6X(ZrZYFo6bYXYM71YyLSDK.HvtfMocC)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::STH53KVV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::rDJKkNj7(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::2_FXUuB7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::oA6lLy2C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::CUtlkL2_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::s5RxXtVZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::WrFbHHlQ(ZrZYFo6bYXYM71YyLSDK.HvtfMocC)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::rBCId3uN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::5qQBa_vD(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::4XU2mG02()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::t3A5iEJS(ZrZYFo6bYXYM71YyLSDK.HvtfMocC)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::mpPjwpQY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::GfZuxgtE(ZrZYFo6bYXYM71YyLSDK.HvtfMocC)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::yPvaP4n9(ZrZYFo6bYXYM71YyLSDK.HvtfMocC)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::FAnIQPGo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::gOgj2Qye()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::bb1hd3Kk(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::NAzmbrlc(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.cI7eLIlN::wmHyLGQ0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCGameObject::OnApplicationPause(System.Boolean)] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCGameObject::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCGameObject::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCGameObject::Start()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCGameObject::Update()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.CCTxData/xPUhs29b::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData/xPUhs29b::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData/xPUhs29b::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::ISvgZu1E()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::ISvgZu1E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::MrveVS49()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::gJU54g0O(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::5NOeKuSf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::2aj3649g()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::2aj3649g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::U72WUZLq(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::HGRo30xV()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::HGRo30xV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::NCxTf9GM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::DyvjN2oY()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::DyvjN2oY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::TM6wRtK4()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::TM6wRtK4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::mmZmbyfj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::4_v0nqi1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::Init()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::Init()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::yhptvlP6()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::yhptvlP6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::0fhQXk8h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::FwhcBVJx()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::FwhcBVJx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::Fo8O2ii2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::PEz73FsN(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::aalhTUM_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::Y3pIQjiU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::5FwKqw4i(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::aCAUaQXB(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::lncbauvr()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::lncbauvr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::eoDHw2XN(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::YFlc81LU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::DzxF8pQj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::IEjjfVhw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::XGvsm1vI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::UU3b6lyF()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::UU3b6lyF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::rShrBCqj(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::ktF7mzhP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::_bt6h5F0()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::_bt6h5F0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::JADT8qDi()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::JADT8qDi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::6WSgJnt8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::nhIw2H4o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::R0mroShZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::bofanwa7(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::w5g9mS3D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::O4kEHIEL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::r2jd13og()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::zJjt3XE8()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::zJjt3XE8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::5qJKIhwP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::UAmuPDOr(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::s0OZeRuu()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::s0OZeRuu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::A0BU1z6_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::2PoOuj_X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::OB2dHq6Z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::MBbYUsQW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::BMKWz44w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::ZZcazTvb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::nF49bFa0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::FdkHvcck()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::cbYYYSWe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::N0Pdt9U2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::FDpPTf8T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::guSsMNmr()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::guSsMNmr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::tCVViqac()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::huo0MaS7(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::_FThhyuv(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::Z70vtt6i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::UJ9NngmP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::UIV9X_tg(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::RqjHMIrn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::3CWeytjD()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::3CWeytjD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::xDLTlbPZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::Fz9S_r7k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::QqhLZ19N(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CCTxData::uEauJTcS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.AupDl5z7::SbBIGDNU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AupDl5z7::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AupDl5z7::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.AupDl5z7::DquntP1w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.AupDl5z7::7yk9gv8h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.AupDl5z7::DMEBIWqn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.AupDl5z7::4HcGFQce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.AupDl5z7::lEIkJJdo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.AupDl5z7::C3et1Ibu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.AupDl5z7::k6CnPtlh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.AupDl5z7::hN8SKLx9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.TiUoaJfx::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.TiUoaJfx::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/fI6piYVV::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/fI6piYVV::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/fI6piYVV::AayDrnzH(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/VV6wDWpl::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/VV6wDWpl::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/VV6wDWpl::g1E_25Li(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/GUGsZ77k::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/GUGsZ77k::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/GUGsZ77k::xIP1y7hf(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/O7UoSjG0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/O7UoSjG0::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/O7UoSjG0::5kpYYF48(DGGLBI1h)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/Qm8aQ9BR::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/Qm8aQ9BR::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1<4fsxCIxp> ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/Qm8aQ9BR::cdNlDPlb(System.Collections.Generic.List`1<4fsxCIxp>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/RlUnbSg2::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/RlUnbSg2::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/RlUnbSg2::qmcGiBNq(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/vL_jNMIC::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/vL_jNMIC::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1<8WpUf774> ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/vL_jNMIC::zLrb8luq(System.Collections.Generic.List`1<8WpUf774>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/J5H75OrP::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/J5H75OrP::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/J5H75OrP::bEb7mmV3(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/J5H75OrP::0nbF1J3K(G9xeEQUc)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/gNy04JGT::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/gNy04JGT::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/gNy04JGT::Cy33Clum(zT9ZJ7FK)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/034fwuHi::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/034fwuHi::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/034fwuHi::9MUiQr0Q(dF3S44z8)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/dtDvXnWO::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/dtDvXnWO::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/dtDvXnWO::5c9riej1(mHsRR1Ei)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/ad7V7I3p::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/ad7V7I3p::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/ad7V7I3p::I5gO5XsW(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/37gMQk2Z::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/37gMQk2Z::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/37gMQk2Z::dOEKC9Cq(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/sSoj3FIT::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/sSoj3FIT::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/sSoj3FIT::VBXYURL_(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/KGU21Dg_::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/KGU21Dg_::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/KGU21Dg_::uOVNpPm1(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/b7Bk9fif::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/b7Bk9fif::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/b7Bk9fif::9JEyLiRj(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/4DFBKF7j::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/4DFBKF7j::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/4DFBKF7j::lkrMV_Lg(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/DSr_oTPd::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/DSr_oTPd::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/DSr_oTPd::XzCpfoii(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::8mUDDYXZ(System.String,System.Converter`2<0ZUThFnX,wDT2k7Qz>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::F8_4UrJU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::1NH6F1Hf(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::tnOlPDO1(System.String,System.Comparison`1<0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::nNNf_iMJ(System.String,0ZUThFnX)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::hXB6PZ_R(System.String,System.Func`2<0ZUThFnX,System.Boolean>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2> ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::wAEXHmB9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::set_Item(System.String,System.Int32,0ZUThFnX)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::RIHAWVKb(System.String,System.Predicate`1<0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::WxuYufhP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::xhV_E1Re(System.String,System.Func`2<0ZUThFnX,0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::7H7eKhtY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::ubwKIjIR(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::LX_sZfNf(System.String,System.Collections.Generic.IEnumerable`1<0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::omiFrTH1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::IObfcors(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::VUX_a5yz(System.String,System.Collections.Generic.IEnumerable`1<0ZUThFnX>,System.Func`3<0ZUThFnX,0ZUThFnX,System.Boolean>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::qiWssel1(System.String,System.Collections.Generic.IEnumerable`1<0ZUThFnX>,System.Collections.Generic.IEqualityComparer`1<0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::tPHnMYZa(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1<0ZUThFnX> ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::_K9fg4RP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1<0ZUThFnX> ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::evRlFzDZ(System.String,System.Predicate`1<0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::x7sH2_V7(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::OrLeNyqA(System.String,0ZUThFnX)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] 0ZUThFnX ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::get_Item(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] 0ZUThFnX ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::AwpWmZa0(System.String,System.Predicate`1<0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::L8JBZfai(System.String,System.Predicate`1<0ZUThFnX>,System.Func`2<0ZUThFnX,0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::tcT0TI95(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::yFhvXT6w(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::vkjrCEtz(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1<0ZUThFnX> ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::f7koZv6k(System.Predicate`1<0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::5dxUTM2j(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::t3A_rgMw(System.String,System.Predicate`1<0ZUThFnX>,0ZUThFnX)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] 0ZUThFnX ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::wHI0BMqk(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::vPpT5g2s(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::Gkuli_Av(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::WpZlKSAu(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1<0ZUThFnX> ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::PAkimfke(System.String,System.Int32,System.Int32,System.Predicate`1<0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::FwHaaqJm(System.String,System.Action`1<0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::8iAaTeoZ(System.String,System.Predicate`1<0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::gB0XGEyZ(System.String,0ZUThFnX)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::OvSv44x9(System.String,System.Func`2<0ZUThFnX,VhHyJH5d>,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::yK35gu6I(System.String,System.Predicate`1<0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::MeyBCGbZ(System.String,System.Int32,0ZUThFnX)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::.ctor(System.String,System.Nullable`1,System.Nullable`1,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::.ctor(System.String,System.Nullable`1,System.Nullable`1,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::EzwO4GQM(System.String,System.Predicate`1<0ZUThFnX>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/poBRGwZN::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/poBRGwZN::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/POgSuorQ::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/POgSuorQ::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o::vD6JR9Fl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o::cfs_2ral()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o::IkSw094b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o::FkK7hnEZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o::vDwpCBVt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::cxcvzfe2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::vwipMuJ2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::xlyFI2o2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::yrdYM7yM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::ArOJc37L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::VnHZBtGp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::J2jnKMX1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::FKQF68SK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::uV5iW0c0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::JWFF11vB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/otRvbtNw::My0qcL7b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/otRvbtNw::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/otRvbtNw::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/otRvbtNw::6CGF5RiY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/otRvbtNw::6C4zq8On()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/otRvbtNw::Wfl2NQep()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/otRvbtNw::ub3LWLuZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/k7KxNmKK::yfIQaH0P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/k7KxNmKK::28H9eRyU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/k7KxNmKK::s3Qj3w8z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/k7KxNmKK::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/k7KxNmKK::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/k7KxNmKK::jEsj570c()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0::loNLxGjj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0::KoyXYW2Z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0::hH31OCHC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0::_RdBsauQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0::rklYw9ct()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0::LgqXxirq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0::_UlNDJVY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0::AKKUmOYY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/fwPNh8_d::Jo4CmQzl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/fwPNh8_d::Nm3X4dfK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/fwPNh8_d::xCm9Iwfw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/fwPNh8_d::1VDVPgRK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/fwPNh8_d::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/fwPNh8_d::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B/fwPNh8_d::dZd5Sluc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::_5lkQmIB(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::qa_oJRqo(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.nucMYX4B::PuAT9bt7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::dzjMJVWI(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::OojgjxmM(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::erAVdtkV(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.nucMYX4B::aqQYvNR0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::6b5fFEsy(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::pthIU5p2(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.nucMYX4B::g6oDMY8Z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.nucMYX4B::pP1SjhWa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::dFlP_O3p(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::ePChTlpv(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::_hg0mrVY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::DC5Qvzob(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::o36JG9wP(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::sfdoDL_H(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::4W91PBOB(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::0BBulHvS(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::ppx67kWP(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::4iPz9IyF(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::UsEPYl3m(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::XJ98ESxG(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::WM57xPfE(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::jif3rOpg(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::zWrQ0vYM(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::ZjA1bSiU(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::0ZT0a_US(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::im0879kF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::Yp3JiCDN(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::p3a2dO2a(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::JJsVp9Ap(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::Zumyqa_b(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::0qEWM5Cr(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::wF3vmsjs(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::RQ2_iK0F(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::l7UKUidd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.nucMYX4B::MvxyH1tl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::JmI_kgrr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::Tb5eNs3K(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::s0CoMCbm(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::iUgF0ylq(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::81KQM853(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::vIoxkWca(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::sc602DTS(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.nucMYX4B::nnNpu9sC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::lSRJRmOK(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::UF40j2pc(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::eXaLKaZ4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::031axv0X(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::WCK5yZtq(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::EfRJtpMm(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::UO3bAhmx(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.nucMYX4B::wqkZim6o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::ls1oBFjH(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::9y0Cz84S(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::dBJ9RJpG(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::CnzFa6oG(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::xpYGs8dL(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::nebieIGl(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.nucMYX4B::MWOcGNHK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::lYqjq2iO(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::2JRD7fhN(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::9sALtixQ(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::8_gqNhDE(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::59LHJMvM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::SUs7o_y3(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::Oun8n38O(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::UHPHEafq(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::L7v9zYKY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::6jatgPic(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::V09gFSMR(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::Ukn6VqZy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::c9OKVK7s(System.String,ocjxAexm&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::QhtHtQbn(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::0MbtLkcp(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::Sgjfxn7t(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::6SoHWQ_q(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::WFzTlmWJ(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::QArMel_l(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::eghlrHz2(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::v6OWXkQA(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.nucMYX4B::OPhefW__()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::XDYgd7wQ(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::vULPhpBw(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::MCcrgoyF(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::YBrfJgm0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::9I52gsxF(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::1RAOAsWV(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.nucMYX4B::wDSQsU4j()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::sDLzvfB3(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::9DSKrV73(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::MeWFFSRl(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::QiHibzAk(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.nucMYX4B::nhVBuutB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::oCjOvKOG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::EzLR3DVS(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::zL7yxv4_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::O0CmjHE1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::C_nFNRXQ(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::BewYiO6t(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::ZZJYwXhx(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::5liuEG_R(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::0nK_MVtp(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::mAPMroFz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::zIn8PYeA(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::hYtDFnE7(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.nucMYX4B::nDyTIA7c()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::9nxKKNIJ(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::J2jJWzTy(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::9KI_XPpW(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::bNJxz8UK(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::z504dIc1(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::1XQWf0rv(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::UVcCnMQB(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::Eguo_pXn(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::534I1pdd(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::vVLAjFJK(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::4hRnMf5S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::kbZIwMXP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::KqEG_WfQ(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.nucMYX4B::9GySnPg4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::GHXdF0b0(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::M8IZVhvC(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::bgL0FrdQ(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::PfPXwgcu(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::OZ2U6D9z(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::PZVaj2s4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::1W21g2SG(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::rM1ZQ8Em(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::gFa2PoqN(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.nucMYX4B::cBNp5h1d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::ptdaAkhM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::bJilwzVj(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::6IizRKtk(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::.ctor(System.String,System.Nullable`1,System.Nullable`1,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::.ctor(System.String,System.Nullable`1,System.Nullable`1,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::hrA_XJe_(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::NkNI5LfM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::JMIpDbPW(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::H0fmMX_a(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::J1A1ulXA(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::czNZTSYb(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::6UTYGSAr(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::vYiwGhV_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::OfLnHPvc(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::V_Fzy7SC(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::DKr0ImIP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::PhtzWM5P(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::3RiViOw2(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::LXPit8Me(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::pfBeheb4(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::vv67l_Ry(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::3CEdolDF(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::nYVNHBsP(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::cjaeUBpk(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::9A2tpsGR(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::8jo93nER(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::az3PFxeg(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::iOoQFxQg(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::tzqWJcVQ(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.nucMYX4B::trETd6Xg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::unhZRGU1(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.nucMYX4B::5KtiyrGE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::Kj7orjPO(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::PryLEYP9(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::EUJfF6il(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::uTSKPyce(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::JAN0quNA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::t1aZ8Yig(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::kGwWo0Br(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::Uct2orHo(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::dmUAgXWI(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::eiM0SDta(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::8qJl8d_h(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::TDnFeAvt(System.String,ocjxAexm,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::XyneXIzA(System.String,ocjxAexm)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::Bx6iWhGe(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::Vzmktzjg(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.nucMYX4B::x53R5N3T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::sH6NyoBg(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::V3QtSFer(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::adNPxU7j(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::vrvMZU0V(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::oRT2tQBg(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::qi7_MgOz(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::QZxO4o8d(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::ge7GyW_o(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::d4rgSv5U(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::wGTvAHs8(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nucMYX4B::gPbcI0U0(UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nucMYX4B::VTrTRsD9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CrashlyticsTester::Update()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CrashlyticsTester::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CrashlyticsTester::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CrashlyticsTester::Start()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::6hOeWWbD(System.Threading.Tasks.Task`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::tD2KPelj(System.Threading.Tasks.Task`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::tr4UJN_H(System.Threading.Tasks.Task`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::mCpwsYqp(System.Threading.Tasks.Task`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::DnIM3Td0(System.Threading.Tasks.Task`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::dTTNUQPJ(System.Threading.Tasks.Task`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::HXLGoG2o(System.Threading.Tasks.Task`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::uRs2QcIh(System.Threading.Tasks.Task`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::ldaiOi_3(System.Threading.Tasks.Task`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::5NAuWLgf(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::X9BvOBGv(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::0bfLYPqH(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::M245hh4V(System.Object,Firebase.Messaging.TokenReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::EQsRPbBh(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::Dl7Ewr7t(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::KHD1p_I7(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::fPfIf1LG(System.Object,Firebase.Messaging.TokenReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::cfayDtvH(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::SY4ej5OG(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::LzhBubSA(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::uhmj6tx_(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::QG96hy1D(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::bWQVpjMy(System.Object,Firebase.Messaging.TokenReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::aBVnHUOf(System.Object,Firebase.Messaging.TokenReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::Fws6duEi(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::1AryWa72(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::UWRFrzKv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::3mUVKd4M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::FZzElpEr(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::fGVY1Zs3(System.Object,Firebase.Messaging.TokenReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::A4xkySMQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::foaMdWmL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CRmjcMm3::IKawA3Zh(System.Object,Firebase.Messaging.MessageReceivedEventArgs)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OzYecLrw::ctcLSvkU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OzYecLrw::tw8pC5_y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OzYecLrw::J6pod6Gg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OzYecLrw::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OzYecLrw::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OzYecLrw::wwuamI2I()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OzYecLrw::oMTMe7Ci()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OzYecLrw::di7KnRFU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OzYecLrw::SpIDgCqN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OzYecLrw::qc9Z5l9a()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OzYecLrw::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::F5V2VMiI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::xMxMnUaR(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::i187UNxb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::fjqzAgsc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::TmA1WHYj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::XqLDkOXa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::GG2Ei8Qx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::zuit2hsN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::dH3vvZn6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::VXoT5GFp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::_AEzFafF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::4hBEYS0o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::aTbfUhwX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::M44qu5r7(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::5FRV3u6J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::xJJcFMFM(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::9562cn8u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::oAUNcHIO(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::ef56RE7s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.URUY6MTz::kSxJHdKK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::pL6YDXCz(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::uJxuy69A(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::OjWrGdyT(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::Y43axStp(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::1XmfGWD6(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::_Sfc0sLL(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::7g8eZkuT(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::tSQD67Rc(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::3y7ZeW9C(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::4rQfxPQ1(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zW7O_E7s::iPzh0blV(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.M2ECeiUz::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.M2ECeiUz::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.MobileData/oGGBljpQ::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData/oGGBljpQ::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData/oGGBljpQ::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.MobileData/L5isF1Mw::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData/L5isF1Mw::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData/L5isF1Mw::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::14743CNE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.MobileData::PLyePOZq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::s7iSMhdi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::LW8VN5_7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::eMBPgxp4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.MobileData::2jm0871c()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::8FnW14Zo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::nP5YQs3s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::fRQz0fBD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::dhdUqgiH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::ar3XIT40()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::OGCjqe5D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::cY3isw7Z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::viTgb3sb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::mha9Udt3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::JIb_QSfA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::epufSYVb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::l6W1kkPM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::6W559O79()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::Cn5Z1ytt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::18dze8ta()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.MobileData::DNvKQFnR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::vHatfwVL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::ghWgP2Ft()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::fSLpXFsW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::acdiSEwv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::0b8i8ClZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::6EcsEoh5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::KjYPNDCz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::FJonjCGT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::qD96i_1w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::Y0mH8sqR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::N6n3bUvp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::JLiu6ap7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::aBM6JCQc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::TQ6xsH5K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::Xq9ae47u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::Fg7e_JOW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::xjprHtCr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::kBvHUfwY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::D_HTjSVP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.MobileData::dbVqGjhN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::ha5gDskB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::mNe1JAEm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::t8dNv5NW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::k5gZCTRr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::CvdeeMVr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::vNW2SZpy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::TukbtCID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::K77I8w5o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::jtk2DvmP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::2GEUXsqm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::h7QwGYv2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::eYVdYim8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::pwIWLWCM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::a5HOqOma()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::dkbK9Tfj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::cD_0GFLL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::X7eg3Yg7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::1mXdr26Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.MobileData::LcWmg5uf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::4HP8pahO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::3R3GgvRq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::HjjQv59U()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::3y7c1uMH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::GGumxp7t()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::4DgsZWZy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::1YAxhvHc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::Zc9FwpyA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::p2wchyFI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::HJq6T9WK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::fNoH8NYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::gdmvh_ze()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::dz3b3vmQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::XfJZ4kkC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::laldWnGH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::SHOLosX5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::pUE6hAuo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::AK0w09cF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::H8uwiFCK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::N5Dma1Z7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::mPFe15iR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::k42ckEaJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::TYrwDxKK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::ezjaMdnH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::4y3ryfQ0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.MobileData::HMrv17z9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::ioymiGz3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::wbEPcLIT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::VjY9au5y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::NMTdZwJM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::jV_QiZoC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::n3Gum_Gv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::soUAnUWA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::ndNnwcx1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::GgwUqKPg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData::Init()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData::Init()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::wygTFiGP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::cezsRPqR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::1tTbt4ss()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::f51gi0b3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::oZIpTWZU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::GjcGtqyr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::j4imtrUb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::uDyOWLr1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::fqYtI_rQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::2bJejy2B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::h0I4XAnx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::DZVFm2OT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::Y3CdUS55()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::RT6qt886()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::W076NjYJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::5IweFXuv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::hSvANl7r()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::RTasgWvk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::l4S7tiYO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::AmSY3VWK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::LYKJw8tu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.MobileData::tywWMZYS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::YZ55X45h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::KeSdkOad()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::e9yDElT_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::XTi555yP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::b_vM_eHa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData::OJRPP0qP()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData::OJRPP0qP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::NZmqnGQt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::v3ViSNri()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::M6EANmuj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::qadYD1BT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::aBqUdVkl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::K0Ul11Gx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::1mNPSvUX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::8uVrJJet()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::GSnLTXiA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::gfVo0yyH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::T9mcvIAn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::LMEwnftC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::Qdq_RRt2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::GiTVd9Bd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::DtILhigS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::croXkAho()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::C1heZuaa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::EnLFBwio()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::merV9rP3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::dZw5pLJK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::H5vN8qoV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::nei1FkFL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData::dOqZXKrh()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData::dOqZXKrh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::1C0Q4iE8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::jcx4EtRY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::YL5WsBCa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::zLMuaLTC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::hyeG4ElA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::XxcVj2fg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::b5mc24xH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::kWYME7bZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::3vuoTiIJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::dsg3t8oM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::PWnlxxcg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::6f_fPRXs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::v3LpHK9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::MBNrUnqE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::DbVqGfiC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::fKJXPJ3L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::6WPkQwCc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::HOy6VoPV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::1B_5C90H()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::Xp0W22vy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::8TQdh4hr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.MobileData::vq831Zz0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::OKx99Xzb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::2Jq4aSRA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::uslDByA1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::CDHENNf6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::z4wpyMVr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.MobileData::jXNn93KO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::WBWDBpS9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::ecQAO8o8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::v6WOVMcm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::tkwF5T8Z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.MobileData::h4hL5PBN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::d5KSobb0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::nq8PyDkE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::NqS48SS6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::JYzHraan()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::ZaK34tYD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::WsSU90p7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::cNn2GGTp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::g8Dkv5Ft()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::lUEogc8h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::nIvSaHaF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::uLszt28O()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::ff_yBrxX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::COxJzrrq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::lYYzMIrX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::03jZQ3yI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::_NpxotWg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::98SAE9RC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::g6N7xMfs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.MobileData::gMjL4WKO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::QZrye777()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::aQAUD2uX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::2tuSZShx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::tNHPNQQS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::dOghPohR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::XakTzY2t()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::N0vzkLi0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::65ws1e9N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::ClVvJfQV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::8K9bx6CL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::hZzMUeKy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::Bl9AKoUd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::pXoKuZQ3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::UDjeBHJM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::J3coqEPG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::hn1q6dgs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::ZQjii6JW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::HkEDwU5g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::q4HxCJdX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::qMcykkRw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::RH9rzD1E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::c1vWQ8UG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::scapkhoY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::LkA57oKq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::xuA4ECUX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::rKzPbDZZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::f4UVhYUR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::vlJVPaGf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::eyG9CZN_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::uDp0gKo1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::nmiBJlWy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::hG10Spe5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::xutvWAbx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::kTlyQ1Gc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::rTt_Vrir()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::N7UIjV70()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.MobileData::oOphumx1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.MobileData::LidLEFtW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.ValueTuple`2 ZrZYFo6bYXYM71YyLSDK.MobileData::8N6NJ6dk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::CkAPV0ed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::5QVMXQT3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::yQmtZouO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::nZziqhod()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData::DvxVrx2z()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData::DvxVrx2z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::hWv8h1tH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData::wr8yudm3()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.MobileData::wr8yudm3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.MobileData::L3ifjQif()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::wcfbMQqE(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::iai9XSwf(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::nBaU0jQh(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::Duz2OGWz(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::hosMFxpJ(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::yOILKvo8(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::VSu2s_yf(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::4l4uulEU(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::L23WB8D5(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::b63usF5T(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::lWt_FrrH(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::n9jMe12Y(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.RfaKAieg/HWyBjdki::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/HWyBjdki::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg/HWyBjdki::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::yNVrwMgc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Jh88cGT4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::r0ffMAMC(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::sDxK3NDM(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::GwKrEj0Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::9HTF4VOJ(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::9D0IIUst(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::O3bPR7Y_(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::wq352bxd(System.String,System.String,System.String,System.String,System.String,System.Double,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::ZVKoiAYD(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Y0GIPrRh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::9ZHSN9IB(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::HSwFZq9b(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.RfaKAieg::zOXFCs_Y(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::7Em6JO6k(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::RWpq_Nbm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::SyR5jKYC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::QPcRClIR(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::93tml50x(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::xnxMpJ3e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::V1KzHO1X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::xo9HkWqk(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::TcUeIAJ3(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::ovgJLoy0(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Hz3sOe0i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::bDtUPJ_B(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::LJhoJTmY(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::bmFMyNJS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::GZ6vHqZK(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::5U0yAqYt(System.String,System.Single,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.RfaKAieg::gRZmTdjI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::2fiSNCgs(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::S7WJOd_M(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::d8taFOwy(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::E6olpJar(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::o6AdQaeG(System.String,System.Single,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::RdoP3HMN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::QAozuHoa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::u8BQF8Xb(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.RfaKAieg::2DT7pTYu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::9VpOWUGc(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::X2EVNnlp(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::ixTDhNJu(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::lm9FGXPh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::59gdCTOr(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::jvoQ4Dgs(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::deiW0hji()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::XPc39zlZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::SF6MpnAb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::QlvKu8dL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::T3_itzD2(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::wscCbFhs(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::UB957Rv7(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Eec9o17l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::OA5oHZAA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Twy3DgeS(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::KI7OD8c1(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::g68wg7ct()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::gV24BchM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::0Gj5Dgyb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::J7AjcCtY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::sPlMKcdp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::7mU3TJuo(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::ewnzINVh(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::2Kr7Yh1z(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Jx9i_4vR(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::qHJKTTx5(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Odrd0Q6z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::uImhRMQ9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::DkgLWdRc(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::h3uUgKEW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Nmm8q218(System.String,System.Single,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::AQorDygd(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::HU8quNIf(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::ItGufRWN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::8qscy5cm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::NlNdUu4M(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.RfaKAieg::A6guZeUQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::JEysivRO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.RfaKAieg::eVAJsEom()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::_w_pFQzy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::nz5XK7Em(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::yAZUuB5Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Fb3UvtxY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::o_VwIXZg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::o2p44vvC(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::tPiCpK1N(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::FDiloTCO(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::0JmRDj5U(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::m3AU2lwk(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::45pPtldE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Oe3LnFJI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::vfuBI7Qr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::6m1vRHIL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::lpd3svCn(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::qy2vejK2(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::OaX1oFCv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::vrJMntsR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.RfaKAieg::AdEAy2AX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::8FnaJxYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::h0GZuOoq(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::iYcXbVGs(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::7mxKN2Ai(System.String,System.Single,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::sqAyytik(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::c6PGJ_yg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.RfaKAieg::lJcBJXaW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::zO_QUd6s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::FblgHBQZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::uWBZzwSP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::JLtPJoDN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::CX2hgOqk(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::TY38IAMD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::S1pNASIk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Cwaw1TM9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::_eYT6B1T(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::fARHlBji()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::MzT36cez(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::ia4z7E0Y(System.String,System.Single,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::O8p7Hqx9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::g8bPPKtV(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::WFm8f9qV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::nmWmegCz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::ajrM1VjS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::SEtt6qbO(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Tmn2m0Zs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::3d96n9sF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::vXQHSxjn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::QdhAlCan()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::6M2w5S7_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::MSauqKlk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::o88Hsl5f()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.RfaKAieg::9nVYNWwf(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::KRNCdHHb(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::HFrmc25_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::G2cjBrrR(System.String,System.Single,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::QQ8hxYgX(System.String,System.Single,System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::R4dkEjjM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::PaBUsnkY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.RfaKAieg::_sY6w48K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::O97lwLGQ(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.RfaKAieg::GIiPqWBr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::3GjYkblo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::eWjxbmRT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::KX6fuNyK(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Lt2X106g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::AOJwsEQg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::QmD0sFIQ(System.String,System.Single,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Kb3OmpAQ(System.String,System.Single,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::DD9PdprD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::lLW1bJE0(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::DJjteLoB(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::IqjldwEm(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::6J0XOCAf(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::j5Q_FBOB(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::15g0TSFQ(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::DrOgOvez(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::32g2ZIv7(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::02MmtYeo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::UHoEXmZ4(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::wNHpjqco()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::IfsAQfU_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::K4hkhWZq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::jj3u3N2h(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::61G3gnj0(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::5VC1Bw4j(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::SnRTZTxo(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::hxaoZZDA(System.String,System.Single,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::E6e_ihgw(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::TMxV7cmc(System.String,System.Single,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::JObZuR5r(System.String,System.Single,System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::uUneh6D0(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Bq_Pwmbl(System.String,System.Single,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::U9nx7fKZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::VId5FEpe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::ygommOGJ(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::c1hG8IkM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::poQuanJF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::AWHeWrnE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::cUFjfblR(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::mR3YtryP(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::IsSzflTu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::DjrmUllz(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::KomRdRyX(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::UKac5VKY(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::eejKN5ZY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::cQd6kaTK(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::kMqRHmf4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::ME6MUyva()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::LWDWOEfp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::LRt4VwwP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::PLaZuiqZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::dpRgVrsP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::fQ_rUMqc(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::nISNadpD(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::PDMnojbA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.RfaKAieg::YUlSSBKM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::7djlA7Ki(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::sNaO05d9(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::cJ9Zvquu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::y192Jzo4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::O8A4P0pi(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::8YUcT4yC(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::YygF46kB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::jeMIbNxn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::0vtO7DuQ(System.String,System.Single,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::HBzTXJJe(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::CIbEo5Pj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::BG0QRC9F()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::AHAlMklz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Q3yqBQFW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::gc29Lbnb(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::sAm1869u(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.RfaKAieg::r2HJlYs0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.RfaKAieg::wsw8lUbX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::DVsyTFI2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::kXJMj6nK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::wh_ndKo1(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::CotpvVjW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::GSrBPHxH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::PhYeQYAc(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::R1f5cBAs(System.String,System.Single,System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::3vil8n6m(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::O8cIzH3h(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::oo4P0mV4(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.RfaKAieg::ER1lO2W8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::zDLk_1Zy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::w_ZGwuk_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Yn4EKnPT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::hXza4M6x()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::PV7gLF4j()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::JlxEZC0R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::H4Au_FL8(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::bWcGtmPs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::UEMHyjuy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.RfaKAieg::CUb5gJHL(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::yrs7mDS_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.RfaKAieg::df_jPwe1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::LWP8n8kS(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::JgnRVRej()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::01KovAIP(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::Y3Zkx_zc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.RfaKAieg::DxppjkXK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.RfaKAieg::jHCSEh7a(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF/6W0t37yC::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF/hQXj_CLW::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF/mjdxxCmc::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::4RmUGodB(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::SscjJY9a(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::8Mo2ipmA(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::X1GeCzhU(System.String,System.Single,System.Single,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::nyfabj_Q(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF::NWpKwshZ(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::Tc_dtJ0d(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::eAsEZy1h(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::tBX75QuH(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::hPubYF7W(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::M32b9ws8(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF::Ho2bp1ii(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::3pVsjt6t()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF::QzbgqhbO(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::q3FG_s0_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::Ez9QiZ8I(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::IxeWaQS7(System.String,System.Single,System.Single,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::iq0WwCDH(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::3RptSJuY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::QfPzr1p0(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::NdS6N59x(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::5etDsP48(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::J47H8w1K(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::jVjNrvQ6(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::xs3SaGdl(System.String,System.Single,System.Single,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::ad2o5e5c(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::UrGKVA5i(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::u5GO027R(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::8LbeotKx(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::jr79qonF(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::3KMwGUrD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::1sUyTUzu(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::WehNTmdE(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::MY5ONL6a(System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::eRsi38Jz(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::sfPbZSWP(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF::VflGvN_a(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::VKAcOcDm(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF::5Gq6dwr9(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::nF1ezspN(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::6Mbm2obs(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::IWAMAxfG(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::zKqGzsTc(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::KWLALClL(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::nIrjsurh(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::hlu5Ox_E(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF::7d4QDucc(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::8x7znpLM(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::ZdAPufIe(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::uHc9nVw1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::EvLYlLIg(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::IWJSffLT(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::i7ut0QU1(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::XNPBllRk(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::rB9408EB(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::BgzeSPFR(System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::ISGj5nK3(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::v_1lYH55(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::ZcoeThrs(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::Ubbgdf8X(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::xYnOQObw(System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::cAKaVJWw(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::1ZWxgHxo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::eiDH9lbX(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::0sblvd7A(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::kq6ZLJYM(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::5gLJ3ANt(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::XqsC8LWE(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::v07rVKGr(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::SGMm8rKT(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::TIsSchER(System.String,System.Single,System.Single,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::WJIUw6VV(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF::yLbOjvvn(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::Yp5fdNe2(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::hge4WM0Z(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF::EfEkt1qt(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::ozoMVthU(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::bx2cU0xm(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::ZQIIifHq(System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::ggL2PlKu(System.String,System.Single,System.Single,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::3azeEE_H(System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::jtfvTOvY(System.String,System.Single,System.Single,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::kGteRPbQ(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::gjUSj_NW(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::Zjv8g5um(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::PCBwJGU5(System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::UKV242Vx(System.String,System.Single,System.Single,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::8jtZ8HwZ(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::tsrbso52(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::f0b9mtNn(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF::EA2W3FCf(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::owU83tPd(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::XVH1Ff8P(System.String,System.Single,System.Single,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::kx0FpPrH(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::3QF7dwIs(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::QEcffMNw(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::mVo_rdv6(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::YSY470f3(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::X3jVjlxy(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::6xNUreUy(System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF::naBAyewZ(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::LoyxZdM8(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::1R6dVHPj(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::tlMoN0hj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::s3btlJ_d(System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::ui3soT86(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::CB09qKed(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::U3458cNy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::8ywgWF7k(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::1WEJ6hqR(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::EtAcQ3ca(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::pXXLowXT(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::GZs0TM6Z(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::BvRU93Tj(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF::2Q4HBTzP(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::2PjXP3hf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::kPcY6OgG(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::81joCpR1(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::iDKCFt5V(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::6J0fSJVU(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::tRXZ9UJZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::0wypECmM(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::5aMLgluf(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::MZGuE5Ql(System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::FO4ygFC8(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::n4fiqL7k(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::i53bfKhF(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::WWsDYb2E(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::_sZKrJcX(System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::PSwCJFIx(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::Or2vnMSd(System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::JC6RabgZ(System.String,System.Single,System.Single,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::nUpQxMr7(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::R88MBN5R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::lLH8IK4X(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::fjEnzchY(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::zTzK_X6P(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::yN3rYCuA(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF::av9t8zDK(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::Yg_K1qXA(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::wl_TeKla(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::xQEiTJb7(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::sM3WsS7X(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::lEiE2cmX(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::hWH0OQEz(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::P3b1KFxb(System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::3vFHLD4Q(System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::mob5d1jo(System.String,System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::FS_NR1sK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::7RcXWOxv(System.String,System.String,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::XLjzUpnD(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::FCLiV5cI(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::lt3llsGY(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4HWlxixF::t9WuJ07D(System.String,System.Single,System.Single,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::hYhGyT_S(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::fgjC8HYV(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::icNDcbOw(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::IEotEiQD(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::qtIzKukt(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::1OM283U0(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::k38uwrI3(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::nWBfRZTB(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::oP2xhzYo(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::cFXzYQdm(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::SmED7ykD(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::papVUHa3(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::lHQLFTjt(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::n8oecZFS(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::QIg5g8PB(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::pZJkXs6s(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::Hf8c3Dji(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::IjtSeZMS(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::62UHkrSy(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::5yagc6EN(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::FCYED3Nj(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::rNveUnVg(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::r6yfgo2r(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::G6SIhgpA(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::k6FR4bQy(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::GjjX4avd(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::NCsSQFw6(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::rk_dOK9m(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::BKSvGoGK(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/5TFmcxUH::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/5TFmcxUH::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/5TFmcxUH::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::AOSyT5mA(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::U5lodeOC(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::W5GVwa8c()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::MgRbPv8R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::Q8lhrWD4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::N0RSMpjn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::L7TuM5Zs(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::_frsxMe2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::r3KWSraT(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::AP5Gx39m()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::ieRm4bmv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::xA8JjT6H(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::YPcJCeUL(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::IaK9N2Ml()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::hduMelob(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::11DHf5nE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::uaGYZ_cT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::ecvqryY0(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::q0ldEosG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::EtbIEgHe(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::l5H1KXUv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::rgTBGbO1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::MSn4TYmK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::hyN2_pUD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::t3Kul7fK(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::DRLBEGWe(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::SvNcuO73()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::VuoY7sHp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::0cVGndHS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::Mycyk8_U()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::tIb1zwg5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::zpeqGWNy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::jFW9kIaI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::4rFNlOqg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::6BehfI9U()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::_quhFlTK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::WCP2XQrX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::ZGNxtDjZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::NiRsK1Aq(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::i5mmujaa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::WVspB1lK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::qQieCQUJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::0UJrzLta(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::KBdKYtAw(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::SgiuYqxI(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::YrPAQEt2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::Bajn3P4u(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::M7QQXXm_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::vujRqLwa(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::4Xke0mSz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::b3Xh4WKd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::AC9Z8KJP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::0Sbyutw1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::CmVjvfJZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::fJWl00xP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::nsxoyms2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::uwoVEEkG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::T1lXxGD5(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::NjAZSJCP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::UyK0YqZx(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::CXwFL0jb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::ZRQz1XLL(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::niv_nfX0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::_5z3qVcK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::iiuXHePA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::xSLvd_VT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::OfjUBGSV(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::WY1vO8sn(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::2U3O8zN0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::abOXnyTP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::NirmWd9N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::tkmYicj3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::GFeSJ3y0(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::NMf5xKKJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::wcnY11tW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::nzy4L91Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::EAYVYG5c(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::r2zaRhZK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::pPMLIawF(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::AAlDbzK1(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::CW4sRClh(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::eONsmPjt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::BlrFpDYB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::VS8ZedWA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::ptBO4ONk(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::VGShnMD6(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::cbHrEoqw(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::0kgUsK6t()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::jkvuMm4M(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::FvoBJvlI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::X4ZXSeEL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::LSMCkhce()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::dXBtkPcy(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::Bb5Z9d5b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::fghoPmXc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::3ZejM0ux(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::kwROZKgj(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::gMQ_QMG9(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::t3YauC9R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::RJI55w6C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::jmeRclWv(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::3QAyz54Z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::Hqzy9ykV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::ucnyzolU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::0rEE9g0k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::LrV64jMi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::oHGLt60I()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::kDlHgf5m()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::d1fpZAeo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::hr2Nr_FB(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::GRxMdTXM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::BzMhituy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::XgQC652i(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::EluVe5ey(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::2aZfGP97()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::TKIiYmYS(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::Ch4VA30w(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::drrwj6yG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::MCkKfrHY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::UTq6trOG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::q0jzMmKk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::bX_Xkgsu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::pOd6XKgU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::Cey2y9Et(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::JnqZV9HQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::Ca6RQlzd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::duj9K2rA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::VjmQV4Ma(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::VNHWdfeA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::4EQsaWcp(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::xrOByToS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC::QOAVRcaW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::.ctor(System.String,System.String,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::.ctor(System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.jmti0Apa::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.jmti0Apa::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.T8c598KK::.ctor(System.String[])] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.T8c598KK::.ctor(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.lACBvq4L::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.lACBvq4L::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.seFRNdhu::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.seFRNdhu::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::SkI1oXm4(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::dki0gr0X(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::F9eAJ5H5(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::USoptMjj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::2ZS1VJvB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::ROGEu9rB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::O9Zm1moq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::sPRVKje1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::QOsJKrZv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::47wV4DPs(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::NKjyg8kM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::UUYVqCmd(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::SCbRvuDX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::q3UP8LVl(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::2yP21iKd(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::IeXS9qRc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::elBz5_kl(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::8OgB0FBP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::sDCcAajE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::1VRAd2lN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::YqmvtoZk(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::PLnwdh0X(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::6x6sQAwJ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::mUxKzlXT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::7vzWra0y(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::rCe_dCVw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::bOz0qIDO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::XF2OTNIw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::vA_D4vsc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::8Em21gI7(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::gYZEgHAg(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::AN96BvR6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::kUk3lmYy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::5wTgGByn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::YDECTdTO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::cv6tBus1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::CiEDecig(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::pQxXfYGQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::ZT3YiRS5(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::KDV13PiZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::cOY6D5Iw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::gu8nUKzt(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::rvbIlV4X(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::soVJhVnL(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::vZ362ekn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::fqMgRipk(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::rrIk07Nc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::x4ldImxL(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::ZmKudvOj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::sfc0OTfm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.fq9OEDKz::qNP98UPs(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr/QaHsxOCI::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr/QaHsxOCI::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.bgZvZjhr/QaHsxOCI::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::mTf8eGPd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Xd9yph_R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::XTRnsMrh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::r4J_vsxA(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::DtH_UVzF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::L4dSgTjE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::CxCYqCBr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::hu2YjS9t(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Nw93Rz8S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::0GrI_ZTv(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::AS0H1mVV(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::b0oqLXWN(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::tBlwfNZs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::ZJoY7ZCN(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::PGX4GOLP(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::mXyjb1ED()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::d0O4zVwA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::ixE5IPG6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::ijSSxzkU(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::eHyFUIwD(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::O_sNzOwa(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::OAqW5zXs(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Zr7cxRTX(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Sta6SjJU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::KULXg7C6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::VEfGSHuF(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::5642qat5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Zz8zIhk8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::ykdTmtv9(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::6gM7RutG(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Qafxm84W()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::MSio8Hsi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::1NPZNOEP(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::g1k7ZiUM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::V2fj9kmm(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::NndzlShk(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::pgwg9prB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::MX2d_FgI(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::CDsVMUJm(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::te8FlYvZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Y_vcf0zv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::W5vgTKh3(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::mbCaD0Uk(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::th4UQoed(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::jKY7fsZm(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::b0W6BYp1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Jz7ll522()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::NDxQnSbR(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::KBaWDS_P(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::qNMWl0B8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::seLcL8UB(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::rY6Nxhny(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Pw9z4qmN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::k0DY1hJg(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::peeXm9T2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::OTWeGiWt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::LNFMCUUC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Ana5M0qq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::PhB7B9A_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::OrOREtxi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::FW6g75uW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::4trEq6_F()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::7vHrYbxa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::BgDk17U9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::D5aEGKom(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::0gFdDdEV(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::F5a9DHdY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Et_nF0Nl(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::yf3mZZ24()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::X31XZk0S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::NRMjAjID(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::IIlDVuV5(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::PPJccGy9(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::tEHYswEW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::d19MFV69(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::XJnPrIuF(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Ur5AX19M(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::lNOTBB2P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::FQxIl4CQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::rVC4ys8e(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::jH3C_eNk(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::5cZcX5BS(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::5Gcsvhw1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::eGuRrxUj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::1o05be51()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::NG1PG6xA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::p3y9zGKt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::BS2zGWlY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::c7XBIt77()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::31dZhezT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::SdnGv6In()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::HdCU698Q(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::DzVkI6ev(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Bc5o3uJR(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::YyVT17Q2(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::r3FleJ4n(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::mgxa6S9M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::i8FHl7RO(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::NVQRVxhe(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::2mnChtSy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::jo1MznRU(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Ymh0MFJ4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::0w5navDW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::ZyfakBAl(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::33hQ037n()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::AhblrKJr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::NIJPy6OY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::ISeZUyJT(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::3dsBQRiJ(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::FukinBdN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::CUqtdTFK(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::uylcxnmZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::Cg4ulHwZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::6wk_2H0S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::fhwKvG8J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::6SnZhyYq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::F1NI5fyV(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::98Sd4bin(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.BPiI3e24/gk1F5Fs3::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24/gk1F5Fs3::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24/gk1F5Fs3::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.BPiI3e24::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::o5RRTLHa(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::vy76vMqq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::J5PfZ5zQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::H_PMzEBH(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::fSTFYC3e(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::oW8xbHHe(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::RiSzVvfH(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::otupDSu8(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::ze3LQA3z(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::R_13gWpY(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::AEKafBQH(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::KW9bxlla(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::Wd3vzmCG(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::4_cqvvkm(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::Pknt7k5o(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::CTAP8uXI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::ASaBfinS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::peAN16oS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::4b_ndPbn(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::pGllVlpQ(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::RIpk9Mjx(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::8rIunlT6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.BPiI3e24::6gegOoHJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::8PD0Wsqr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::7FM7d8km(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::Ty0184o3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::J53a4WE0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::UNyUjkXp(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::g30oi8ux()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::nHgCkSQl(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::KQuHVtA_(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::ZhjDqZE9(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::BjZgiLHz(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::nnRHnq6d(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::J9FhN8DL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::Wmm1dkbH(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::ScoEZMPJ(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::FxWwn9xX(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.BPiI3e24::gg6BZq8f()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::RuzuCziP(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::YggEMAnS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::znC4GzCg(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::H2V4XF4e(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::ulH2eO4V()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::3F8ghVg0(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::IV13IQVV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::iID1G6CA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::S1QvdnXz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.BPiI3e24::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::tK8vVi9d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::Q4GWK56X(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::K8gCpfLw(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::usfkcFj6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::4zrYLPp1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::NGm2MTQm(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::EOogTWQI(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::rXNNu4Ak(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::Eds_Fd9N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::TSlCsx1e(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::fWiDsfFH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::lsyRTJay(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::AXbjYdAr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::v5_RRe4p(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::8GWgTFkR(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::nKhZmnRu(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::gIPRKBKn(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::SQVcjFuu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::uM_lzQOu(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::CpGmmg0g(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::_HzlbDII(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BPiI3e24::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::blJIRgEN(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::11UQp0D9(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::z2e72TJP(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::0xwbl3he()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BPiI3e24::LahCnXH9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::GmMHL4JO(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::f5EI9X6l(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::pg673Vqm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::UItCPru5(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::qL7fMrt1(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::ufvo9PJD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::sFqyGdMB(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::u0tEm2fL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BPiI3e24::JSskChgH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::ci5L4w_I(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::j729mgh5(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::yM6DGe3k(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.BPiI3e24::yViG4hz5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::yN4qLPCI(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::NOt6gftw(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::aQA6BwVz(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::deALMVbu(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::sSRXpaeL(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::bkVbkKqN(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::4bbP6PVf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::vz_KgWBb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::mL9CCiOR(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::ywyYELH6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::5QH7fEiz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::VjL2ztjs(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::J4zildFW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BPiI3e24::ISUkYl8E(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BPiI3e24::OYY47zRD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::toiexTfk(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::CJ3eN1c6(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::dJfwB1Sh(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::YjIsqg58(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::OiscMd9m(ZrZYFo6bYXYM71YyLSDK.Krvjevic,ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::wo_chRJd(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::Nfxun74p(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::1nWPPM7c(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::a2eqlkzT(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::PiMrTJAv(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::rWv447Pf(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::3SH4eCqv(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::dG4WzVw9(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::KTiF4GDM(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::xBd7Qgc0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::yCMAnOHo(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::17IDHuG0(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::jPT_HFpY(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::W0X4To83(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::L_vKkY_l(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::gCL7WhLq(ZrZYFo6bYXYM71YyLSDK.Krvjevic,ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::DQPvrCgr(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::pJdyyEsg(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::J9yRlIh6(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::_rXiVrTN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::JkDWVEyi(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::9aheGxKI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::PfLPm_z8(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::dz38p2Es(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::TwVibxxt(ZrZYFo6bYXYM71YyLSDK.Krvjevic,ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::Pq51fruL(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::YQ3hUgMb(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::HXl4c9Y7(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::a43k2xiG(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::2crzKjp6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::YR8YBj9T(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::217OfnQY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::BnkAfbAY(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::_X3uAm7_(ZrZYFo6bYXYM71YyLSDK.Krvjevic,ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::JZAVTzEn(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::BlBFlNa2(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::cEYZ_t2z(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::LxJ8sLMn(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::vuSFGl9x(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::chcWOR9C(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::x00Eb65n(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::riQpr00e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::TS5hhOQw(ZrZYFo6bYXYM71YyLSDK.Krvjevic,ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::F4PjDb2S(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::aw8sjOcC(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::SMbV6lDB(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::tuKlNSHI(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::ZPRSQpmm(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::fcJa7n7S(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::pjgNYF7e(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::Bh5Jc50I(ZrZYFo6bYXYM71YyLSDK.Krvjevic,ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::zZeX2e5u(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::339A0KF1(ZrZYFo6bYXYM71YyLSDK.Krvjevic,ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::upP_vzyO(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/dCijzOFB::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/dCijzOFB::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/dCijzOFB::ScxDA9ST()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/dCijzOFB::GSjo_BNd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/dCijzOFB::d3WsmKgF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/dCijzOFB::LTCRDOBC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/dCijzOFB::fHWqgJwq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/dCijzOFB::P6KkgL_Z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/dCijzOFB::X5u4H0ZG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::aIGAXlrw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::8Pv1ionS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::jvZkbnqQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::jqeIq56s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::KghfN32K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::yYUdf0B8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::iQS8OV8k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::C3HAXA4h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::YxRneExv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::KHVB6dhr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::ap0S313V()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::cwmw0_dX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::vQ7j6jg_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::dD_rvCOK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::SW6laX0l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::HxVZiwhP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::B4vWQqcI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::kEOx2imq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::q3gThl0s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::lheuDBFS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UAGCgsoz::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UAGCgsoz::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UAGCgsoz::XQwsxoUb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UAGCgsoz::usmIkkN0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UAGCgsoz::UKJlwhhH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UAGCgsoz::3_Q3Cmfn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn::pE7CfGuC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn::6hFUUI21()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn::dL9lz0QQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn::7FlLvvA5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn::DkYt2cJp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn::pJvLfsGn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn::Pkj87vin()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn::h9pQtQwf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn::9RpEZbdC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::axiERzy5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::L92xWshB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::etXUpgf8(ZrZYFo6bYXYM71YyLSDK.AdSourceData,System.Action`2,System.Collections.Generic.List`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::m9xBXwWN(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::PD2RP15h(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::Rk_W_MKY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::wIlej3so(System.Action`3,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::_YnzwB9e(System.Action`3,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::1o_TQmPm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::gldve12t()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::bhiuNR1j()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::978uCKAd(System.Action`3,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::P_W6Nb_A(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::BEAzH9mz(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::5dFSPIGw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::oEBOjZ9d(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::rAfqRT_I()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::Y4d9Sc4E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::oba8WAt7(System.Action`3,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::GZTFeJLb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::R9Vw_uto()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::1XnlgKq2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::QOnxppZA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::GXaFH_l2(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::V6lgi0pn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::uqNlt1vu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::cdYqjefs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::kpAuSuCg(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::GZN_Sz_n()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::NZCoW8P6(System.Action`3,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::ZOrSpzBe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::yQpb4Tj_(System.Action`3,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::SP3UYyTl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::Twz67Rib()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::hD_uRioz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::0DiGo9zf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::pc55XYHX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::u2VX9zQi(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::VtyeXjwQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::lO_lAyw4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::AulkcAmf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::hYjxgZEv(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::hrpvR7Hf(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::dJ2zkVzQ(System.Action`3,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::LGnzHJxy(System.Action`3,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::XYT0rQcc(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::dkd8j_W1(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::6JPKMqHj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::pt1gS9Zv(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::SSfCfz6n(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::kBqhUdv4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::AvcYCJuh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::dpSIImTa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::bxnwttj8(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::eMsVfZUa(System.Action`3,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::8U4fTULL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::xspJkO3c(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::6dG2FVJy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::0H4tUCfW(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::wW3i2YAH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::M3k5aOrL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::WJpyiRFd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i_XdhVwA::hc2RWqc_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.YERrislM/LjKBOCC2::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM/LjKBOCC2::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM/LjKBOCC2::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::g0onwsMx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::B7uWhCJ5(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::l3s6eVaL(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.YERrislM::COZ07WEm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.YERrislM::DbcJ6KPv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::3BBcz0l5(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::EK5XQaF_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::yNn1x5zx(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::C5HiKR9S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::EQJw_Pm9(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.YERrislM::ZCQNIvMH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.YERrislM::BhbgT3tw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::2DUruJMR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.YERrislM::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::SYxe8sSu(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::P2ERB1az()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::1rG0_wvY(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::MUtmNb9s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::PGbPuO4C(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::wHzwrUkX(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::yw0kBZMt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::6Qm2s8A5(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::_Yo6u7LH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::EaC61A4A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::EtLSlrbd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::QZ92TBk2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::4foFlcHA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::zXpEHNWq(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::SJGAHnSK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::zFaafMiW(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::HE4itmpz(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.YERrislM::aUwoNOXL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::T0Lafxvg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::O3zDDOjL(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::eHdR_0WG(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::FzDDm5O8(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::ShWAxS6N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::dQfeeNKF(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::Xmp8lMxe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::spcFpZYD(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::XpMWeGCA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::ZaiQYA4T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::ThksNBPJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.YERrislM::j8QpdmRO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::FBxnZ78C(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::b1oYUMeb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::KtEL6fBF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::cjhopr5b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::O78_DMsH(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::DdBqkuJ_(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::d14SH58Z(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::CeQc4xWe(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::In5WLZPv(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::ff0dHv55(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::dS0YxhHM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::O4yzIkpI(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::ChemvoW7(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::Gl1tdSqr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::NH3jgjRi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::OF3BvzH9(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::tbO3j4Rn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::yUSXeeh8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.YERrislM::Sf3qaFeo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::syiNveq0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::2fCPRH08()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::LkEYOe1u(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::WEEnPXFs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::48o_pOcc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::c3bWz7xR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.YERrislM::TuWqLVq3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::B4Ro8Bvh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::iyuUiOsm(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::4kc31X2u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::3dd4Hgjl(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::tIOBmChC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::qHoEhiFP(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.YERrislM::_ivIfsJY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::2WDzjBVr(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.YERrislM::PCzlZI5l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::vj2szssc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::mXU4xyle()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::QZPHIFw0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.YERrislM::3WMLcBRG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::Gs955Q97(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.YERrislM::9zckFtuw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.YERrislM::mfkmO7AC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::puVIVTjU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::8A1u4VIq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::Fi63A0xB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::Ozn9D1G_(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::0s3pEuzd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.YERrislM::4yJ_axPR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::AcNePzAz(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::Qe_MHorM(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::B4RBF2CN(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::Y69qK1es(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::F8GO4tRz(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::difsERkn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::MMfL1NbV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::1gWrYkGo(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::QzAJfBiF(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.YERrislM::64eKt7Ld()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::WQGNWdDt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::OClSy8uz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::85pUd9MK(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::EDWI1drq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::WBnBwnb7(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::s2FxG6ra(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::9HCDuN3T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::UYWBWr6d(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::_YcF8y87()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.YERrislM::xsVIK92E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::3dP60g_p()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.YERrislM::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.YERrislM::4XAXi5b4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::pBtnnMWu(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.YERrislM::AmzVbGAJ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::RAJZ8O73()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::3nJb1fnY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::g3VeovOA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::7t1kwVHY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::8Iulwk_A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::5FVWVSJk(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::CaqCmeY8(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::Vw0QzibT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::UHihLXKF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::vlqb56l1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::csCzvKPK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::_d0_i70G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::0_mYpxvv(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::SLcyxCHH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::j4fyCoGT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::WllYy6gn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::LlpgD6cH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::pZfOyvtm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::kHk4jkvC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::fPzN9uKp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::mfXZUClF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::vaeGFpSB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::teoNLmGg(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::i4Eouk0a(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::w7l3pLmf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::y6gkW3KQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::GTxVBrS3(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::INzCPPHu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::NoF1m3Io()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::F0j830Ge(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::AhoBitvS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::6wEcTFun()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::PlABFvwa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::t4Fcj99J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::5DQHzevf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::5MWwvDlP(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::7H3fBzhA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::GCn2ZpdN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::HLc9ChKw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::PSUaxesJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::Ld5vC61h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::EkUKJiJ9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::SmfqWOLe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::OJbmmDDo(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::.ctor(System.String,System.Single)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::.ctor(System.String,System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::iBtmnEqD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.DZpyWCgz::csBTyvHF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::9mf5Mbb0(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::jXeqEU7l(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::AkJW50_e(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::MKqnPRBT(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::l5aDWizI(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::XsUpRnnd(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::cGKo1kLO(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::bK9RMfsb(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::ktsPFLk4(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::lViSGJbA(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::xofOWxoK(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::BMq3Z4Tt(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::etRkhJP4(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::hJNxjPhR(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::5U0VSu5l(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::hFvhk1BB(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::pwYohTiS(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::PXXU1921(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::GJvmnSdS(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::9WByWosQ(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::pbKqCKYU(ZrZYFo6bYXYM71YyLSDK.DZpyWCgz,ZrZYFo6bYXYM71YyLSDK.DZpyWCgz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::8O2rKTuY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::KTfABeNT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::V5NRFfJo(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::Gw9Dbfm8(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::Tbejkxq2(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::D10shOMM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::g6Pam2HD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::4FKKLPVQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::F09U1391(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::gpcAFHxM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::PHqAwy_3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::SqqFeFAa(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951/9w5PFAbC::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951/9w5PFAbC::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Q413u951/9w5PFAbC::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::HVT_u4Ip(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::6x1swerN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::fEPQkErf(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::lZ3K1njk(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::wGysmHOQ(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::kZpqjnho(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::nQ_vYrXt(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::VVZSe2y8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Q413u951::524fDNk3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Q413u951::qIEVbsLF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::PLlUsg_2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::RhnxCqLE(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::e1ebSEkI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::jszYtQdF(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::BYRm9MCQ(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::dKLXXmCs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::SSb2ATLP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::T9McCMxx(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::h59j7g2U(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::6gM7RutG(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::ENKPDSPM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::KqsYXcYS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::j_rwS_xv(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Q413u951::QRfWByFL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::hIGzausX(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::odLN2X6K(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::3h9VwKYC(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::p1XAI9ld(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::d0O4zVwA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::WNG6lNWT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::hIgkVbei(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::kkRDDkVP(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::tuuWHg3x(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::hKPjkETb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::FUf2NC4D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Q413u951::UxLJjSVc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::WEUSSLhc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::5UY9TZpC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::j0NC1q_n(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::0V_oIz0D(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::6mDidMPH(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Q413u951::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::229hWsN6(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::cvnrcxIh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::61qXVQYw(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Q413u951::3drTlFk4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::1NZEzPC8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::kfehz2gP(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::QkxvOnm5(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::dlrJL33j(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::YG5fUxkh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::WgmytvRT(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::nzcZ0ZJK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::anyfVrBa(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::vKMCD2un(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::bQ6mpB0L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::IfXyvPnf(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::S03ndtph()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Q413u951::Nk6h7ZE_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::dhOFF2hy(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::DCG5ttcD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::yPh4uLbB(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::X4WJI0st()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::vacLZ0Mc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::0pAPVeaL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::fzLMcybq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::MkilQxT1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::vt5gohPj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::Aweu04xw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::9sc7R3du()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::Kv9JyGiQ(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::GJoVbFgu(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::lxDiVuuD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::4Jhly55V(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::dv__jUUj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Q413u951::lbne5U9S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::UoRkhyYD(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::fmfSOrB5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::JaC0_HQD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::HDoiMaEJ(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::qfI7Xp3I(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::2X4aX3Bp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::pZJdmKrZ(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::_rt0cOTk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::ZShx9BVV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::xbOdlNBs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::sGxWSHi2(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::j5hXKM8e(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::qUqIHAym(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::vZasFwhi(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::RbgEfDrK(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Q413u951::8xcdIkjB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::d4DaQ7oR(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::f5OIZd87()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::6qDB8LMi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::6iNLQM6I(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::mUnt_SoX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::pAiNjkbS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::tTozT9oQ(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::gJamJk45()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::M7lbgWam(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::eaOqxsXq(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::DpmV8XNt(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::jeEsfYdm(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::dswNeyiv(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::6PRdg5ia()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Q413u951::SFRTqM2s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::xhrZ4yLi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::MNSoiXNc(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::OIgste64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::9qzXJnB1(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::xYLngnnE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::UHmxgdh7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::ixE5IPG6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::lj_QBRSX(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Q413u951::BcNDKBam()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::xSWR90p6(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Q413u951::8ZzHoBRK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::GAswKEX2(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Q413u951::CDasMV5y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Q413u951::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Q413u951::v2MFHvR7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR/pUC92FDo::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR/pUC92FDo::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.BAr6LyvR/pUC92FDo::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::XcFYIJ6S(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::ZzYShoeV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::szlg9ZbY(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::9rYhGbc4(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::2LKvyVO8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::PE8H1jUs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::pCm1ZXhw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::sK6fYlNb(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::kyOYcYSd(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::b0p8IRYg(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::_RxtwqGB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::9t7_NSQN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::r9MzSjUp(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::E3lTzKqO(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::FBxnZ78C(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::lBzxXHeu(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::8Qq6D4k8(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::MKn3B1Ee()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::7QMkTBAn(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::cZyTj0BA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::S8KqCvNL(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::gz1vNVua(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::VbQr09v1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::GrfwtyHb(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::xIDLIjrv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::jA3k0xvr(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::wJv46rgD(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::SCrq7VSh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::B_yc_Bl7(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::gVEoVstO(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::zM9Kb23V()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::FgYImpLD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::Q738rv0R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::vqAl0dce(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::F8GO4tRz(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::Un8wifyb(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::6L9kAbsl(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::MfdU2bck(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::fFrbzQSd(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::rEdsERWX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::9QXexHDb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::mym4sIR8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::75UqIXAL(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::VdAaK_eI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::cjGojjCX(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::VKFiRmNi(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::nRJFg7cO(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::3ZBK7p9m()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::Q3AwvmmI(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::DS_l4CCo(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::xaEqQUFC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::nMDLhKKn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::2WIgKozu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::9m8wHP0a(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::y9r9N5rP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::nPUPCU_F(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::gf8GREbU(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::XkPTRh1s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::2e0uJdJc(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::PQVcFt7K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::Lgllgxse(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::PDclQ60L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::rInkl3W8(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::_6rTBQxj(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::1ivGdxO9(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::Cnvw7ClN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::n_StW_Hy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::kiMiR0YD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::IYoNmh31(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::4kc31X2u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::zk5CuZRY(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::23QRg9eb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::2YEUisYu(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::aKnYYjy4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::DOHf1SVI(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::nHBijfKC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::RqbSJZto(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::iXQAl4FO(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::zoExFxXN(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::c02q6sd9(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::GL8tyaYh(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::326Jk3wK(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::PvDayTE6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::XnMpdoWP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::5tA8kZfM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::ekKZXy2t()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::pGktlH5R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::ZKMbDLnG(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::v9JAvrJ2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::41MbzExH(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::T285FFn8(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::ZkiIRMB4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::xyHng_2B(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::TlFB7wGs(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ABConfigData::IeZ8kcvY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ABConfigData::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ABConfigData::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ABConfigData::_Yk97bqD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ABConfigData::UVLRxYxd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ABConfigData::ESurRsIg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ABConfigData::C5x54tDh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ABConfigData::AssignGroupIdsToVariables()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ABConfigData::EpeTcA0i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ABConfigData::af_sG_gT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::Gny9zeuh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::KpJOsFvQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::DdlTemYT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::UzDpk_e4(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::set_ParentGroupId(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::7OLyKd8f(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::get_ParentGId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.VariableData::dYaB09Af()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::WTmyj0bL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::oqVfgf1k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::LaJEWTsG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::CzKH7Hui(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::set_ParentGId(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::fXiyEEE_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::RHWA06G2(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::LV4YqIN8(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::BW__gm4y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::2h0hjUkW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::TwxOFtyb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::W8Og_PKi(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::_3sKg429(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::Bl5JU6is(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::tmQASJwO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::_QjlE_8F(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::P5O17Kpy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::tG35rvye()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::5grBts4B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::NjmoC4Qu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::1Bsdhh2U()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::LS5ntFW6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::Of67WRwx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::FOPp3HoH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::4PQRQ6gB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::ezldIy9s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::GetValues()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::nj51wKwD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.VariableData::iOC3hggi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::JQmADTEC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::KhJYru5N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::AxO7Pjkr(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::M4yyJtcm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::On914gwu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::WgKHj0Qa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::xuYnPOcU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::P8p5hYc2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::EZleiLFP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::76HkZqup()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::xIE6ZanZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::xyefkdu_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::QUD_aW7M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::ghSmypZh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::4qyViGiL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::fxhNc7hT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::Iu81dxzb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::get_ParentGroupId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::R9pczwE1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::0KnRmGcT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::Njl6TxFi(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::Mtbs4Xru()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::o2kX54fH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::hSGnLYuG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::qO67fvIq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::w6vqe5vB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::rprfaGbk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::hAlj9oua()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::m8nK9b0B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::5JPN_cBb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::jOjS_nSo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.VariableData::SW_6tT8n()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.VariableData::8_APicwI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::3iV49QpQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.VariableData::GetValue()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::xbm2lDuq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VariableData::dYuO4_aL(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.VariableData::2DOkEUJL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.ksUzu2g6::SPKP_xtQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.ksUzu2g6::ZQcAQl_u(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.ksUzu2g6::IgeRI1u6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ksUzu2g6::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ksUzu2g6::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.ksUzu2g6::ohrHYOik(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.ksUzu2g6::AawrBD1_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.ksUzu2g6::zfSQPeI1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.ksUzu2g6::2QktxYQ7(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.R_XLvsZ6::Z0FvTs5y(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] ZrZYFo6bYXYM71YyLSDK.R_XLvsZ6::EgyE5qEa(System.Byte[],System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] ZrZYFo6bYXYM71YyLSDK.R_XLvsZ6::ago7Xnss(System.Byte[],System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] ZrZYFo6bYXYM71YyLSDK.R_XLvsZ6::4XAxPLWY(System.Byte[],System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] ZrZYFo6bYXYM71YyLSDK.R_XLvsZ6::qAuo3mhY(System.Byte[],System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.R_XLvsZ6::yJxKOc2V(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.R_XLvsZ6::Zdr4Fu8L(System.Byte[],System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] ZrZYFo6bYXYM71YyLSDK.R_XLvsZ6::MHZ1JYdG(System.Byte[],System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] ZrZYFo6bYXYM71YyLSDK.R_XLvsZ6::rMMRsjOh(System.Byte[],System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] ZrZYFo6bYXYM71YyLSDK.R_XLvsZ6::eTxTLSna(System.Byte[],System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.l1CcKDXz::hvUehoML(System.Collections.Generic.Dictionary`2,System.String,System.Object&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.l1CcKDXz::QUAVRiOq(System.Collections.Generic.Dictionary`2,System.String,System.Object&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.l1CcKDXz::DSlldzD0(System.Collections.Generic.Dictionary`2,System.String,System.Object&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.l1CcKDXz::pxPZYg7O(System.Collections.Generic.Dictionary`2,System.String,System.Object&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI::ujNJ3cBi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.lQThqqVB::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.lQThqqVB::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BJKUwn1w::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BJKUwn1w::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.BJKUwn1w::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::_G6hEVUb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::Z_UgJMiy(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::EeW8g1Q_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::XxXhc2FE(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::LbUZL_sE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::LxzymJt4(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::4DKOmTD4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::yqrVwFTG(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::dKSTbk26(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::003b3lyW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::_ZmLhEbj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::mRtqZpY1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::_At2DTPh(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::E9f0CqQq(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::tvgINAOV(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::KfNrA1e9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::hYBItnSX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::vNtjiyij()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::oQI3Hzex()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::LrS9wiyH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::XfP3SkbJ(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::orY7vw_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::vqZ5taNz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::3IUn_MwU(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::pon9Pvg7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::7ixY8QNY(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::MWfkDV1M(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::r9qvZ7R9(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::tvKPcQ7M(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::dhCf30gU(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::RKkVgGlP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::YF5hyOXF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::SNSkARIy(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::W41NQ4R8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::0uafU0vo(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::ah3NiPag(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::ixHD2xRB(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::Cy1fez_Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::h_jbKydB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::Hw5OuLkV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::l5FNjqGc(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::AzuWXbhs(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::n_Qa_gUM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::d2BKt320(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::_i9hXQuc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::IdSy3atB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::AzonLrMq(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::cMoe5zt5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::8b7FliBi(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::z41g9onx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::vEKDCItX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::Tx6ygGMM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::whm4NFXK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::V6UZMFp5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::cCMhS0OW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::4839eWmB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::a2AHuesD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::8cDZcrWP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::49Ym2DhL(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::P9dcryEX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::eyh72T0M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::q1aCIfuk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::HzGETvgA(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::9uRJLZQV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::h7HPYgCs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::t9FcsP2U(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::Q2BPAoje(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::nVCSoB0l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::BI0nBOCi(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::6dEyCoFi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::59dt45tM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::UzOmLxkK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::kxrdJump(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::WCwcUtMt(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::nnzdY5lg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::OesJtQ5M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::dz6bjcEG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::oI3n73lm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::b0_kEjeC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::dyHCTzWA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::sociAh2L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::5FApcLCr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::9SUzGmpl(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::mrxnUVZJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::eYNyd9cP(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::F_D01gr4(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::YQYMlpfc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::Vl4gQlkA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::YcZvPFBH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::oRbPKHQj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::IXSRzpjT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::qYchgYd9(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::wBmNBxKa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::QXgGMmDk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::1H4_6Lf2(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::Dcyn_J96(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::nDUEFzF0(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::3Xw0QxEM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::G3dds9IQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::xm13X8IU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::bsNN7iRj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::TWXxU59X(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::e2vClEma(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::kZSssqnh(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::N09wJmdv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::senFhj6U(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::NHOWUjHM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::Ok_y7Hjx(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::pGkRm2Jd(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::NB4A52Bb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::vcyLAsoQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::8ASjYu3u(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::lbxWaEzP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::ztK3uAjm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::L13arR7K(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::gQSgplW9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::sy8sgo50(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::g675kEyG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::rs78r4Wh(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::AXzWJtJa(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::0HPA7VT9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::tTJglub5(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::XvxVd47i(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::iHhyMrvn(System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::6aB8Wjbm(System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::M8IaXB17(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::8ldQbSch(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::SF0mpD5F(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::2Rt7f13m(System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::q0z5Wy6w(System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::vQqJNCUX(System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::A4zwoND1(System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::2XQ6Lj3L(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::5nAZk4GP(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::uwcw0KX3(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::3CQhF81i(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::bsQX2XT_(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::_IlvSOhl(System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::6YlzxXt3(System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::v3H9FER4(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::cZCEjWuk(System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::IuGfhvVX(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::i7_2VVHv(System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::54ztCGZW(System.Boolean,System.Byte[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/HlAc_tJc::pmhWdRyQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/HlAc_tJc::Btwa0Zox(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/HlAc_tJc::EIkhaRKL(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/HlAc_tJc::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/HlAc_tJc::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/HlAc_tJc::BYRwibne(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::4axSD9nZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::oM2Yn55w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::HPoV5wBP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::xPKapCp3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::G9IaaCxi(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::zSAUYlWa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::3ptBvTzB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::M2l_lUJt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::dozLwY3d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::1TVwuQiy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::vyV6C_Ll()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::0864wSyB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::2rGvjkHi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::3zlks6ex()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::KXFTOQ_W()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::DRfDbTFs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::KqHewCSq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::gztH3MQ_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::5FRw_s2d(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::tpmc1xuO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::wHfNPSJq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::NKqUXjWN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::kYvIrnee(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::3karZB37(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::QIGtYWW6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::XK8761Hj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::BRzc2z8S(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::7abYvIxt(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::MA62iZFU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::iBwJ62uF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::gyqk8dcB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::QLyEtQJx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::gPvP3LPb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::O53qFvM6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::2VMDtUGI(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::lEVKXuvo(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::VxYnjC0R(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::wXIUNpq0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::8wPP7WjP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::czUJ51tH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::JxL5R5QS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::VliMch2G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::aEN9IOC9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::VR52DIO6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::ZobsKYtz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::WKKtn2X5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::0peg9gtT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::xCxy4q5Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::RZtEJlm9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::jRMnCt26()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::7SJL27cz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::zh9wM3jK(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::sKWwiS1X(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::7z8oysBA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::PjDRWRaf(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::b4Y8b758(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::TOPaUgbG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::EhzkJgnt(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::BdWZdIZJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::LyAkcHjQ(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::_foD7H60(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::LKJatTEy(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::opiP7Oib(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::SZAyep8Y(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::ZhMC05xQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::a639b9cG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::eZ6yimk9(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::AzVHSPan(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::9i24W89Y(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::J15vznZ3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::swTOXMdX(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::4puPFyoe(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::65d4bbZX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::m59OwWfv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::VwlMwak8(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::rETf3aZM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::WWJu0ldD(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::iYTdbJFh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::CTs8_em1(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::nfqad_Kq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::MIEMVmsn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::OBPjvRYe(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::sbxvElTn(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::ByI2VTQB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::gUcyWdGD(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::3ReSJGq0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::jUaF8v7v(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Il0hx9pF(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::eXmfbwdS(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::lNFwvgc_(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Rl6YCcWX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Tlo2DfTB(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::5gqyIHKZ(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Ab4QrSOW(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::SF9txCPr(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::RlW4OQlw(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::xzGUbtjY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::NLTLx9TS(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::fgp3hVd7(System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::choQjYje(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::4IwTUgmX(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::vVhRyNLg(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::vwhtFfIW(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::jP7Mzm5T(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::lExH1jMa(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::QDitdQDd(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Llg1fVVM(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::ZBtOf1wA(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::z8i7frQc(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::kI_TGZ72(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::s80eIBGm(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::C5uSPmtv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::iB02naic(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::7V2MLekF(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::f9e3Hrq6(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::zuKTxke6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::14oF2mK0(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Ny1KAFZU(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::_G0Uskio(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::xGzpuhav(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::lF0dzZTt(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::c2T7Z3Fi(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::4iJ1nZeI(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::YkifKrSs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::9FuPOCMw(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::hQ4n8sr6(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::JUjcsVnN(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::XPZqovaw(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::BI5q2FEU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::uPYyKqfK(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::g5hwgli_(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::JR3h9_kQ(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::1hPYkefC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::eJwZmtak(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::sFi_SAcI(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::aML5PVa1(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::5gcGIaPK(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::W6FzEP6y(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::R_l9UnnA(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::lVdZaovR(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::ABjB6aXE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::woHvmuI3(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::vJVtzh37()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::9uL6SMPr(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::j4EXdT6E(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::yYezjGvP(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::AWYjryX0(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::BHUQPYnW(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::qSzBI6TP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::KvC20Lbp(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::yFLw3Gh6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::DvOo6nhP(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::4UC6gznp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::_PqxXt_w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Tb6U0VF4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::KwLtwCFW(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::QYuW0mHw(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::WKA0x15Y(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::WP_OB9KR(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::mOjcTa8z(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::fUIZ8thj(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::eZgovSQ5(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::WYfYbgZl(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::3b_VChLk(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::yNFK2HUK(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::DkQDvqiW(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Ov03lD3p(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::BTtawTij()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::VuJUdbUq(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::UsFWVh6F(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::bGWmn7bY(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::IiTr0v2x()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::wOU7xiPa(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::a6bT16do(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::EE_AnIGw(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::DGKiMq6L(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::xET6g4DX(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Yi9MgHfg(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::oZRz2GDi(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::nZCYftI4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::W94SM70E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::MZ5fv09N(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::slIXLsGZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::HWljg546()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::QcllecPb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::blKDGC0J(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::vsdeUUqc(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::HM7_5Djm(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::JAIRgAHD(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::6bIGQTF7(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::wOBC0uWh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::4bSj9J4N(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::MRAroXgy(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::5m6OeF2K(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::qpECT4YH(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::kI3V7b7g(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::BkDsOSZ1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::gHltsSEx(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::KDYRhhU_(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::k47UPpx6(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::dsHtvjW5(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::lbtATSCp(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::vpWbFCKl(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::LPK5JoSl(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::SIDe_gg2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::rPXhewHT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::NKAAsj88(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::_R7Runma()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::tU3k72JF(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::9fG3wqjZ(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::7bC_cUiq(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::gatZq7jN(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::mcyX19Bb(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::DUTBzWt8(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::voBkKGQ5(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::dsJVPrf7(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::26Dspzg7(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::VIio4lJn(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::y58efUXH(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::H2r49OCq(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::XeRTAeml(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::hS0pqLVK(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::kqIPPi2o(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::reQwRNPh(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Bt5uoR3g(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::TpGJQv9l(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::frgWJWzm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::BdOfUk1C(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::W0bXjgpa(System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::bWefyvKy(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::W0lelu1r(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::YfBHoaO7(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::dwz3o_w9(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::LVNguZ6Z(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::23v9LPmd(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::k4kU8cvJ(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::LqcreBd6(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::pCPMAsnj(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::TPGUVY4V(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::ujSEjl_E(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Bc6VrVqa(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::oR5YuhOk(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::YN7XmbrD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::woQp5nMb(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::dcAcUNEw(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::82U5Iyhx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::82cIKIXF(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::IgYJbjds(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::B1RBtbx8(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::9k7zor0m(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Lhp9Dx27(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::uwkusGYj(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::IGX9ZZgj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::LuFkPep6(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Bm5ZuSG6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::D49Y0S39(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::z6fPOpGa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::iuytYj8x(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::qptPgBBz(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::c8SeFivj(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::1eD1FDz5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::xgMytpmY(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::1h7it08T(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::SZcgRZvE(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::qdh0TyHW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::cKoAV753()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::31qFeKRk(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::NsOMIkvh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::vOUE1TtB(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::zGbuOjTZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::GFBNFPqB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::03rQ1oJQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::698hE7pU(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::MkRgQown(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::aTvO_PzV(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Iqn3_X7P(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::L7Ey9QIi(System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::5Hmwt5wE(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::AAP7OuRT(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::_hKxMtsw(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::8_UTt00E(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::bN6x3bgn(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::ONVDZfbp(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::CIRKiIU1(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::yont7wSm(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::lZYR2tOo(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::5awD78fy(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::GHps9aD7(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::NduleMhm(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::fKHTWCHN(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::zeXsd5fP(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::DHimVTT1(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::_MKzwZrp(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::XXEOxCcD(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::BF6OgOvx(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::lqFt_rsK(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Xbx4yJTB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::VMgT4Xkw(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::wkpj4FFb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::CnRmxVTn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::hFL_AcR9(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::AYeCtM58(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::TbKBbAZ7(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::awgVQnkc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::u22B1DGV(System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::9mEKhjye()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::zWIGyOct(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::AzaII_Hn(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::ZxuTIuVc(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::kXY0YycH(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::9lI1k_aG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::OJfKNJvL(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::tb2pzvUO(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::j7al9ToV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::3XFYouBD(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::xctpMT3m(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::YJAggmjG(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::RpHo5Sqp(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::pGbd2wfG(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::LiJMJW_M(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::kA_n7nKX(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::NE6DjOIP(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::0nuhZrfe(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::BdCr4zpS(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::seKqiF9O(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::r96tTeop(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::0oMaNswl(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Nf6stIns()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::ttUu141x(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::YLBczOt5(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::qyH3G2Kh(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::mqoyLXbf(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::T0ydA5T9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::sXIgCjO7(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::AHZrs60M(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::eMAKXG4C(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::3P8Jhyeb(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::NZ83IRuH(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::Q0SljcBB(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::dGf2U7gT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::ukWe6vn3(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::fYdx7Nsj(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::mFF8iroZ(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::8ek5XnMi(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::hHN51QlD(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::oAfugCB_(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::TRXaqKRq(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::7YL3O8qh(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::BMSvenbR(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::rtgiEPYG(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::s2PlN7iA(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::5L_dxV66(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::3qdbct2x(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::TrKdEPdu(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::TsdMKOvy(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::R9v7ZYdY(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::mFeX268w(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::KlmGLw3I(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::tz8ubkP3(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::84Mxie38(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::O5Aw4Yy3(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::05v2Ghkq(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::5PLMp1IC(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::eZVA_0ou()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::HNKvKHK8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::6ECEg7fj(System.Action`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl::bqnnQRjb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::evT85Fi3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::krkB1U3u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::vST5UEx_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::get_Channels()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::get_MustAfCallback()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::X_4WMPid(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::tT3ezNdz(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::rgrJINha(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::DipzpGZj(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::DR7IcXuZ(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::nUqbciXp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::6upzVrst(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::uCNdZSTP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::W3nybGed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::Uoz4ZE3O(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::Qpk10Shi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::TuvNxGov(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::iIX0eEd3(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::9xWrHHWm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::Rq92T_xQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::J5BpOhpD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::amcEhAyL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::SAvNoEVH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::npd24Rfw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::FFZvQPsN(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::yn_7BouV(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::dAxmfiwr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::DKCo3v4o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::kpsg_goQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::2maWkl1q(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::fLvFEIjE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::fO03IsSp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::g1h8VW0z(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::V05VTqhx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::SYOIIJX6(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::HiS3ukPs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::VDOLY9LL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::ha2JK3tZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::set_MeditationAutoInit(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::set_Channels(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::LZGMDWgh(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::S_kWPp2B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::5IWoR4mv(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::BN0erPw4(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::gBBT1zXO(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::CZiA7jcl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::SAXG9E6I(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::Wyek7LMA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::vaPKCRqi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::get_MeditationAutoInit()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::LAugrFAD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::FaeCyTmi(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::_hEpfkkC(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::xVu9WhMJ(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::xa2Nuc3F(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::H_6riVcS(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::wJXy2Cem()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::Ozio1K74()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::B1QJgyC6(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::D3cTSGjR(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::set_MustAfCallback(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::jQkw0LIH(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::pCClB3Dl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::FjAKFASE(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::o_XkgmPC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::XqV3nP_Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::Ldwp5Yew()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::wHM8hWg7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::FsEsZxTK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::iGPpSyy4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::3ZmYga5M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::Pav61s04()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.e_TmMJCH::lz9pDGht(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.e_TmMJCH::I7O0XsKZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.e_TmMJCH::K794uF5b(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.e_TmMJCH::_JdTYzQV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.e_TmMJCH::L0rc0_RM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::MtvMdjA3(System.String,System.Collections.Generic.Dictionary`2&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::mqWiUrvc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::TryGetNormalizedAdData(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.AdTypeData&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::8VGKt8ig()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::LLdrjTk1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::RAeXWcjd(System.String,System.Collections.Generic.Dictionary`2&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::jEsgAkii()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::u4WwM83o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::IV8mXFIO(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.AdTypeData&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::DOb4NgEG(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.AdTypeData&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::3WvKu5yo(System.String,System.Collections.Generic.Dictionary`2&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::D4XcX8oZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::ql5_EI3z(System.String,System.Collections.Generic.Dictionary`2&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::cmdTsO3f()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::mcAxTX9w(System.String,System.Collections.Generic.Dictionary`2&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::Xl5dw1bU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::b9_qXM9F(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.AdTypeData&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::KIBU9tD6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::5kJ1nrAn(System.String,System.Collections.Generic.Dictionary`2&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::Se6m5iD1(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.AdTypeData&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::WC1yd5Qb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::InitNormalizedMap()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::xxasFfu8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::cdFiJkjq(System.String,System.Collections.Generic.Dictionary`2&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::XLnDWp5G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::8KDQ_J6I()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::C7SikNbz(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.AdTypeData&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::s3DhVhKL(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.AdTypeData&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::3xxTOzwY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::1YJ2h2dA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::Gn5asYMA(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.AdTypeData&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::TryGetNormalizedSource(System.String,System.Collections.Generic.Dictionary`2&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::WVuxAvCK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.AdSourceData::GDjm5PpZ(System.String,System.Collections.Generic.Dictionary`2&)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdSourceData::G5GBf7my()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::0SpTub85()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::gPA35TF4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::BlYaaG0U()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::6J3ff7Hj(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::M4_0N6kP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::YLPsRfO0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::7vJZSlCB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::set_Interstitial(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::gbnbO3_j(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::pdeXfH11()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::_mqC7TAW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::Lkfv3Gn7(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::JdQUKWlz(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::NQoworQn(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::Fo6zu5th()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::p7v1pexp(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::NwCGWPMm(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::9VJZ7Qgs(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::6QfDFWBD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::get_Reward()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::kAZxlYeY(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::hdMWOxRY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::Tn58HcXZ(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::MujKrrot()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::LEPk1SC2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::pwbscUa_(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::JirUhmzE(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::fPKvizeq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::V3ZzdKCf(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::soMJPGdV(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::00bSoCp1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::ecwTnDnd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::KuSzqdpp(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::CmSYD60z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::set_Reward(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::JY2ZgKVO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::nA5TkcbO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::EHoYKFpG(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::quhmDIoL(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::2YmLIuPY(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::kWJtQ6aL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::fKNkmqMs(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::qItrxakW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::fcDema5c(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::wFtZWjEL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::_Gd4NGeh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.AdTypeData::KCIeJxf0(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.AdTypeData::get_Interstitial()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AdSourceData ZrZYFo6bYXYM71YyLSDK.LEmSzWte::FloWe4l_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.LEmSzWte::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.LEmSzWte::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AdSourceData ZrZYFo6bYXYM71YyLSDK.LEmSzWte::juZB7PGd(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AdSourceData ZrZYFo6bYXYM71YyLSDK.LEmSzWte::I9MDTNNX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AdSourceData ZrZYFo6bYXYM71YyLSDK.LEmSzWte::xJLBYXA_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AdSourceData ZrZYFo6bYXYM71YyLSDK.LEmSzWte::3YWGYnBY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AdSourceData ZrZYFo6bYXYM71YyLSDK.LEmSzWte::FqcHVjSr(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AdSourceData ZrZYFo6bYXYM71YyLSDK.LEmSzWte::K767PUui(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AdSourceData ZrZYFo6bYXYM71YyLSDK.LEmSzWte::vXH9ZiBC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.AdSourceData ZrZYFo6bYXYM71YyLSDK.LEmSzWte::Vnq9BWHY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::drbbd940(System.Char)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::rE6sXAkX(System.Char)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::arL_hamQ(System.Char)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::8sSnYxrJ(System.Char)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::BA4osZy9(System.Char)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::fCriOzQS(System.Char)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::hXcHRvtT(System.Char)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::_UNwZHet(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::jLqPUhrk(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::_fihFkQ4(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::8ApGFuzj(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::x1n38yuB(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::pvRNIP0A(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::cUyZsjau(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::GbhnrQoh(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::Y2gDFC1R(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::ntFQG3Zh(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::3LC7gcUY(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::9rlbW0Fl(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::txzScVgh(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::XjLUwmEy(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::lpMJzEdz(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::tskVLIVH(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::1jr8Hbnd(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::RpduSY0x(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::fKlXcwau(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::cfR8lEft(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::ESrD21xs(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::gJTZ0oIx(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::AOkISCgM(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::6lq56nno(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::8hOfF3KN(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::uLDz6gXt(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::u3_aDu_1(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::JU1wOWdn(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::PSrVXI7o(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::tV_m2V5r(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::oYuq1NXB(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::wPrI8X5s(ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI ZrZYFo6bYXYM71YyLSDK.eVei42W9::fyIVKe5Y(System.Collections.Generic.List`1,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::VSa54TzF(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::BYTTEgyb(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::MWEK_DtQ(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::ciP4kdQ7(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::MMpzp560(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9::xSCe4af3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::45a73o8Q(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::ZUQbxO_Q(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::DSLYU2QQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::WlvAlWMt(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::72OdLbKB(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::UAc8zfp4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::MF1rsNX0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::3JnvkDz3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9::_bO9nMfK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI ZrZYFo6bYXYM71YyLSDK.eVei42W9::WeTMJNju(System.Collections.Generic.List`1,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::hGCe3086()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::7IFZcBHt(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::9uFEfuWP(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::oU2Zrsn4(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9::HOf9a0gA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::0hExdc_m(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9 ZrZYFo6bYXYM71YyLSDK.eVei42W9::I55zX5gi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::9zXmhSs0(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::4sg_r5eO(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9 ZrZYFo6bYXYM71YyLSDK.eVei42W9::mTyZJYQe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::vRxuaGnG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::BTIOyASM(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::4XVqvHnt(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::jbhwogq6(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::8VPH9kBB(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::iYKFx86j()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9 ZrZYFo6bYXYM71YyLSDK.eVei42W9::ivvCyrXO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::U1vJd6Y6(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::mpghn0rN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::fyQqrLCd(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI ZrZYFo6bYXYM71YyLSDK.eVei42W9::fEVvaGQ_(System.Collections.Generic.List`1,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::_i1uQloU(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::A5VJePPG(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::QYROEm6p(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::NI9nutRw(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::H25TjJWl(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9::tlj7MZHB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::IdyfRG0J(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::fTes5qcS(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::fzU6B4qk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::HhtDSLpu(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::GTILT7pf(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::RJXXgU_e(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::BznLjhoO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::ggA5BNZa(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::B9_FeK9F(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::ItqUWKI9(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::trC1tVTM(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::HOhxpO0z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI ZrZYFo6bYXYM71YyLSDK.eVei42W9::lzpTMdXy(System.Collections.Generic.List`1,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::XRYfna9Y(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::6lWsB12r()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::KRwpw95g(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::PcVUJ5CC(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::Re4uJ3wF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::fOf0Wyd8(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9 ZrZYFo6bYXYM71YyLSDK.eVei42W9::E7zQfFvu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9 ZrZYFo6bYXYM71YyLSDK.eVei42W9::lraFqQ52()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::FhZ6_aIQ(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::RqN3UrUX(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI ZrZYFo6bYXYM71YyLSDK.eVei42W9::oaUy_TQe(System.Collections.Generic.List`1,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::qu8qnAMn(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::RuS3FRcZ(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9 ZrZYFo6bYXYM71YyLSDK.eVei42W9::UvTf_3n9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::sfvK8Zgk(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::cA8mADVd(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::dLgJUT_o(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::BaEvjVso(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI ZrZYFo6bYXYM71YyLSDK.eVei42W9::q0fR0shk(System.Collections.Generic.List`1,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9 ZrZYFo6bYXYM71YyLSDK.eVei42W9::6fX_DMgS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::wllqzqOJ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9::kWRUKXh9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9::2Xti4dLG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::DuWbPFNw(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::QIQHE0Y3(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9::mJ2njrWs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::AFklZSKz(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9 ZrZYFo6bYXYM71YyLSDK.eVei42W9::xB64w2CK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9 ZrZYFo6bYXYM71YyLSDK.eVei42W9::lXaZW9L5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::4g3z2r8b(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI ZrZYFo6bYXYM71YyLSDK.eVei42W9::7Kh9K0BL(System.Collections.Generic.List`1,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI ZrZYFo6bYXYM71YyLSDK.eVei42W9::9WMgBxo3(System.Collections.Generic.List`1,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9::Y8threec()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::7dnseoCI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::qMSWPrg1(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::UTY9lKaA(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9::eJxZkRnd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::glY_ynfs(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::jb5bvl19(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI ZrZYFo6bYXYM71YyLSDK.eVei42W9::3FZvax7n(System.Collections.Generic.List`1,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::6mLLyQsH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9::Y2toFYvw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::FPcuwbGs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::mFRDKecP(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::bRyJ5X7B(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::BxeIMTkj(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::nGsXujfY(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::4wMjOoPI(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::XZHTJe57(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::Zx0lTQvg(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::3tBLJwHb(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::B2nI61ht(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::Qxnyb_DU(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::_aQAnV4k(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::7iEcAvvp(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::magTs8ra(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::xhzEogYk(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::NfQzFzw0(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI ZrZYFo6bYXYM71YyLSDK.eVei42W9::UoKc4XC8(System.Collections.Generic.List`1,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.eVei42W9::DqZCkOB1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::IbcQAWY8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.eVei42W9::Vg3HmWnq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CW6CQ9FV::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.CW6CQ9FV::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CW6CQ9FV::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CW6CQ9FV::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CW6CQ9FV::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.CW6CQ9FV::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.CW6CQ9FV::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.CW6CQ9FV::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZFYpRU1D::DVB3Dh7q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VUiiRBBT::ixE5IPG6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VUiiRBBT::6gM7RutG(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.VUiiRBBT::d0O4zVwA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4nXCdYAT::peAN16oS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4nXCdYAT::BjZgiLHz(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.4nXCdYAT::iID1G6CA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Krvjevic::4kc31X2u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Krvjevic::F8GO4tRz(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Krvjevic::FBxnZ78C(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS/BOTbggEV::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS/BOTbggEV::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.7v5hlFcS/BOTbggEV::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::uQIaIKik(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::feoZHUcw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::7SZtmIvp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::Vr3qMGiM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::QxAvYZax(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::pGSuyCGQ(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::7pi45K77()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::TzD_yblY(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::xhiXQ2Wp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::OnLoadFailed(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::OER9SMzi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::OnShow()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::Z3ynxWmF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::d0O4zVwA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::rDpGhbZo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::KP8rmuU6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::fvUxwhWY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::OnClick()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::AuXC5uSN(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::IfUNfzTm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::tfJm4qyO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::WtV9FNU9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::G5GcVKTk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::Xkkblv16(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::eQ1P1nm9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::6mvdhe8T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::8vf5A5RD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::5wMszcDL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::1PnOTwGq(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::CCafyI46(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::kypAay9r()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::LgzzBtvV(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::fPLWKO26()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::qaMyGm2n()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::ozshfQQm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::qWYL4nQ4(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::bjw7XLAE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::Z_GIqurm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::OnShowFailed(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::6gM7RutG(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::IZN_ynFV(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::0gcEldNE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::te05cure(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::wkt4fOm4(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::OnReward()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::kgBbw1nI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::tEZpxP1S(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::Z3CkIanU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::hdtUyZw3(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::IK7dNWDl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::21qqXlnB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::nfN51zpo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::HDOWKTz1(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::99rDYfiI(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::PFjjSTxz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::ECgjeccU(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::iwnrnu14()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::K8Wx8L9L(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::o8sxa29f()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::ixE5IPG6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::h6pu4gi0(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::TaKVFay_(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::FhjB8RCV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::Bjt4InTS(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::srFsYbG1(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::jOekhQWJ(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::mrb9GKZM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::dxA8OUKA(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::EgQxRMrJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::22HzPiq5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::olGoZgOi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::uctYhAnC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::OLspAmCO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::ZOvZ3tww(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::7OrzhcJW(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::wKKiE3K5(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::pvtSYlZq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::9UDTd0Iq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::cnAaa2Ok()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::67XANAxu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::QHYFxvOl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::YsfQQ99R(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::cqHtrRa_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::GGZVGiUp(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::9lKQhzvN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::A5_7D4BI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::DSTQ2Rwx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::zSJoWwHo(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::si_vlhwA(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::1yjbumh5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::m6Ar5oes()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::coI2hw9V()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::OnClosed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::zmcoxERb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::ZZaGbtnn(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::CvCUk0Zb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::rTTYBy06(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::xY3D9y6W(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::o5MZcT4T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::OsIiYuGy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::0wAv6vp5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::xD3s3iRE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::IvKWB5Jn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::OnLoaded(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::5s_6naik()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::Lw7lNTcx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::ShKtK27S(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::jCrLertu(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::a1zlRqbV(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::m8bISWbM(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::tAptLxPp(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::OjWXbS0U(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::h1ujjALP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::Tox8mx9I(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::RmLSMvWS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::cpxkTl5e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::LhGLO9dh(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::zPCAN0De()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::kMVtz1ej(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::1DqaTkai(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::j583uCrl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::5v9YjVl8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::DXLKkico(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::fn61md0U(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::WUv7TZxO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::QfYZYHYr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::QPOGz2g_(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::ZC2AYZLy(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::H2blC0D9(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::qg2ptAQ9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::hRrP_zSC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::GpB_972P(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::eCOdguu9(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::R1BqhrmH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::Vcp4NZwx(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::Urcll_g_(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::zLDS0sWi(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::wcKa24IM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::gDPwsRAe(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::ask4wo_O(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::dH3nX4hB(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::CvTnQv8I(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::7nEjn93D(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::IQuIrvfV(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::dj77vMpY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::LgAsTUP3(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::MVY9hl7D(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::J_V6TJPb(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::bXoySFV7(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::5nZNbq3T(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::0UbJl1XZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::Jtzbd0UA(ZrZYFo6bYXYM71YyLSDK.Krvjevic,ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::7tWYD_It(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::85x3apEs(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::xjacQ8KR(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::E4yUnwDn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::9G5d1tqG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::4CGiIFSK(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::IjmK086u(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::43OuEhuA(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::RWRbM1ym(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::FleCq6Eg(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::QLUIqVQ3(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::fFThsqAo(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::bBrxfvxr(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::J8FU3Ost(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::8EO0kNx2(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::KDSKIkcn(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::O4jg14Bd(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::7KbzHyCd(ZrZYFo6bYXYM71YyLSDK.Krvjevic,ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::F6BNEyTV(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::romPLnwa(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::Ztsx7hnN(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::oEfFcSPS(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::Gki1RPDv(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::PkMSoF9z(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::HqUnwxaw(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::H1kaCGk6(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::8Ok9dSCy(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::BBggn4pI(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::eP8v_7cW(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::gpuw7Ck9(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::ij1itFHC(ZrZYFo6bYXYM71YyLSDK.Krvjevic,ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::l2WkgkBp(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::1vaJ7cyN(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::R8r4eNFZ(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::HWbNK23L(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::Rwp3yHp_(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::ptH6n5ZR(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::mqYBfe0U(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::Z7ZwcsLC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::2ZUfY6Ae(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::QkAl1gUP(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::1ymwHP7g(ZrZYFo6bYXYM71YyLSDK.Krvjevic,ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::2cSCgNF4(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::iadmlG5s(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::QEiWYCeC(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::j2cMuwey(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::QNKJZw0F(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::3AneVtlG(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::dV5fAXDq(ZrZYFo6bYXYM71YyLSDK.Krvjevic,ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::Mx0HR9lb(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::zFdRW3UK(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::S6QB6v8w(ZrZYFo6bYXYM71YyLSDK.Krvjevic,ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::AqywoSD3(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::FjsED0IN(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::RmXjgy46(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::D2U8IfrM(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::yEhYHi0U(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT,ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::thGnAbOs(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::fMnrRqyh(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::13ZMqeLx(ZrZYFo6bYXYM71YyLSDK.Krvjevic)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::JYA3qopX(ZrZYFo6bYXYM71YyLSDK.VUiiRBBT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::OwuMcbZW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/m9qJUCM9::6REvq1A4(System.Boolean,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/m9qJUCM9::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/m9qJUCM9::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/m9qJUCM9::UQ0KGvST(System.Boolean,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/JKPN6hMh::16RMSsx_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/JKPN6hMh::kdcqXz_z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/JKPN6hMh::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/JKPN6hMh::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/JKPN6hMh::IJ2SD9gE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/XowJdPCC::7Q125SrF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/XowJdPCC::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/XowJdPCC::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/KgZyWip3::U7zLrNAE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/KgZyWip3::2jb0Qb5X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/KgZyWip3::yooZdEhE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/KgZyWip3::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/KgZyWip3::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/AG7jbNLd::YDm4Sgqp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/AG7jbNLd::IaymhUNV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/AG7jbNLd::fx7N1mYw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/AG7jbNLd::Wug5tl0p()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/AG7jbNLd::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/AG7jbNLd::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/AG7jbNLd::oZjSCCQ_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::QquGiQLC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::Jtx0pYzo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::OzwtaR4l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::vhsBJkyE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::gkOTmcpG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::zzNbA3aB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::pRg8gw_A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::al0qPMI5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::PGwnK7sW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::qCJr8CIJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::tsVX3Ccf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::D4OdambE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::X1ye67GV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::HYpU_cvY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::CNDeMax7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::uvmfvmbE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::mQ9iHq9A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::pA3LzRXc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::s3XFDtk7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::pq_UnSzc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::Xm25BGpo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::A39KoC0b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::Uhm6T2XH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::BxtdOFDG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::FsnnUPPR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::jLRkgogg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::b4EtAX9t()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::ZV3qQ7gN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::izxEn_pj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::NkvLET1z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::lnwKruIO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::FwUyc7lT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::gdFgDCw0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::3NmNRRKH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::MiV3GkJ0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::WXh96Noc(ZrZYFo6bYXYM71YyLSDK.AdSourceData,System.Action`2,System.Collections.Generic.List`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::JnaQItr8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::l_YWzsFG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::NmfTZtlR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::4_ty0RrZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::P5jNYVrj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::_bKa_djM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::vTNVUNZW(ZrZYFo6bYXYM71YyLSDK.AdSourceData,System.Action`2,System.Collections.Generic.List`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::NOVX9PLD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::sJQ0KMmU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::6hMiVXkJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::EoYujxGD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::WVd0XSg_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::5d5FcOhs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::4ZpdJ619(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::3Vcjq8ZM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::ppp4lhFj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::stMFEqq1(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::l4GrJRCS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::6fMvyOy3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6::jylDlnS6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::xIKO4MqB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::sY7uhWL_(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::On_OkWXi(System.Action`2,System.Collections.Generic.List`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6::GVfvjnlf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::N6fp36hQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::b1ayl874()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::39FCLJ6N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::GcllbDf9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::FDE5ljDV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::RObxRdaN(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::dZd6h3qa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::9YtI5mwW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::PadQ_i5k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::wy5GR_P8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::T3KcCatG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::G0pI9zaE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::IzyokKsy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::lepeSd9W()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::dbxVDr2O()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::CqCESHnM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::6PNeM0o_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::D0rNTD9Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::1ifC8EaS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::eHR30NHQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::O8OUzs7k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::2XbjI5ZR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::9_rx7yTo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::x2mCCCrv(System.Action`2,System.Collections.Generic.List`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::mv06_k0_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::j3yJGrXh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::6GQ9izIm(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::ivGBU78q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::szpWvJie(System.Action`2,System.Collections.Generic.List`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::6TFJz8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::AWMNGUG8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::4P7i9x3y(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::ROaX7M5T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::5AbR6NWN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::w8BoeNYL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::QQu6S4gM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::dLv5alCO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::RRDhynD5(ZrZYFo6bYXYM71YyLSDK.AdSourceData,System.Action`2,System.Collections.Generic.List`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::WifGzZza(ZrZYFo6bYXYM71YyLSDK.AdSourceData,System.Action`2,System.Collections.Generic.List`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::AWzPEUPc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::Ba0qqZNP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::gFMk3Zb9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::M2ck1h8p()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::dt4mu_gn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::eaUgbOm1(System.Action`2,System.Collections.Generic.List`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::UxtqeubY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::9EQ03LT8(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::3CUOevNu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::8k2eY2LQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::V9rkvGQj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::jgrWZtCR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::ADvWhlFM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::He5QFWjg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6::jfiY7sZv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::FlVnWU3c()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::ucGhruwi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::UF17WdQS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::r662RoNb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::FZpq8OmG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6::7nRhBsaq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::6EVa8Ush()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::4lB8AtMq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::QVEA5kfn(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::qVAiSjR7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::LtUanGW0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::jMCJWO8r()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6::mwB6Ui9P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::8UnuKWo6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::QeR5Iqbm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6::cra9YT5b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::WijV2RGF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::fHL2Zm_V(ZrZYFo6bYXYM71YyLSDK.AdSourceData,System.Action`2,System.Collections.Generic.List`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UON1FKb6::1AkbFaqf(System.Action`2,System.Collections.Generic.List`1>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UON1FKb6::eYBBUg5j()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x/5fncJy2p::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x/5fncJy2p::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x/5fncJy2p::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::6Q6DtGIr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::EBHhYvPa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::ExXRRHoQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::2w5FfE3p(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::7EF9ei3m()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::ju8P37Kc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::hM8bV2B6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::sAKdFgGJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::RHOCOrKG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::u8dTLVuw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::uxpZpYKE(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::DWYnNryX(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::GXvImQZD(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::HigdexGJ(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::rHkBxQaj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::MtbYtwB8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::3M0OAXtN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::SKQBcAJ8(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::pASNDWBy(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::MTxUA1_g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::fl293Z12()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::deUfjuFO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::Nk0co48M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::TncN9wb7(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::Rk6ctOOZ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::CyOLaQAY(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::O5j2YRBt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::SX2HKjVJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::yXtCLdMy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::Fuz9vDQW(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::3mrkSXih()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::pUDRFvVd(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::S9XZP1a_(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::hObvdSby()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::1r9G_inj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::8y0OHkFR(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::l5zoRwuO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::8YG1Yw0B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::ItXaJqdA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::_PUt2Wyo(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::KBruqW0m(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::7DJkF29A(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::VJJWa0fX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::Dj3tIVmW(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::MylYGXwg(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::StfE9uYA(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::r0P_nuuL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::nJP7axDt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::PPB1AmJ6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::svMKHET9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::rA47adhO(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::x7scIiwD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::UJW8y0DZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::jJD1FKW4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::bfdfIkw3(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::gyQCDP7x(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::555WPpQa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::F9s4SaSC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::Ef1W8IaC(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::F8GO4tRz(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::9IlDpdNy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::7Ad7Rb2u(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::OnLoaded(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::IEjKLITp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::Qkpi9ayh(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::COxfRGBy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::x4JrWj6v(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::uwFpurf4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::XSvZEMvK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::s0vQeeQl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::1o_mmknb(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::7xmbn6Ge()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::wJAW_4v7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::rXpQ40AM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::C_Mry3Nq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::jPW3jRJ5(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::lAreoLhg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::ckGENfEe(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::aAtwqmcr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::NL3WVFiD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::u9Z_NPSd(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::JzwJbYnT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::D5AcyyHK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::mLRz_jwM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::_B3K_sRL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::0v727g9g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::zKsoeAlr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::xmIx6_D_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::Bw3G2BoA(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::igNxaLak()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::bnx_1SuV(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::5N5TntKz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::9bFsAjWB(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::DCtQQIZL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::NOgeFCAm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::JrWqklwP(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::KF2F74vS(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::WP37eKsO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::uKdfV6_R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::pfv1dxad()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::hdNiyNkp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::uKdpTOQ4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::WaSSfogx(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::tikJgCCg(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::p07hM6eC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::Ezwylyyd(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::9lt1VHTE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::7GVh3VzQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::NU2PCxeP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::IMw8dUST()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::SxQSahME()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::rDM9UWP5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::J84pDsRT(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::lGuD4MfU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::KOUMly0f()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::YHw_I3G5(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::f6mZcK1d(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::FnCDWhtR(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::FUlB0fmC(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::ahh7_PxA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::MmIR2Rcz(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::urkPfFRW(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::OnReward()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::2hdMkn1x(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::4iVpno1l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::MaKTTkwX(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::KM8AtG_w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::x895WxDa(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::vEsWSGrX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::grivJIGr(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::RX0elRa_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::nygXOu5g(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::r44EhjhI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::M6M4W704()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::OnShow()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::K8mvxvFD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::usyBSUgz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::0jtfBlZR(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::OnShowFailed(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::BeTDg_j8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::OnClosed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::7JxagqGV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::QfyA5jk6(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::5WcL8Ys5(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::PMaYwE3t(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::60BXhJNV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::Fe1Auk50(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::256EH4Lc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::nX3x1o3P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::wZ3PdIAc(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::OnClick()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::_evxztIL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::KYz0HaQr(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::4kc31X2u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::FBxnZ78C(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::eUxla3xn(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::f4f_3ZqC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::UhyfpxMZ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::kPsgmm_m()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::Ot_Pf6uO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::23sIOPkf(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::IKNSibU9(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::ox4c2T4y(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::p0Z5YC6e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::YUUQafvs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::3MgpHqGh(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::fDhh5OGY(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::yxrYs2Zx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::kv163Hvp(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::HHbfdFJ5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::sI8CjUGA(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::TjyxZJJ1(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::OnLoadFailed(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::mLBi6QdQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::6eOueFjL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::PyhshM3n(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::9pt8hBH8(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::Qv_qJPIQ(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::63n7b3HV(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::w6qaNa0k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::pnIV4VbP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::FnmEpAoA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::QUFva678(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::mVNvDzV7(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::Uf5k1Xhi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::wcWvOkSK(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::XGQMe6iK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk/Limsf2gb::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk/Limsf2gb::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk/Limsf2gb::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::fryMJZAr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::gkkDx9Rf(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::p_y7t0lq(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Mi2HdO7T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::YtE3rygH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.JeQ601zk::CVNJBazL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::GFbiV8T9(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::cVIyXkbJ(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::1Gi2e1j4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::98oKx3SJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::79FQZ00j(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::D6ZyL8ce(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::rFjorujz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JeQ601zk::zRwsdzPn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::CIZbxACQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::GGlM9jrj(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::H930EbS2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::OOOEhVA1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::kLJUbRCj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::OnLoadFailed(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::XKikFs_A(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::5PRDDwtr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::okLrtx7M(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::c1uTSIn7(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::_KCv7olD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::KfMZlf69()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::hvYdjFQx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::VfWBkEbY(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.JeQ601zk::W7kH86Na()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Sa5KdfbS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Ip26dX2G(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::bVtEnr35()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Yo1bdf44(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::6gfGUgeW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::PSH7T2Qf(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::uCggbY3m(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::8rKq0i0B(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::HDZAfNqR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.JeQ601zk::CdrwGOvw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::OnShow()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JeQ601zk::o6vPQK8u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::PDrVMZKU(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::d6WSGcRu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Mqwpap4y(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::bVVC47iU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::8sxofXoW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::LjC1sZrx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Q62VereW(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::M4RgkRsX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::rSWhcbZV(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::8hcgbfnE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::OnLoaded(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::uz8f73h8(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::d78C_0RS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::zC9uFxh_(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::icn98WkL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::3WZ7Lo01(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::EIQwYdp6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::rP5tOjAc(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::1MHhFqrj(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::GYHV_bDR(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::OF1u85Eg(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::h1MIQpdX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::uvrpHoY8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::IgLlgVfj(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::ltuC1qxN(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::w38jEj7Q(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::J2tk4Vuu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::BQ6SrKCM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::FzuM4bft()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::P7lxi66_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::UTrF_61J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JeQ601zk::1zfI4scF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::OnClosed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.JeQ601zk::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::IQfjnRn5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::7cElSZzP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::wrB5kUBk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::oqw3c1Cf(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.JeQ601zk::L080HWtW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::MOlIWTnS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::OnShowFailed(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::uwKUq3sh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::9lk6V1Ex(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::3gWSP_cU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::JTmUBzyf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::XJl3t5kV(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::ixE5IPG6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::d0O4zVwA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::3ipFQA3g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::QMQZNqrt(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::j6LWCGLu(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::2XCLmVOr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::atpJz1_s(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JeQ601zk::whYf_QcS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::uovQj7Ka()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::_gq57iW7(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::dY9cpx8n()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::LoA_VRfS(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::AfmBEsix(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::RAcWuScO(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::fLVz33Xd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::CzwVOX3Z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::pKqZyir1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::HbsMolbW(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::zM8YgQG1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::XAut3552(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::wGSX5Ogx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::9BDfYJZZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Zu4NRqRo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JeQ601zk::dWTuapbl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Fl780iyI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.JeQ601zk::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::SOFrNiqj(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::pS6Nx2Mp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::zb6IX98O()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::aB9xH6MT(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::OFCYfFAF(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Qwl7bG9Q(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::myCvV680()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Dn3fuguy(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::PxoSaQQs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::HkjiNVHM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::936OHGko()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::7aTKJKQ3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::OnClick()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::dq7oWU0j()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::95yO9p8k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::8f_mtPMn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::v1eGlgiP(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::LPD2l5NY(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::qxULE7lX(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::bifXSAMz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Qs8Gjc30(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::l4bwResJ(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::2HaCdr0p()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::hUrtMhha()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::DttvNGl8(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::UlNXYlxw(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Ddmfintj(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::YqPhvPjr(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::hy4kKJyu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::9zn6msrX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::1TpgpP2k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::YbTX6vkr(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::vR66oQDN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JeQ601zk::xdxn9hwh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::kHX19veS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::OnReward()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::eyZlUuq7(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::iYLGkwN1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Smho9qjd(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::cSclHoxm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Qx268WpA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::YV4Cz0qj(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JeQ601zk::H5tpRv2f()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::VbQ8mdxT(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::rhw4uqzC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::tlEnrZj0(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::lCX9CGcQ(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::lrrlGN76()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::6E1NJzvn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::i48sso5p()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::TSurjagM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::GpBCvwVu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::V4S3u5s3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::UHmiJ5Gj(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::2DHyiOyp(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::rXxI1yBG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::1Dz80WuN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::o84L_6qZ(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::TA614sJY(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JeQ601zk::RPkd0Myo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::ASZ6hgMm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::f8w1myZg(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::kHnVpYSb(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::7tPkwcTu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::75ckmfnR(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.JeQ601zk::ADa60I0G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::BENjVCrq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::S_drGeMX(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.JeQ601zk::XN4QqwXu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::4nKLvq5h(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::6gM7RutG(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::LQUJbJMU(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::fNm8aIIc(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JeQ601zk::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::Phyczihy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::hqsdzaCn(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::F99TdH0f(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JeQ601zk::n3PWUw7W()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.JeQ601zk::v7_CT5BD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv/V_tl2yTp::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv/V_tl2yTp::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv/V_tl2yTp::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::ue6C_QIk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::bzSl_iSx(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::bC0b5Y3_(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::gUsrZzgU(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Jsc5uzXQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::kudMGfDK(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::3VRdr_Bw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::ciWWFWKr(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::3qrRPdiF(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::giIdBKBR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::EAoGX8bU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::L6SVk4iW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Vz7BukHS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::3PEX_m9a()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::r66Vse7I()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::1OWizNbH(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::U7DlH6GP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::CM8490RV(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::DfgX0mHB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::6riDAMpM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::rxv4mCcu(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::xa2JMdVK(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::zsiSzvee()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::K_NkQAtW(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::MLkHth5q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::goBglB60()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Y7lWzDTA(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::dwf4TSJN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::pArDraJ9(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::BhH7GKT4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::aqNVsK2I(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::mtCbj5Zz(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::z4u9egx0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::bxBQvk4s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::pFO92_bR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::AJtYXrJt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::w6gnkAd1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::jb4DX5Nq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::gx33gvzN(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::TAmNF5nS(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Cy4oCkfi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::9MzLvetv(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::P9UtuAFf(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::AmeTg6wG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::NsmhF3ta()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::YvReaBl_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::F8GO4tRz(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::eIPNsp26()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::t5UiEu_9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::kx2hsCna(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::blIgG_GR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::cF59z00m(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::64Bdlxsx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::LrcJ_Sgs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::oTkLlO7v(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::hReyNuFF(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::odJ9oNMp(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::t5O9pIac(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::kOoL56ps()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::EgOnZ6Mi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::N8KK5L4n(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::zxnwkt_r(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::2nHJbVkf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::OnShow()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::mWPDhWxf(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::HDB227vB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Go9Ai8X0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::rThJ7RLn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::UY_Ziiew()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::5xjVyEiJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::GkLuUBZd(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::L7Ej3SQM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::JUygolH_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::XTqbWCbi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::XpjdUVML()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::GTy364vU(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::OePy02EK(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::RD8d2Goe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::B8T_TKQt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::o5jLYC7c()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Hmn5Xhil(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::vRF6p0a7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::nQucuVbV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::7h7Tk7uw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::zBcJzDO8(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::18XoqtUf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::D6s5Y4_J(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::5CFMDuEM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::dyKoedsR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::873YMDMq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::zvK7bga3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::mJn2zcvN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::J1oiyRug(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::9ZdZzRHC(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::eld7FfQN(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::vHoUkqnS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Jr3jSdGg(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::U0P3NN3a(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::qRw8H9rw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::4su28TRf(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::nMfR0c4f()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Hutl_Dbv(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::z994FxB9(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::2pJjycOM(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::_4lwdxeb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::AQUegQVC(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::UmSicJPi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::V8KTrdJF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::rnlYSmC6(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::a1GmEyis()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::yaR8fY_Q(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::4iKSDJnZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::p3MN9mWz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::7nJoQ7MI(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::xTDqn00J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::yl2vElsh(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::MlLSsOj7(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::OnClosed()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::zu8aFMBK(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::CWlyGEH3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::o_l2jTPj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::q7GTBKXh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::lq_H3LCL(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::bNthMpju(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Wx8n06HJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::2jKoEaje(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::izQYFVni()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::yqd9iDD3(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::xwt3XZFA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::pmiEcIz7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::yypugP2Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::R0kH07_d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::50IWuIe9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::JQFHLn3N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::31FiJsvr(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::GaCVSOm_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::UHi8YpAw(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::JCOv1OCv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::GZyJmUp2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::pQysTKE8(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::6XD4SkVP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::hjqVLUei()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::FEkNfQhn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::4Y00RTKO(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Nk3vkCQn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::3nViyBDk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::1v7rEgal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::vr9_liSb(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::OnShowFailed(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::_TgmzQMH(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::vITBwIQb(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::QACHhrC7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::R_eOXZt6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::NnmfA9ui(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Tdm4w1q1(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::tIRRarBZ(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Y9caZy7k(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::xuCDzxML()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::3bVzsOAf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::4kc31X2u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::lwiJiNyz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::kgF4vb9u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::A1jXTkjr(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Y5VmFkET()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::LKUFmRjm(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::2w2ef1hO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Ri8vyEdt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::AxxRx8QE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::KabyiIdP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::bOT0yQGS(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::xXNT8cg_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::2TKuJvqL(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::1VZo8wpZ(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::KLhb1qGY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::9nnRp8R6(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::I7nt7drD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::FAiOXSjQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::4tjEkGoZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::zVhkBM_7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::15vorAzA(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::OnClick()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::OxEwQT7u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::1WDCbkBi(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::N0B_1rDh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::eH3LNePG(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::1L04Ewi0(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::Mt_044VX(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::WrU8RqNj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::d1TwVC1y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::2L8kFV90(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::casRnwQR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::OnLoaded(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::cNOPyNuA(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::z2H5Btsb(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::z8X0ZRdx(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::dm5BiH7x(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::hp9_LC3K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::U0fp5j3r()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::AG_GKLEz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::B3qDRvEK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::OnReward()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::2_2YgoHn(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::SrA49YjU(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::bYzeY6LD(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::sPYMGCPH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::2T3Fye3V(System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::NYmZjX3i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::W92ZjH0p(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::OnLoadFailed(System.String,System.Int32,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::lG3F7PCe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::SnsrdIkZ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::RVPZEBIJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::TgX003Th()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::YawL5LJ2(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::FBxnZ78C(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::4mBS_pw7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::rHx_882w(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::k5DCXoON(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::fGiT5_0a(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::CrbD8jhw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::V66T4IWt(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::wVeyX4Po(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::UkPyMlqW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::2Gb2Hnl9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::qIM_P3gL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::RcXz7qXg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::zUW0Ea9W()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::gSX67AE2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::9noFtdhn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::heOUa3g3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::kWFdMAts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::t4P5fnOF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::zIh0UWOi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::It6w9xZ9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::606RYAo6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::wgrhuEjQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::qlHDOe2R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::nBcJPG8C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::Udf4EAeU(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::ry13WBue(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::5l8tuLGT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::L72sO9di()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::XXavk1Z9(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::EDoOG3qX(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::tXfccTlA(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::Uf2liQr0(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::xZDBot4R(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::W9mJtut6(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::Ot1wjuWE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::9hU21NAY(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::u9eVa4al(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::OoOQdolb(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::yqdM7L3N(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::8nleHogJ(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::fhylR5yG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::DE3xVgTj(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::UHA0omy2(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::EnIf7K6k(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::Dsq77Ela(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::kzIOnXiV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::WGe83S0q(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::qK3_wX4c(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::n1Tm6lMH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::gtcsjwvF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::hX_DQjHx(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::7XHA0oHr(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::DGOIWVGu(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::KJVmEAg2(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::HHjs62ma(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::3r2x21gY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::10EC2cNG(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::AXgaLxvn(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::t7MNrFCV(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::x0MwH5fb(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::k4AUxA3h(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::5oK3kNPD(System.Action`4)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::B0Wi2kiX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.xiBxAcFj::VsACs0Jo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::bVRNptzG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::Ew2SMUlS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::KLjoyfgq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::HOaGOwtT(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::A6o79TUS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::gcLXHije(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::4_W1Hwu9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::ZWL2iPBz(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::ONmQkLs7(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::dDGD_gTN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::z_nMQQaH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::nhcL4ORG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::zLNEAjHt(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::7kLi_8mQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::M_RYXDHj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::lwsCrOTK(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::AaFyeBEM(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::MPDMLv7N(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::3AmMGtot(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::xaBSSq8c(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::A77_oSoo(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::zUX89nQy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::KyD0A3A6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::2nmZlhSi(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::11Bp7JRj(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::FZqflRZy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::2pHNWTnN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::IpG7zPwI(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::xACO_FRG(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::B2d8Ipk3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::T5ONi2rU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::4RgZRcie(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::3FlZx5mE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::OOn0puUV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::r5WK1B74(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::1fMqIRnO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::xoN4jXYb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::wIDL1YuO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::jXeFOBUJ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::Gbc0RSHu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::otTUKkJ0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::Qe6aY9Aj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::wIqxCmeA(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::6zx4ZApG(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::snOL_JN9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::slA31eL_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::hc4hA27k(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::hwTTR5fm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::LdLo5mo8(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::Sn_P_Pzn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::8s1Z0TSO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::3xRHrgEx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::Dgh0Si9u(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::R1HZ5NxN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::7bbbQvet(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::V5ypl5tz(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::2pZEqCPC(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::h70Wu9r4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::eOCIWfrq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::B_adJZVY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::biIvruyR(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::FBDpM664(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::5ngpCZMm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::hl1_0Lkh(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::Ety1W39u(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::9kClIM0C(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::RQoVFikx(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::hl5iyC9A(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::xXUthGV4(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::5cA5lvZX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::BooHftMF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::DjnikWJq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::O9vyZxBB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::z3TiSYBK(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::8_eydYzg(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::v60wj3E0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::GgrToE68(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::XdIhE8Co()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::8h97_59w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::pkBY81mU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::DONbxy2N(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::cdkU5byC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::edK8POKB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::Jc9MMHjG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::ZPRVxl2u(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::YWQs19tO(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::Rpw4CfNw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::ByJQmDVO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::1ReNHt0z(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::qjjpf9QF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::2Xn5XORn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::FETmGbZD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::zZbxvGnn(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::pz06iRMZ(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::mct19fSd(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::_ZvpeK7B(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::MbqwfeSE(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::M6dQlbKQ(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::nAmMTjYj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::v0c2AOF5(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::y7WxZdk_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::9Ym7QAys(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::Z6PL_gKN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::TJupIhKY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::7aNo0u0x(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::LR4XSGjN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::f4882wI6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::1lIBVfvZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::_VQs_wGk(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::ZPF4s7v5(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::QG_DjMfb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::GqLUCyuG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::od_RBhfL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::Vn11OXr0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::YZVAylTP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::43vIp2IM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::MP7jL9MW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::vsO9c9Hx(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::mO9cQGAN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::l1HdcxnO(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::0WTGmI7N(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::xZ_EhGM0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::FxjaOzVn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::9kYiAaKm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::hyIp9nDm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::Nz5H7o4K(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::PATDKiZS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::5IiENyOq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::HVZA7zTw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::HRO_ZWwp(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::ibMxAc5j(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::T2Xti088(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::7peFiFgV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::FBUmvCQ5(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::UXpGtSoI(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::TMyxlD9B(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::vokbrxMs(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::b2Ad3Sm2(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::EsdVKL3z(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::W54Tqon0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::qJztWpfG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::63INA35v(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::PIGc1rix(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::V6uGDFRX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::w0fXoQjv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::BUjCQc_f(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::cXeHHpxE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::pv0dU6ip(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::AqhkHLlz(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::MfjpXaNL(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::jsP9JOvV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::QDgSE8Fq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::buE429PD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::7uJncVl2(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::NzTJavLb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::Ei39AIFT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::VFkyWcPy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::KfVfYWyD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::3b2KPBfp(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::j5B1258O(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::Sxk4PTrn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::_Ks2QXj_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::jZeHvUW9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::auXhrHyD(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::UlfyI7Lb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::F5JGNo8E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::e8zMCioT(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::lmETxajW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::bV3hdH6E(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::5cxL4JYq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::BL9jKU1B(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::YvhV17IV(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::lAeY20w_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::ux53D05j(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::7pcGFefU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::8kTzTID5(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::ywcc0zOP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::7kA8nuIX(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::QskwM8LF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::aQ9mQJ57(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::hHBE3Ts_(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::2US_MpRW(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::QPOSXwo2(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::0uLEWKfb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::MdbCiMfh(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::ulyj1gI0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::2MiuWblh(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::24ohcr7j(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::MxGDoTPg(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::xcg29vaH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::olMUCTCJ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::8X1Maf5J(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::CfFECJGi(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::twGefa6A(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::LIJof4yZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::fwMIpL9m(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::KO1w7Uue(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::i4Vm5ljS(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::LVvM0gGL(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::joQTDX0s(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::qxYfemFj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::h7ZLhhp1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::HQ9MciSo(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::6A5vLLFc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ADtRAw8M::xQhUPI7G(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::RsIfiK34(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::TTIApTt5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::ecK4r_4w(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::ou25a5Yf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::eBc76dyR(MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::UezrgNzD(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::Wz1SWmOs(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::DcZIqkkz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::cJ2dqpgP(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::iu2KVmGh(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::RRFWdQgZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::r9gBD6hu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::0PQZ9m4D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::Tn0Vgl67()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::Du2M2J7X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::WfCNsBrr(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::x5OzCyX_(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::9AjcLBcg(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::0ASmoUtY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::yIagGDxE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::VdEV6_sE(MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::dZWhcQ7W()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::BqaSeUfv(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::OyIeqOF8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::LKkv5Qzs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::L4OPLBww()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::DVB3Dh7q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::X6kAT2T0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::aTQ0hbnG(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::0XvUHuU3(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::cTSbMtoR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::aMPH9mQo(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::yVrVO1io()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::HUqZXe_0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::6UYXjyop(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::X_uePf4c()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::PigYE0cp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::oc0821jk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::m4SdN8hH(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::Rw8PVcbl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::uvaIYyvN(MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::F6cr4C1g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::pq3kJoC5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::zNMFsdZI(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::jTiKDaOs(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::th_zf02W()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::9Do2bGg2(MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::ykDeNWrn(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::7OHYyVez()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::RZZhd6ZF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::3zDZ3QVQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::nZwmghF3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::XcHwuMWQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::ypGNPfGQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::K_pkPceg(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::_pV3o59i(MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::JND8rq4G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::z38kuPfo(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::lsvcrXLl(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::NHd65XPf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::Y4jKrqon()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::EoYklaxB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::d3g361mp(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::Qs12v1qa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::w9XaiAmx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::cOvtsCQG(MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::1d0lWOfT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::tnA6As4y(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::DAaqf4Fp(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::dhJLlnq2(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::YF11rTa9(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::5qoNHVgE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::MOplQhw5(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::AcWaKLwk(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::DnVV6ctj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::srLu1Pg3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::vHxS2KIa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::tiruHG0B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::d4_SRkhn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::SVqIRLAH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::ozqWzWTY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::H6NKJDe7(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::y9zM0p0f(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::ITgWDvTN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::hsEwUOLc(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::UDb2mPj4(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::jaEqb1fn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::K0SyxOc6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::7Gl9MWDb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::I3TQ9Z4w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::OOHr3xDz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::w3FVCWD2(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::yKCxsvVc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::tzDNU4rx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::mx3NtE9p()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::Z3UVtiDm(MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::AKY_yK1n()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::iQbRV7nA(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::YAv7dp0d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::Es38H0Fl(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::UoW7arVw(MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::rFjYqmHi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::Mj3gvnnh(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::tlPKsAdv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::VuJ8sY8D(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::pq9z6m1x(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::w1kpMf1v(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::0kKm388f()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::bEx1vASk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::8uKZZ5GN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::zG1ZFcjG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::r98bQDLZ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::nGUsV3Zg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::VK3UAdQD(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::JEut_YVX(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::RpFYuGFw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::yBfPQ8qK(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::HykawpxE(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::7GJPdbEM(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::DF22mFj5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::x4MAG45n(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::Naoh5wnO(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::G3MDg6vk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::UB4rUx9Z(MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::5eUueo6E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::zxj6Xd3l(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy/O85tBYld::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy/O85tBYld::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.0bh2cKMy/O85tBYld::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::44C_imHm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::ZAl7HnbI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::GrPkutMF(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::GeDKZHor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::CZCBOBHH(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::Hu_OkshE(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::QsyONkvM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::G5cpZQ_B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::EMHjnIwo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::4loNNIa6(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::XOtywb6h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::f4b39kCi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::VMXZGEu2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::EikUMUhu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::ZtGTf1Rd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::Z4koAO26(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::rfrKTjID()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::84KVxZ14()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::4Eniz5HJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::pstfKt_w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::mHU7WjHl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::GuwPXX1c()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::o82YYcAC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::k7ALbwnW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::JlP9wdkF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::wrWSdenu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::9nNKhJHg(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::6gM7RutG(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::msnV3n_M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::jKmrA3lN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::JKVbChDK(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::ofPycwZE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::7qSFaHrN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::acJltv61()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::Mpd40Qy0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::fBVdN2uf(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::WKwaTP8n(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::zxLx67yc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::_Sn0XRsz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::RIPMheld()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::vMGa2jEv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::RMu08J85()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::WWZ5Xll5(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::Z4w2Zl8i(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::pHEXznmg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::RMHmrZ0V()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::5VWdtj9R(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::6VJSX3dN(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::LULifba_(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::1lfWFVh1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::nZLwzSHv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::jyqMsfQv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::MlK75fcd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::5xJVLji4(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::wMhwsXXA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::DHipCpYJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::SNo2bYNs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::6pjiCtMj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::ePZoTpf0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::69Q74o8T(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::rJDq0rH4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::Y43KyCDV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::4t6FP4SU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::1yDEJ_CF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::9VXFJOFE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::98wVrbhm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::_vMG3StI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::DrGgv66N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::94S67H8k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::CzvhLQYX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::cLM6F04e(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::Y4V7fa_9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::ajsxufQE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::GDUVYExb(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::nv8s1glC(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::UHKQcBkL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::7PxGa56Z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::HUKeiQHC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::Stf7hTJb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::qYkQjizq(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::OfeKfIbg(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::ndRtvtua(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::rdup20fh(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::q2LmmYVl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::2avIyafN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::aVESF8ZS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::FYD0CFNH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::bauXDFDm(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::6Q3WbzQR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::vmSVCDNy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::Qxd_LUX9(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::RTmscHxy(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::zUMTJnLc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::dT0f0Yvo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::spuF6eCy(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::kiYH0eB5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::RDI169sQ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::TGr1Yrjw(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::mulX7p0T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::eKWQWdwu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::Ylsat9Ds()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::0x1o3Nu0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::d0O4zVwA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::12ZAPULa(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::4kyi9pug()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::IJo3rV4v()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::XB9ywABj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::h5HfPkTg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::TXAdWUXW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::gHzMHbVm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::ixE5IPG6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::iCPnkiiE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::4xOSrzSq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::jwA7hgz7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::Pb9fi8Sx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::BRz3wAEi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::NsL2IVgv(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::Q3ndFGH6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::peAN16oS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::XapeE6Ye(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::zTRf6Q1o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::_fOoMkjX(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::BjZgiLHz(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::3CEzFiZb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::fV4nREOc(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::0QNrfiXs(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i25nl_jC::ThC1Y2mk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.i25nl_jC::ojzHeGLU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::PsFfz2b8(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::Z3pP_LeN(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::nBsqaQ4S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::tfgnuxDD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::koL5ajF5(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::TwhKwMrg(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::fWL6NwyT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::YF4BdQAO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i25nl_jC::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::Vbl9cSjc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::6xt_4LSN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::1e9WMSTr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::8sPxAtJh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::GOgvX0O2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::Hrs6B5qg(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::3SEfdNG4(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::XfVojPMs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::DFCFcXbK(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::DwQgWto1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::hlUaw2uL(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::Xa1XBE1Z(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i25nl_jC::MUJQDLvP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::BFLDE1T9(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.i25nl_jC::JKWMRfDv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::Uy7I44n8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::SbWt6Xzu(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::ntq9HbJa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::cshcR57f(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i25nl_jC::JA_MvlT_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i25nl_jC::vuNb6uAA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::yIDFDiVW(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::TwFaaS1r()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::OiU22Qsa(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i25nl_jC::SmQa2DYr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::3fG8tdpU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i25nl_jC::PyqdQzVA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::Kb9FXJvh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::ExJ6OUHP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::0xH3RC9y(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i25nl_jC::YwTRxAuI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i25nl_jC::opZGOHLK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::Phws_PNs(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.i25nl_jC::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::k1u2Zyen()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::Rhhm4qmt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::_02EKLtv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::_FJYQmPl(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::BLM0jhEw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::oze7f0ZO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::i7lvY2AR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::ocRJp3UN(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::IYPSFuq8(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::LU3ZfHWr(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::XmfpHZdz(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i25nl_jC::GofXIOMj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::KP9XUzDm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::uDyf_M7V()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::FlHYzvTC(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::AtUvhC84()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::bNI0pn0Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::1m79vynK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::fiecAyXJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::kT_4qK36(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::iID1G6CA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::mchau2rJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::vE17XCz3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::zKlaopxX(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::dzYAmS61()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::LEyxTb9x()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::_5698gFD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::25ywpLfX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::mLWRWTzv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::04soR3Ki()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.i25nl_jC::FOuUUgaJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::XRByfbpD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::uvSgJvH6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i25nl_jC::R5nVZPw3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.i25nl_jC::0f5DIKkr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::ypWsE4UC(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i25nl_jC::WnY6YlMj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.i25nl_jC::IvYyG83q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.i25nl_jC::peMlC6z6(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5/PHyaB2uQ::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5/PHyaB2uQ::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.p4hn_DV5/PHyaB2uQ::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::zq_jpx4D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::2V2o_Vpr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::Tx8HS5K1(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::haWtjEkF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::Kg7HoKJa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::_75ugXMZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::F8GO4tRz(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::bMqUUoOv(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::e_35KQjN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::QfrSrbTF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::f_rqaSlT(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::VCwGYI7E(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::Vn7rPon6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::ifrBCgAA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::lZp205if()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::XSNYS8nW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::B4X9puLk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::qmtaXyVj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::4kc31X2u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::53kKL05g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::VPVXOSCZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::6IyWC6em(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::2_n5TtlD(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::K31zTL2b(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::CJcEXXWn(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::rBNdLnPu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::EiHJTxEo(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::sOz0JwRR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::L4DJ21DZ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::YdVDGOM5(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::uVv_6voB(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::Kxi3UU0V(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::yT7ZBpFd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::xN_3YteF(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::fuOlVRPG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::lVTMIWTT(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::eimluwl5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::2TvkGupg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::IdIBqKLK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::o5c58JCG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::Omsd4qB0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::oZSWZizD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::ce7bxUew()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::PmQ1EooK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::ZjSy_gMB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::d5Z_mTVZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::sbuJmwng(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::J243iJf4(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::5acZIDoe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::_GNgsaLG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::Aur0FI5p(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::iuP0MX8W(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::V5l9GLDH(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::CTXQpUGQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::rC905ZRS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::ikC4J1C_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::mEMlTCBp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::x3oSLSdP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::fENGzsfv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::fKfFDXrO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::HdUv39yS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::4sGApwCo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::437lSAPi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::IlliOqyd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::m6c3uTfv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::gDFtz9z7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::K1ZrQS4r(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::sMtFVWm1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::lIbToOYU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::AwxKlMEd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::FKqyzgRm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::pRrJDZSR(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::vsGKK4M8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::M6Xqk3D5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::LyCfaDDu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::rer5UTdu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::IK5qIMT3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::h15__Vgh(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::DSV2Sf3k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::nDO3bSOQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::CkJa1MYj(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::rBify2d0(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::EbZcqfjF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::yG8ABIsY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::3Iz79OgT(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::7D2O0Zvm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::gDn0m378()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::1d92DFl6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::k5jpvEZg(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::muoicxHl(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::Wdhpd2Hr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::QXYP54mC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::_qGzVEYI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::Md1QrUqu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::KgE_gu9O()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::rvtnt2Ih()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::KoRYc6k2(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::4zldIP3T(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::0yhNFvO_(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::Of449MIq(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::B95MRtZJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::qUT04kQB(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::ZjVjMkJf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::MpAlxhd4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::wKK_4O1E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::XS_5WxFH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::FEl6mZC3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::OjFfxE_q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::FBxnZ78C(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::Aw106gA6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::KUxPPyaL(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::otWb8V5A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::kkEscfw8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::0HwUKUDJ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::8OAoaQBo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::8IBZOAkH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::hAiqPxGA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2/Y0xnl6iw::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2/Y0xnl6iw::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2/Y0xnl6iw::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::9EVKh0Gc(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::sdig2UTd(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::sK7A66oL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::OAIboVC_(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::2Updef1L(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::miLEYH5I()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::ZylAy_Q7(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::ixE5IPG6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::gTGwAXeq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::4gF1cde4(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::ro4z3l4q(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::maQUCdIw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::Dk1XehNr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::1jVJQk0r()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::PEfBWvSU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::kF30CRlc(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::TYBL4yZx(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::pA2oGo4K(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::481HUJBe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::492tkHjE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::5HQPQs6m(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::hPqkFVOY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::T3cEvqiN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::gQn39zcP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::Wa7Y6Jsn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::NHJ48vCN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::1M3u25yw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::rvVk1KJq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::fVo0dJkQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::Qu7rN2nI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::6gM7RutG(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::Y0g963KV(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::YhZOg7TG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::FSgY8kCO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::v9aAiiv8(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::HF3fisvH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::xr1cH99H(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::PdGc3AmK(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::XXZKMMwT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::7puHoMbv(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::rEemoi1f(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::xfhFsCvi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::ke0BXS1S(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::cLOgfhyZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::Cqc15GKW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::9wBORDtL(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::YEQBgggA(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::GJethby_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::bKc5nuEH(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::gYscK0Q8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::6OwYIrZb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::VH6tULYH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::JWAmqRYs(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::jw4gFFLy(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::HdtnkCiI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::qNrsSPus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::7ASVi7f9(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::d0O4zVwA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::KKSrm9Vy(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::Gn9K0E1X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::Dl_8vNQy(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::8ihs8hEX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::sob1fMmO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::YrT_X12e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::TE0mtg9f(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::PnMU_gf0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::jf9RO8CI(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::LceMeyJW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::dtJp7aBk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::i6McCPJu(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::ZCmxm8Z8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::EuExi2CM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::Q96_IWKq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::nC816XPL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::f5YZNTtU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::VF_bwxYW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::KdfMILIb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::ROQruJNO(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::USLlklOe(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::OFpDGm7g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::oQlIeiZ9(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::KpVEfF06(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::kbPVZ4kv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::fp6CX8eJ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::TdCtcFTY(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::U_9wtjDy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::3B6X9eTf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::4zLn3QLL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::05fw33kZ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::jmkMbpz7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::at7IcCEa(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::Rt74KxEH(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::KJ3_QSST()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::s5KRyTc5(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::Wr_djDaG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::kwdIZrQq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::pB3CUBSK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::_w0KQRdk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::RFFXjqje()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::lg4jjDTQ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::2HzRZcNM(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::46pwReSW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::MWaBVHUX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::L6zpBMU5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::o46qRM8g(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::pTn6j9qL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU/YICzfXaE::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU/YICzfXaE::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU/YICzfXaE::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::9UyTLajK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::GfFtFEif(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.EkCGohlU::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::FBxnZ78C(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::NNRomWYi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::5kMHP9nx(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::KQKBNeKZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::zucYmRQq(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::NNqJNF_F(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.EkCGohlU::B3OTCIs4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::J2e8xAJe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::BlbI0SQ3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::O5k2qOiz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::RJGxDo7U(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::kUYCVgLY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::GSXuwvox(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.EkCGohlU::tudXB4K4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::3trn0h6p()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.EkCGohlU::axxswgal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::4KZWDv8T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::5aiYAyDu(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::kT8ApPVX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.EkCGohlU::bUz6AkFS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::yq7i8omj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::MAkchDau(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::TJxzCX7b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::yrvB9LOc(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::jSW7x7Xc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::7Ne2BHlu(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.EkCGohlU::EsjrsBli()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::aiCFPPKy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::S1eD40ru(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::dqk_eRK7(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::BpLd7q0m()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.EkCGohlU::EQLV7egY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::uOBfxX8I()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::368jr58B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::lfh23Ah5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.EkCGohlU::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::1sKuPrx5(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::JaRQw8zc(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::5eL4eIjt(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::OPA_8S56(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::4i90tMZB(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::92o0GsjO(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::F8GO4tRz(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::7EhpS03j()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::bZgOfTSJ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::3YTF12NR(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.EkCGohlU::HmwBYTm4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::ENPa0Y8G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.EkCGohlU::dJlnu18c()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::DF01MQU3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::EYdeNn6A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::jFdB_e36(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::r5D9vMsN(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::hKkPNw8j(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::zCnPIsRy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::eazcbwc7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::75T5nzEP(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::RTgjLdTv(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::H7J9hzSI(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::3ce0FdyZ(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.EkCGohlU::wpiyQDAZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::88AH93Uq(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::xJLSrSFD(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::Yf7raE_L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::ZwxGwwBI(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.EkCGohlU::UlCTX18J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::hvJpLPQh(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.EkCGohlU::aeUjgrq8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::u_O9rJ6L(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::1vYwyeJM(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::I9df3Ck0(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::iYFqmDBZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::jUifSs9C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.EkCGohlU::29GC6ZQ1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.EkCGohlU::x7wq8rPJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.EkCGohlU::KPBFjL7d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::GcvUkyki()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::XKnmDt_c(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::HkC_4xWX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::3AyoassY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::gGWfSABb(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::YZdmXzKx(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::s3bkAUBT(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::J_tyVx6E(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::7YNCeb11()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.EkCGohlU::qJ19FxdI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::DQJSPvAg(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::JNU1rmgN(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::s63BZx8C(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::TuaUVmgX(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::GnMOKQw9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::yvosyr6G(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.EkCGohlU::2pfhSobX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::3nEo63BL(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::mbcD_u18(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::yqJSokSa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::d2yRxNU_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::fSeN7Vc1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::UsMDLGr6(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::WGiQWCmD(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::4kc31X2u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.EkCGohlU::KSp3dnjO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.EkCGohlU::1l3zvcJH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::7hVNtDcS(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::vLQvHC6s(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::4rMZwsl9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::UzTxyJ1R(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::O6yU0LvX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::Zc5CssRk(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::7baHfk_J(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::iQ85MnAm(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::JxOBlsSc(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::O0ekuaWG(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::yiPhmJdn(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.EkCGohlU::RGTWSSYY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::HnOYkBQH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EkCGohlU::azrFkMkD(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.EkCGohlU::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::r0rfPpvd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::1LjUVOHI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::PQQ64jz9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::MrVnpMZY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::GMMORV25()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::myygKB9t()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::5AXa3p3o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::MWSokJ57()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::pb8RuqrT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::c3C6GheS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::lq5hN1mj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::7jIeeYAg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::qvgy2Is_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::fz8Vzwbz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::zFybarKA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::kMhM7rNU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::MYqnuJ6B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::bwf7xqcr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::0bxP3NqY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::e1zLIMrM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::Sa4cDAcw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::CADave0p()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mE0OMZL8::X4F44IoF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/1rUQTUFh::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/1rUQTUFh::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/v4JwNnPG::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/v4JwNnPG::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/yofVfANG::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/yofVfANG::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/prD9UPYN::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/prD9UPYN::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JZhPFqBA::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/O0GEEMjM::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/O0GEEMjM::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/kuMmHRz1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/kuMmHRz1::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/DBMjWWze::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/DBMjWWze::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.7SYNY5fT::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::l_kovisX(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::sNsqhHWX(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::ZYgJGx3B(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::ae_GJ3ct(System.IO.FileInfo,System.IO.FileInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::1prF49os(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::n24LKN6d(Newtonsoft.Json.Linq.JProperty)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::oMYmzJcM(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::lcUGMtrI(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::2FHWCOx4(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::KSjSvQhg(Newtonsoft.Json.Linq.JProperty)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::ir0e0Y7N(System.IO.FileInfo,System.IO.FileInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::_JPc3LpP(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::4nWX2KdD(System.IO.FileInfo,System.IO.FileInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::GiWc2wfA(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::HU7R6Xvc(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::gY3R0zME(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::RRKLfSsj(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::q7vtPyH_(System.IO.FileInfo,System.IO.FileInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::kiR_qlch(System.IO.FileInfo,System.IO.FileInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::CVA2MH9p(System.IO.FileInfo,System.IO.FileInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::aW4md5Ub(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::WhSJqu0L(Newtonsoft.Json.Linq.JProperty)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::B0cLN5Yu(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::_ptQEQJd(System.IO.FileInfo,System.IO.FileInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::5C2GwOCV(Newtonsoft.Json.Linq.JProperty)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::KheLgCad(System.IO.FileInfo,System.IO.FileInfo)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::EIeS9Dx7(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::F42R9Sum(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::mWebrrgA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::TrjPf8Wv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::dtoF4VdS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::nb8HLFvH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::XonXuBa0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::622SiJ7F(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::Bs8S4klC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::qS4uARn0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::2UOHb2mu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::YAvebDIQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::OVMFjNtv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::Q5mGThmv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::8BrFSRSM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::qAe7SUoO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::djM4TK14(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::Fyo61HLA(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::sIiMaIpV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/XBClyRiE::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/XBClyRiE::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/XBClyRiE::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::NFeNuPCW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::uoDZTAUQ(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::U9Kk3d0L(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::ttx8Y6R5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::g86Gt6mN(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::tjgFRutx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::4cPKYBVm(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::yxJTtqyW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::MYxVQknt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::Siuditnf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::d8UjTStH(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::OxaNjcax(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::vqfI34Jz(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::r_M71W12(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::lUiyr0ne()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::gb8yUYRR(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::c4spDzwm(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::czrYcs96()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::obJcpTnA(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::CG_J8KuT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::ioQ0X0eD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::e8X8r6CV(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::MhfdXl0R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::PC1JUWu0(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::xZt0ti7p(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::k_htoily(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::SZl5p6O6(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::IbdAgy_q(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::vZAMwfgM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::pYEG3AAX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::abpMudeV(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::oalj2rDC(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::F_W36HgS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::nD5PCjOy(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::6ISz7w99()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::Iw8NziVR(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::MtDMVphK(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::BNkFKuiR(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::dZkXuBZI(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::nE4C4Mr1(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::Wbem6WTw(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::4XKW2ksK(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::Rs7PMrpK(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::n415LX9b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::nLMu0EXG(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::doXyc58u(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::VWSkOHNK(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::2dLuHGOt(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::IxRgwbgj(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::dpT7Az__(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::WxfZfrhE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::_Ff61uqu(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::9s9NnjNN(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::dkv8Uh8i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::vw_idHzm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::V2E1MNty(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::V0Ng0_Pb(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::_f3A0l_t(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::xNB96pCx(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::6tAenLvw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::WpkE6S6e(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::tF8UB5Ls(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::XKdvwXKT(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::0gl7pYzn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::JxpyE6ln(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::h_qSFHD1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::bA_eNnNN(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::agX8im5L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::jeKgyK4w(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::f5aFhaDV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::ElyszUec()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::htFgGgPP(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::EUwKs_wi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::pshJL9AS(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::7N8LFdQn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::MwfdMLOm(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::Wt3kVcs7(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::QKbASHsL(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::gsow3Q52()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::IM91mwVW(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::_FEcyu8q(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::qsobriMd(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::ejdPln4j()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::VxVbr4hc(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::HZzVWPtM(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::QA7SLzHY(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::sQ4Ta3nA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::Q3a6B_x1(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::NwTohmv0(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::uQWRA5gK(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::_dvFKeC8(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::brb9sAeT(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::M_1RKRtV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::bPBoZyAx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::yxXAFe_m()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::ZYOgCycj(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::TlwlJeft(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::vJn3Emfc(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::W1KaNRYj(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::LpVSP3wT(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::sHTjsFJg(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::ZjkUYOWP(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::2zplLRgS(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::A79ceJtj(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::P4s18q33(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::7wgPPJTv(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::tlq4huov(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::ejYkG6EZ(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::t89ypSP2(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::H__jrXo5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::eBe7UMtC(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::ATALME1P(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::yoROW9wi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::p5MHDAca(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::cKl1ohOI(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::YuUJZBnn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::Oga7Zebz(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::4dVgejqI(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::vvrw1wfO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::.ctor(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::.ctor(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::8GDxCpaj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::pa7O_Bm4(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::U6e7fphF(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::SYJTqbLC(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::BtAZxciK(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::tEYCkxpe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::1pyrEmEV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::CI1UlttO(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::PZTcqlB8(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::Q5TsOrmY(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::sX2_68vJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::jAgwWT8E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::FNQ00GKo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::njZO0Naj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::4Jsq6qir(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::KxVJ6eb7(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::ns4Dv6HF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::ni1vNhmq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::GzQjuAQU(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::PqTVTvN7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::JKD_EIBl(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::nFmVLZXZ(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::E1h5CTQg(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::iHSWitt5(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::qByXKK3g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::NGVRNlMr(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::jrEFabTd(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::77wlXBiz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::Bgh9LNzS(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::c2fvKf2e(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::MsUwx0R6(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::THk94yvI(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::PBT_rbIR(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::XExY1YVc(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::yEhumaV4(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::ItyTQ9Lz(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::BtrCGK6n(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::yjt4BWba()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::fTVpM5Vb(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::NCguJCcv(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::3gEq1eD0(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::dlAw7PQt(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::OV_ybvk3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::Ms6kOSxT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::g32A_ncK(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::JzUM9_P1(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::xyWCS1VK(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::p7Jy_tDl(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::0_NSMYe3(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::9kWxUhZY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::PBleLdyT(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::dynZ9XPy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::jinkGUwr(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::2wzK4UJi(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::plVavwsl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::602fPPVf(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::5MbjKlV2(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::jozSJREC(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::rAGNrUO9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::K5cCDfTC(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::6z8LDNaj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::FeCXqwxg(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::Ha5okdIi(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::lEc5jrdR(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::FhZvnY03(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::bzwkI94S(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::drmhSxwI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::b7C8g8wj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::817P_PBK(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::jyVdkkC7(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::i8438N3b(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::M9CfvQNY(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::NNgKAwJo(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::D8fUlF7f(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::DvXkA7Oa(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::9Mtr5aDI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::boakISa5(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::BMWAQT8J(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::0Q_1_f_8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::p9UEr4Fr(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::o3dTff7L(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::rDfyU9jV(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::H2sFaVua(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::NzJwTV5V(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::DepvQ5Cx(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::X3q_vzi9(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::RdONeSEg(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::8yOywZtQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::9Lh_pslM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::eQu_4MsH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::puNK9Ung(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::xv3MkCB0(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::KoJkZjnw(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::1Jf0Z5Sm(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::k_6KxouY(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::de082bah()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::L4ftjiY9(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::1kuYE_rP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::bbAo8OP6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::Ob1irAzn(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::SySr7W7w(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::MBLT17bL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::XIU1T_Cp(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::c3qv54QJ(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::zJciSXg3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::eMHtNzQe(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::TQzTum2Z(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::z8hWBdEC(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::qS5U78mG(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::70R6NK99(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::qsZeavYf(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::duntz2aJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::VksOB3HZ(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::DOYYgnfA(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::ZY1zeNgs(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::R1qCxgia(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw::rMYF0mLQ(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::gV7MHAtA(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::1e2T8Svo(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::mMh65mHT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::gu3Sz0XA(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::D3rj9iAt(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::PFGyzxA9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::pVFAg30m()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::l3cuNhFI(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::O0UC6Vvr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::74mscV7X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::jelqYOdr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::LIvvAq6D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::6TE3Fdg7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::cxPuxMk9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::h_eZ75S2(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::LDh_JMqr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::pGjcGpr0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::cbtnBXaj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::copwkdIJ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::4Xlkc2wZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::JobTUwTa(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::h9UoCwml()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::6OdPC7gj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::AsZeNhp6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::jtuDIvM3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::gKB1V6RP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::qBu4tBr9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::sCQnSaOf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::TRNjbV2O()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::rXI_j8zl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::9ejWhFKH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::UCr7FcFt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::0uyvYQOJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::DQr0Z81C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::sHW4yNqI(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::9mZoxrNe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::ngR2WQhs(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::mkaq_1EF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::2rDZBX9F(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::73UoZcRy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::Zl94ERzE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::qV8080WC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::B8Y80c7g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::Ktq0C33z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::OtAWdW8J(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::KvvbzUgY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::TlgXLTKm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::DJpcP3Ys(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::7pngWx6U(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::JRi5FNuw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::Zp_wn03n(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::Ib6fOLo_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::wQoLxaN2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::edOWhYCj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::4ikqY9YX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::an4ZEtJ0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::CFjiYZh8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::viyFl7hA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::ET8Yc294(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::6IgeqPnX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::Dcw8xfOy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::xMy1kf82(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::ufYSGXeP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::Ce0d8EUI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::fcgtlhTO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::jPw3Lwx0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::RAxPLNWx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::LcF_aSqj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::7XvLYmST()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::Tnq9rbv9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::3aLXeNLy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::jutZLCti(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::jGSPPxMS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::ThP7rgHE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::nrcpoDx6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::TDk2aMoq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::q68AmtZv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::MJJMuUnj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::iUnRdUWx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::vr19viDD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::HNEjnJN8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::qCm61vCq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::zHvAZK65(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::mgBAbN5q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::rzYontpq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::DFzMfFjX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::MxxB8ruO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::UrhZZ2Rh(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::2IqGy0r0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::8CgUeJln(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::7KxqTo62()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::vlldZ8o3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::QQDGWSlZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::WirsZo76()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::ElnoYg8g(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::QKw3LBbz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::xxD13lZo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::HBdJ9UYS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::3agJX_AE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::XQahotiP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::KqSK5qCd(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::.ctor(System.Xml.XmlNode)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::.ctor(System.Xml.XmlNode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::6BwF9iSt(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::Kljmg8ya()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::4F0iRX64(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::YFhTNR5o(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::TqiJ8n7V()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::HlnvNPJg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::qZsceHg6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::J1mczbl0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::HfqZtFhK(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::LY7KqlXj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::7_2qtpkN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::qLwhf9Yt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::stsJJhSE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::0gDl5zUS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::Q2wkdzWR(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::Rgtyu6_o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::z_TpfAtL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::nlLOVhSm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::XjEYP9DH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::iarI8flJ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::6kLgOjbb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::Q77P3DJ2(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::rg4GeJKx(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::dCAMyTXA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::zvhVYd6d(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::vbqchaTK(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::aEmQam9e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::4KfZVw3G(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::5L8UJbat(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::vlOjCEOe(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::ZiKzWTus(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::CHZHbZs7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::jbmQe3u1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::IX1oUJjh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::ImMBtRbE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::Q2RgVoFg(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::fbjYs75R(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::M3GT5jNo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::EYPzuAkh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::8lGKvaA6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::FxkIMUgF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.5gBRhpBz::fwjG1UB_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kkfCarln::.ctor(System.Xml.XmlNode)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kkfCarln::.ctor(System.Xml.XmlNode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::9vr7afFu(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::0NqutSEE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::zTAyBnz0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::rwWpHQe7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2> ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::TdfYdMD3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Ep4iBxKQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::UGqpuQvb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::MJ1XB6jb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::UJysw_2e(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::gfOhau4N(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2> ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::gPRoIwCV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::eiTOWue5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::1HXDptUR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::mPlbYH5u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::kesI3vVj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::rSrLLCFG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::eWHeQo3y(ZrZYFo6bYXYM71YyLSDK.kkfCarln)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::fFKuNxUS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::bKSTlFYA(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::FeLG1Sfe(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::aNUpp0rS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::BosMnGRg(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::30lWZwMZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::O3Wh67qH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::tPCPXQZa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::oymAeweJ(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::tOnUSoEY(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::yNmPIZxB(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::JhgwLcex(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::r5xe1mt5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Sr18xqav(ZrZYFo6bYXYM71YyLSDK.5gBRhpBz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::mSo7d3gQ(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::mfA84Wkx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::OX9Z2fus()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::77e8icGL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::kvX3dQV_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::aTuzcHZC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Ch3GvZQ_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::alKP5GDt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::WBAagTdh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::80gmV4Oh(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::MYsaxKQ7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::zJJVTwd8(ZrZYFo6bYXYM71YyLSDK.kkfCarln)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::bWpDF8AF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2> ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::pGmIIwkL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Hf39OcKk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::w0PyKniF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::uPZy77vP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::OrgJXChR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::9JYNweuf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Zd3jjhmH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::bEYhKS7q(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::rzSM1Kyr(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::3NwbI_5B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::z1yZhYdi(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::ouW9JIo7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Ni3RBuqa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::uIacvPtF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::cgh7xmqI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::U0nken6S(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::8SLYABKb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::__Ocl9rO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::173C4MsP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Q123zysL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::NHgUDLmm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::NyuM4JDi(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::FMDBwPym(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::j8HBSth_(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::OftP7_J8(ZrZYFo6bYXYM71YyLSDK.5gBRhpBz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::RhLl71Ng(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::D6h6U5wJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::hdXoZYLB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::xGhW8rov()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::kQ4m9UUn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::azhLhTH5(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::vJM2Exhv(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::FjMm8fh6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::DS4EOVEg(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::F3rQG4XD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::ugQk4iTV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::G5CVZ3qT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::SJ8cJYUw(ZrZYFo6bYXYM71YyLSDK.5gBRhpBz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::ANTE0jUr(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::hrjAnnAO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::fRlT7vtu(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::CuHdPbU0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::ds9f596q(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::0Ey7LVNW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::u9Iro3nW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::5J36D0p1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::bB0CZZ3e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::VcAy_Jkb(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2> ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::R_gmRRtK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::6NjPHBD7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::iu_0afvv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::FgyWuQUD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::BEasSvjs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::HjQq0Zho()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::tOHdTR92()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::vdmouhAk(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::tGHxtetJ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::OyxnYive(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::XaMzH2G4(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::48eHxYQ7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::ca_fyfzW(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::JyF1pcaT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::YKVviVyh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::3DbephR6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Dg_bX0Lo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::WPRnYkgn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::7trShyVu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::YhPriGI6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::n8Leqs8k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::chLgN78n()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Zfo3cIIS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::KOkYPNgw(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::fquSZPs7(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::EK6H7Sqi(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::TKFv11fj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::FU1KMjiG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::R_HQ3Ru1(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::SRPuLG6s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::LCk7AC66(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::JIfJ2a7j(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::iCyOFpzm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::T_xASHCt(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::3dzCX8vU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::sw7unV2V(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::SoooeGhe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::X8cWF0va()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::wD5yluom()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::590sI5IC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::_9Ns3itr(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::vnMpkRiJ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::POZaoUC4(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::kYynL1Q4(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::nlkIv68B(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::dv__9X46(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::4Jb4LKHn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::PdxFaeuL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::z6PvH0RS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::TU_BcRcm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::fLYyOvWG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::lUECGVUh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::vEXjkMj3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::VuAd60ow(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::eEAI_tFY(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::EU2MfWbR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::lTgLXwaq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::kRCNAwjb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::fV3tkbHN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::ZyMb2UZi(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Moc8vZvq(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::dHphuuHc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::aBJxeHpm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::mbZ4Qs1Q(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::iqC0REcH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::mSOu13wj(ZrZYFo6bYXYM71YyLSDK.kkfCarln)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::NWEvF9vj(ZrZYFo6bYXYM71YyLSDK.kkfCarln)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::5aqUoa5S(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::aQCpQEJJ(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::IJjDH3TI(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::TwDW7aHO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2> ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Kk3jUfh3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::rWdhH2xg(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Dt9q746P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::MpeV06UR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::6Ezq4IQk(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::4KSbxGZo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::rj0QbXbn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::6FWnqVG_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::6rSy7vNv(ZrZYFo6bYXYM71YyLSDK.5gBRhpBz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::iuyEjuGT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::TZ713_JJ(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::HerSBmza()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::zYlD8mNq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::uQaL5KCA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::oGwka9P7(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::6xtde0ir(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::3RwmY9js()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::HM5SciUU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Fe_wo_3b(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::xdZBvP7T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::ZYaFk9v1(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::B2yy6ytl(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::q6vicejg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::0X4_wmg2(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Cgy0Xm5q(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::1A7kEJ4e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Lq4ZEmkU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::rH7qIbQZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::VzL5diHz(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::GO7oTTUe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::QCNvmfkp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::mRlTkPqV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::6ms2Xzqv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::ElrZBt3j()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::OjtvlBBO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::QWve8Ngq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::bAGeMXe4(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::kmpXEh_P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2> ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::bEuHqWFL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::v83vfdCB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::SNcGjixC(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::zK50OnVb(ZrZYFo6bYXYM71YyLSDK.kkfCarln)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2> ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::hFpeValV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::0ShKVKIW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::LwrPyLJB(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::8gowMibc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::t8gS5zU9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::03asD0QK(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::8AQVMMo1(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::_JNb76iR(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::0nNzBbAy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::UktWbPSn(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::ZFKi5ZUY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::vBFerRnb(ZrZYFo6bYXYM71YyLSDK.5gBRhpBz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2> ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::gcCq3Kpx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::yky7Nzuw(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::UD5CkMXv(ZrZYFo6bYXYM71YyLSDK.kkfCarln)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::NlTug4um(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::7B4TCXN6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::R5h3lMXH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::C9KlDopg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Stn03EPh(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::EBXkWiAL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::_6Q3RNy1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::FmJtEqc5(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::YNiGiUw9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::LYd0OLMZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::bd9MfiK5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::KWJoGHZE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::sGuToxzm(ZrZYFo6bYXYM71YyLSDK.5gBRhpBz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::txVSo5wN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::vRhu_VbJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::QqPDAaFm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::U4EuLlMV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::AmPjQI28()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::NnMnjIJX(ZrZYFo6bYXYM71YyLSDK.5gBRhpBz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::hh1LpagR(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::nkLbKoUA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::ZF1uqGEs(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::O5fHQSZ4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::x1NFSqqE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::y8MQ8FvG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::VMDLk1CU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::6i2TXnIz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::abXLhrof(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::BnGqsYdg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::GrEHs9NB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Vu6X5Q87()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::faGbfKHU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::EWz0pJKL(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::q60xxzZi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::M37d7Zx_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::dmm4ge3F()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Ij7hDyvb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::F3282Due(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::tVFx06q2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::yIkmfRLQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::6GV7AyvT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Fr9r0IMc(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Zb2FiOdC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::mm_fjsgi(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::OrKESLyH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::VjthinEs(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::JIteH_RF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2> ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::5oBVG7La()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::WBGm3nQd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::iMf_u7Ds()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::8h1gdFI_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::HH5mWDAQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::rdwbERec()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2> ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::LddTyuiw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::TXxZxTpw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::MC1lqPgV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Vp_tfdHR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::w42U7GLU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::FrSJAprX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::JfuOensK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::K51BSVT7(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::gVyaVYJc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::AeJMvjGm(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::EEyw_9uH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::miioi3Bz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::S6rKa7Jl(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::vs5zjQvo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::pgYJpCsJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::po4UKEc0(ZrZYFo6bYXYM71YyLSDK.kkfCarln)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::lDf6faoM(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::VgJT2TGO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::iX9BQDfy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::SSjjuO1p(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::5Fww7981(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::xvK5XZJN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::aNscD4AH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::CYPYNrIa(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::ZetkKGtT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::b4WjOB6D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::BzGUu5Gg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::PtUsCSm0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::7sPTMuHV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::pHw7nuov(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::uF18_Rjz(ZrZYFo6bYXYM71YyLSDK.kkfCarln)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::DiWzIJRP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::inmky2tH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::sm408lzR(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::2gvBcm2a()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::AiJIH1EF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::ClBpCPpe(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::VYPkLmFc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::NELAh65p(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::rS87C0vX(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::UQmoPLhL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::eM7SJPnH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::itV6dz7y(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::KrwHeKIF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::B7sdN5ht()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::dppCumjQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::XrGURyWy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::IKndFaaE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::80S1eYST()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::u3ZGGkcP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::HHoB7MyG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::nmFuTPAv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::gQzIUY5E(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::40uBJTy1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::t3R5BQi2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::HPISEmjf(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Go7QWo4y(ZrZYFo6bYXYM71YyLSDK.5gBRhpBz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::kh_aFXhU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::yySGWdM9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::9ZKBS6T3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2> ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::asgSkZgr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::cprHyV_1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::fzic3POO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::aLSRKdAm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::enROjQbE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::W1C3jpmz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Az2CNnPH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::DRiC0LK8(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::aTbf9YYY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::tpH2ai7J(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::kh_40zQC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::9bVQdMRg(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::4bvd1kYh(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::69WJP5uW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::PrjaFdqr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::F8n13sPY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::83hwgBq7(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::XCA3WatK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::Q2s7W7sf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::zajEn9Nj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::hdVGGi05(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::gYSD1hw9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::jPxR0rgQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::XNQyy37V(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::JlAOMpoH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::aJtqlleg(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::FHrXdHGm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::_ZOepSR4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.kkfCarln ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::qC4IG12Z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::MB9roRua(ZrZYFo6bYXYM71YyLSDK.5gBRhpBz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::rso2XeIF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::KOuA8qy7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::GLyHy7lC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::QChnIIQS(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::.ctor(System.Xml.XmlNode)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::.ctor(System.Xml.XmlNode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::yYTEIeRl(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::P1JfLLNT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::eB9IrnsU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::9_rmkUNE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::_PpIsRyL(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::dkNRkAIl(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::xZcIbwB5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::k1y8ODjX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::0Avp6Qk5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::OZejG_NS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::5tgzh2e9(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::AkP6lCfX(ZrZYFo6bYXYM71YyLSDK.5gBRhpBz)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::rr7dy4nw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::4VmWEGr1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2> ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::5TRsHscj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::nSjUONj5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::4kClCYsk(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5gBRhpBz ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::1qLVQMwA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::9Bxuaotv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::9SgvWuWm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::j2tzdeTr(System.Collections.Generic.Dictionary`2>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::LfzFE2nk(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::oQcbLFOG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::xRcJzsxj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ylEf5XAk::vwODwFLc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::8JeGhd1a(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::WGlziHos(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::0iOV3CkT(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::p4Hum6gz(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::6Wa_t8Mr(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::5OlD7VGv(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::efu7ByDC(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::LBQru95w(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::qcGTRs__(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::qHi_u_rh(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::Pm4RLHc7(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kCYnW4bQ::AfqkqdTk(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kCYnW4bQ::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kCYnW4bQ::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/ol8niX6J::HzQEeHY7(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/ol8niX6J::o0HoFsOI(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/ol8niX6J::rEOtFxev(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/ol8niX6J::M8ejcGUn(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/ol8niX6J::wHlfAYSU(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/ol8niX6J::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/ol8niX6J::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/ol8niX6J::BKg1rcl3(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7::z6g_UHN5(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7::U3XK6OHq(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7::lvyQJ8a7(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7::5_HOSh3I(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7::W0zmRWxG(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7::2yI8dcDa(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7::lc9wMjxH(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7::nE8NH1Rh(ZrZYFo6bYXYM71YyLSDK.ylEf5XAk)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::aXbe8pOB(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::BSdqJWQc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::u1xaEw4Z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Sn8Pzv30()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::SGkhQKcS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::pNPQFVvP(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::gu_aXXl6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::QFbPCctB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::txjDF1Lf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::0XyT1vxH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::J09bD44_(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::dwSWuFw4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::IBdqt8gL(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::G673O9fP(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::I5zdZb_F(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::m2piIhO9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::rJLBqEdE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::JxeAB6Hy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::GAAAU7FA(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::_OrBz_TE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::r9hjcYlj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Vrus862y(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::wEz59FJJ(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::YR8u1Jxi(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::FLZACqGz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::3ArvVdQk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::5FYSR8tx(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::sIzZ_1wM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::ceQQiv9T(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::M6KQQMpd(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Rksh1_z8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::I6d6moyy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::rr8xIlSA(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::h5QeRR8M(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::VJj8wHKe(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::jD0tDXQn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::yXQME7bn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::syyLrEJk(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::_GP17z79()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::94mx60kS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::ckEoSot2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::ZQCfLuV_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::mftAR12_(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::ULaurUWO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::QxEKgXSt(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::HBlgI5Vm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::gsTJTD3s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::nvkuPUh9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::9HGfXAls(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::HCdCfDrY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::a28B7JuD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::n6KIPnNg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::78fU8Ex9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::qrVPgOmR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::HtZdwxuC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::jzT5IkxG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::PDCOKBmN(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::hannLfmN(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::kWk9iqwx(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::F16JSStn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::BbLx6t4F()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::4ZIqWS2T(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::NE1DLKyW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::gmHx4TpD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::xz5uE9Ak()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::3mCNCbhX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Rb4JkR7a(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::k0u0iVN_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::7U7eCw16(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::pT4KMnH6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::mzEdsFNn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::d59GoUPD(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::qT4jWIzr(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Hk8YXI6o(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::FaGX1LY5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::j_Ef0wO_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::bEu0aYJv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::ygDmF8W9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::RY0D3Ajb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::GMwlnjSF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::bkMjsUNj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Tk88qHly()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::v875tDKO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::mTsZGaCx(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::WflbZB7D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::gSEs97Hy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::RN8cjL6N(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Z30sUItl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::fJ7kMtz0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::7LV6Pgxz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::5KA3hN4N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::yvu4F9QJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::3Kvyn7J3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::cs1l5qAT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::AQdR_TGM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::WThBFNNt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Th30J7Rd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::hHUUBvxq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::vC87h0RK(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::6CT01CR0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::6o9LuMXV(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::2MuCIi_X(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::wTeLf4xB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::GJMVI7gi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Q54X64qt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::PPE31shj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::970YzFsp(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::k3Biyh4v(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::49NBpnYY(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::UAeE1_Vp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::bpQNWowH(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::TChZTOqo(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::4jyaY32d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::A7BJTf8h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Sl6g5B9F()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::kSqGlqJA(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::6MRHvFQQ(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::4UYAlIFS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::xxX71ZWf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::WcQqTt3n()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::3K8a9Dw1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::fJOoH30G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Sjg9GlbL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::i7UsiOh3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::iTtkGHGH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::wgmp9IuH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::yL0QWgV8(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::o06LzLJs(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Aj8sv26x()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::NjrKtFJX(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::kGGieqsn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::EB0G0_c4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::dlea1dW9(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::YAaPgLmC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::v8ql5yJN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::MUPw0kzt(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Wgipnl4K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::wqRIp4n9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::IBMF2DnM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::YH5jXEy5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::wOPe7qBp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::KP_TTOsg(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Q8iB_hrW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::JeyMLKs0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::s0cYtea8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::6_9v18p5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Ah6BtbN3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::7UiFaO5C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::c9S41edu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::sJ3ecBJ_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::ycOaSHeU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::5Dg4puT5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::vAWEeG7H()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::OH1CdPal()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::ufdqssyY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::A0YWhgdz(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::CLtZXEtS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::y3v78cSu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::hA0LaPrD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::l39tbnhH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::ljuWrMdZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::ym7bhVjL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::MOEGgrNS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::cBTG9olZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::j6MVcPyd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::yvLCeT5b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::JmFLNngt(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::UlUEwy71()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::bAlxYE04(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::AHNncIfM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::HpKKBVma()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::2rFrrhoY(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::NwlLC34L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::TOu2hjKO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::efMrary1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Pw3wHPtZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::nBp7SpM3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::luVhYy3D(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::7T1T2PoY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::TPw6VN2w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::0CBsXZBm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::UYJxKx05(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::9eLccd2x(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::d343kH__(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::ZcanBwKq(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::mkmVr86E(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::5z1X7fdI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::uOQ5gPH9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::4RP8NrYc(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::Ua1VCEe1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::NJg7EO_h(System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::98i0UhCF(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::rEpYkOtx(System.String[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::bXOuwxOF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::GLg0OVev(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::cK2xjpsi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::VyNWz8DE(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::7fKnOW6O()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::AL1KkZ21()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::YiH8znKc(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.mQpuzb0S::YOPXliy2(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.sWeB3fop::rx_YdYpB(System.Xml.XmlNode,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.sWeB3fop::mgTpP5Us(System.Xml.XmlNode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.sWeB3fop::Aaw_TmGa(System.Xml.XmlNode,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.sWeB3fop::DApvbkiS(System.Xml.XmlNode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.sWeB3fop::KGDta2pK(System.Xml.XmlNode)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.sWeB3fop::h6ozI3Ez(System.Xml.XmlNode,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.sWeB3fop::WMIPRCcO(System.Xml.XmlNode,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.D98yuKi1/pKJA94rm::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.D98yuKi1/pKJA94rm::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.D98yuKi1/pKJA94rm::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::n0V_r1Ls()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::e_bRUF0Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::_b90Ewlv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::ZGkrXEEh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.D98yuKi1::fpylxFLe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::IkxMkCsU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::sBZEGnYj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::siIvSPdV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::GqbPddJX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::JnKty9lz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::B3kD8dyJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::h1vPXBS4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::ZaL7W__O()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::DOTjVKYn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::TgtGFjYD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::2EEb6oR0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::VII2Sdcb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::DUgZ3Iar()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::4SfvVyoF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::bZcR5Cl6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::lyCdQJ50()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::HOL0Lnxd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::fs6Qo_xA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::9GpIFD7h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::e7EPUWAk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::A7u22Wbi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::flv7XtVk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.D98yuKi1::cklCXdw0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::C3QzD3l3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.D98yuKi1::w87uFZ6e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::DCCF_Cor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::m4qPzvof()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::Ri5GnV3z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::tWD9qbzj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::NNPu5HPM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::9JEq3eqY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::MWjUgqC7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::r3IEghTm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::geRBv2Sj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::XHkvdAcb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::9G0owu96()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::CrY4FO05()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::HuO9xawr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::ZXBI7iaR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::lq0hTz1c()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::7uFMXgOM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::V4XF9Hln()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::feu8dVjL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::oVumqcBB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::JFVPP7j3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::LsLBQiCJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::r5jIfJAR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.D98yuKi1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.D98yuKi1::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::qII4A929()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::tFCqx9We()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::vWfazBv6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::bNX_V7Z4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::7QUtpbjQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::_ajdeGwM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::Vch8qNux()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::mJlZJLx5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::o99TYh_r()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::ECK94Vqx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::A5wPPBys()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::wwad6SZb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::5pimlL57()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::i53WpRYe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::1uzw2EpR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::r9hm8GK9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::wBydCpOC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::qFcyzuYa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::bvwpJsak()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::jtgcDR3m()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::A68o8kcP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::pbPBUQAM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::ULvf6PYz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.D98yuKi1::1Ikz_GAp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::KJJboPqJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::WxvDo2Ft()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::LvRLgjkn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::eFOqUptZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.D98yuKi1::qps6j_fn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::WxqsJgoA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::F0SVFOAq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::sjSZweI4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::WmTnP0cE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::78Eo0v5X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::yiM1bXvD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::5fGU9wAy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::a9pEbdJF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::ScvUK4WW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::te5EwZi1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::_NoVObBV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::2pUd3S4N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::7QOuxuAw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::xtL4u5Bv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::9nrfYK5L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::17dmyluC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.D98yuKi1::8_bBbmW_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::ruEyIBzM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::QnxLFj7J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::Z4NpTHkA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::3XH390n8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::PrAvGq7T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::UyjHFOKP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::N59I3IOU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::CkfmQaGo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::kIY8kIXm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::qtDCtP1l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.D98yuKi1::4Qp7YkEB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::2OjhG4Tt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::5pFvuzzb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::ePggoyFT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::5JA6CFG6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::QQyK3QFm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::dgb6pIq4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::NN33pujU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::AHs_851E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::v31HWYNt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.D98yuKi1::wG2yItAY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::L39kR735()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::KBIhhz5r()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::MX4cuh1B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.D98yuKi1::lCTX1b6U()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::98SCs6Ir()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::hIHhRzfI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::COiyAFz3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::6JfKr4iD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::t1_ShIBZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::UFii68i4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::GXLTbq6X()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::O3QhkoIy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::940amoWy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::d8NfzYzs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::YOIM8nMk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::ZHhidcwi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::i4lyUyir()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::KErrza5R()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::OOkai84n()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::Lgopfvz_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::f1VLFwLt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::ZqUB7bQ7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.weZ__c_Q::J_DoqJGK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::OpN_3jfK(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::rGugpltL(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::Ky_aZhjO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::QwzG6aUP(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::FmKOXq6z(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::jRDKM__a(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager ZrZYFo6bYXYM71YyLSDK.CoroutineManager::JBRInjNl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::Awake()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::u_OMvGgr(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::YAcqL5Nu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::j52i2G_I(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager ZrZYFo6bYXYM71YyLSDK.CoroutineManager::QeMha4sO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::s8CMfUoz(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager ZrZYFo6bYXYM71YyLSDK.CoroutineManager::37ZFmP7D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::9aVVAx8Q(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager ZrZYFo6bYXYM71YyLSDK.CoroutineManager::Iprz8pw1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager ZrZYFo6bYXYM71YyLSDK.CoroutineManager::kq0TIVEe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager ZrZYFo6bYXYM71YyLSDK.CoroutineManager::03gvKXJs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::3dUQJ8gc(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::mnDrx9bB(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::jbnL63VH(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager ZrZYFo6bYXYM71YyLSDK.CoroutineManager::24E60rIy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager ZrZYFo6bYXYM71YyLSDK.CoroutineManager::GO5rYJiV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager ZrZYFo6bYXYM71YyLSDK.CoroutineManager::pkhNSvqx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager ZrZYFo6bYXYM71YyLSDK.CoroutineManager::369_gwyk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::5tW6FEsJ(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::VvPaKPrD(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::nnfsgsOb(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::cEFmzV_K(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager ZrZYFo6bYXYM71YyLSDK.CoroutineManager::4EKTgsup()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::rkqxS0Li(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::bjI4rndw(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::Ughg_9fm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::0hpFjy3J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::nxApIMiZ(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager ZrZYFo6bYXYM71YyLSDK.CoroutineManager::xu4VTKYB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::p4B5fykf(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::vhxTIqef(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::mcm68ZkB(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::vrxBww3V(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::K5PtF0et(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::KWbH0May(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::SJRWQfsn(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::bPuwZtb0(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::5GDJgs9e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::XK818_Mt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::S6VrJJpW(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::oirscxLh(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CoroutineManager ZrZYFo6bYXYM71YyLSDK.CoroutineManager::7hwWvNmd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::r1a8uUWC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::qsyOa7Uf(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::lv44uia6(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::GmClaRDG(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::pyN3oyhl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CoroutineManager::7_vX1qsr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.raX9X_5G::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.raX9X_5G::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.raX9X_5G::Invoke()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.raX9X_5G::Invoke()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.IAsyncResult ZrZYFo6bYXYM71YyLSDK.raX9X_5G::BeginInvoke(System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.IAsyncResult ZrZYFo6bYXYM71YyLSDK.raX9X_5G::BeginInvoke(System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.raX9X_5G::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.raX9X_5G::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Kolv1f70::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Kolv1f70::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Kolv1f70::Invoke(System.Single)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Kolv1f70::Invoke(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.IAsyncResult ZrZYFo6bYXYM71YyLSDK.Kolv1f70::BeginInvoke(System.Single,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.IAsyncResult ZrZYFo6bYXYM71YyLSDK.Kolv1f70::BeginInvoke(System.Single,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Kolv1f70::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Kolv1f70::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.SLKcg9wb::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.SLKcg9wb::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.SLKcg9wb::Invoke()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.SLKcg9wb::Invoke()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.IAsyncResult ZrZYFo6bYXYM71YyLSDK.SLKcg9wb::BeginInvoke(System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.IAsyncResult ZrZYFo6bYXYM71YyLSDK.SLKcg9wb::BeginInvoke(System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.SLKcg9wb::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.SLKcg9wb::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ::Invoke(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ::Invoke(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.IAsyncResult ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ::BeginInvoke(System.String,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.IAsyncResult ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ::BeginInvoke(System.String,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ::Invoke(System.Boolean,System.String,System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ::Invoke(System.Boolean,System.String,System.Int64)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.IAsyncResult ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ::BeginInvoke(System.Boolean,System.String,System.Int64,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.IAsyncResult ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ::BeginInvoke(System.Boolean,System.String,System.Int64,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::BgSgioiQ(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::hhdtF0sd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::UjaaRGLI(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::znjuD492(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::6n0BWuRU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::KS3cYG0a()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::DDuX54VT(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::FZvbjy7y(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::jqTq7bQh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::BZvHYtRD(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::v1e7oFd5(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::hReqVrP_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::j2gkK1AF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::ycz_cGbi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::AvpFVSQ8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::GSBKisip(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::EDE9P2AI(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::HjPo1NEx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::YBX4hl9v(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::0YQ2vO6M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::yWAB7gjk(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::KB1_dlcK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::rV2HbltT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::N6sNj7gY(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::7vIsYjSS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::iUe5SNUm(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::gLUBPF3Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::b91_h_Md()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::a8zEfzO1(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::dudDs4Yi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::_QUNsSZV(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::25eWeyi3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::PdJwBZqb(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::BtZ1rrY1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::3hJ_qdxE(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::GM9PJJxM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::xIU1fpUI(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::16Mt33PD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::QF8VGDzP(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::8h_Hbh15()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::FFNzA9Me(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::C13zawVC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::CXtaBG8_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::qMLrE7ju(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::no6PQHO4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::GmklSggT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::aTDGD2vc(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::l8mV6NMc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::jifNvZHR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::2c7BHX8J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::KOyO4OeE(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::5kWmYlG8(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::Ze1llAFP(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::eBtsn1iS(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::LpnbQIEU(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::Uuu4k6K_(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::65XxaA1V()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::NO9uKkxn(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::qoVgbH3d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::pgsIhxWq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.6ytri0_8::_sFLd1nr(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.6ytri0_8::qnpkshe6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::no6PQHO4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::7UPo2WoG(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::2Xss3wTh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::c6ntU73j(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::GSBKisip(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::ztVIF6CU(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::QUKSvfzO(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::RxvnrxM4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::PbEewQSh(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::_3t0Cnr4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::LOWNAzFx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::SE8TtDuZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::QVMF6nF3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::XNGVIVlf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::LpnbQIEU(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::_QUNsSZV(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::8gmNQa1Q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::2A8Je2Is(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::Iq60L8Cg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::_W8g4BG9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kO7MVji2::sA97w0H9(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/FlWv9Gto::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/FlWv9Gto::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/FlWv9Gto::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/wtrTgY6G::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/wtrTgY6G::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/wtrTgY6G::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/hfqxmwwi::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/hfqxmwwi::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/hfqxmwwi::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::J67QmtUl(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::n4Olkqkc(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::idDA7WpO(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::wpnvv6Yf(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::nuLH07R_(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::LhOVOCbQ(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::aThW5I22()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::hUrgYTR9(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::pjDbo7Cm(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::CNHWu3eL(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::8ngv89oC(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::PyVGVCbb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::whmUtHqB(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::RGdpj6pb(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::LpnbQIEU(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::5RdrDQAt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::_2WJUH6w(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::DfPzrjRE(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::VF6_m4oU(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::pDISUksW(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::d9JcB4qy(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::oMTJcVWN(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::j3I4cBy0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::7uLrcGVw(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::_QUNsSZV(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::5urFz4lo(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::LvyaXJFL(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::C59u99HQ(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::4eWHqCD4(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::iEsZnm9X(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::V1Gyxqv8(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::MwlCKPPD(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::f7HmF6ew(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::bCs3seBb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::OsiEJ6tq(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::no6PQHO4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::xahSgseC(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::CYxbLdlR(System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::0RTHae1G(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::LJWOec0H(System.String,System.String,ZrZYFo6bYXYM71YyLSDK._fD4903q,ZrZYFo6bYXYM71YyLSDK.raX9X_5G,ZrZYFo6bYXYM71YyLSDK.SLKcg9wb,ZrZYFo6bYXYM71YyLSDK.Kolv1f70,ZrZYFo6bYXYM71YyLSDK.SUZaGoSJ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::m0PU_Jlv(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ::GSBKisip(System.String,System.String,ZrZYFo6bYXYM71YyLSDK.CwBFLrlZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::mu1mOHtc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::nOL8hE7j()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::WE3jkofj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::fHYtj73S(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::LB3_6j1F()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::5E5ZZcrI(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::Cf3b08N1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::CWHD_nxm(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::CGE9t81V(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::hVrJtObS(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::wpe1SKmn(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::9QPaIYSd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::SPmOGkpB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::CBoFhUjs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::bX5x0s25()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::TxRdjEyR(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::SOWCZlfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::k11t1qGe(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::WZ_xIL4u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::eyAt8sIm(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::fXBRYhXF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::ONFEspUm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::M22UHVKz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::ueNJCvN4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::NR2aLzCP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::EYVPBYAD(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::WacRK5Vd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::kInmVAId()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::upluIseC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::UJQQlhsw(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::JOGiW5o8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::h2hd7CHv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::k1dnZ0k6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::teAPR5gE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::guSiLutq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::3gzBD8Dj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::mAQTvdw9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::0gcuxRXu(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::LlYdeF5U(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::9KvGJzMp(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::zl4eZTjw(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::SvafHSjP(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::HX7eyYMu(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::o7xPmNIV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::ed64Xd2m()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::bOSfr5CE(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::anfBmpVS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::7DvVt_xB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::IhBXZdDu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::X6EpuQ_q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::HvJjY2bL(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::CLSMx71B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::_oYFomN7(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::yzmM65G8(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Co7a_d6_::n2ZSkXHM(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9::.ctor(System.Action,System.Action`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9::.ctor(System.Action,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9::zObAF6Hy(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9::gBqYy0db(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9::Yaxzf1H5(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9::rcWeYuTr(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9::9lf_eaiE(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9::oCsyeNqS(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9::4ZlrNgVN(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9::C7pvP27i(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9::wCtQ8u6V(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.QLJ6e6Y9::VBWx_gvh(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::WtWYbBYh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::3wUdf5P8(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::QgzNX7Bh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::BnZenS8q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::bqjvE4Mv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::C6_UU02O()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::ZfBR_IMh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::Hwl30MPV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::zh4QvKtv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::LumwVO5y(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::vFQ_fKUd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::EqdTkcrC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::q_nQpk_T(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::NnqSBYlO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::rcWeYuTr(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::tFwXLiZp(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::ZNutX4hG(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::THdnsbG7(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::T9PvJI1R(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::bCEozEwW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::3NVscfJZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::xosCWHSX(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::aCYiCI4g(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::tQv1lr25(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::kp53yhOk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::IOjk14wA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::XIYqw9xp(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::y6VSacVL(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::5YyNmQlu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::dOQR7CIQ(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::8g8kdWtV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::Z2qhblV7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::jVu4eyXw(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::GxOYoVVl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::tRi7dYyn(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::dtUVsjMV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::IuxnG_2J(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::.ctor(System.Action,System.Action`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::.ctor(System.Action,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::RXNkJ_kN(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::_02L4umN(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::2ju8cDuv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::zTIam4DL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::y5Xq3mHh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::uHG_6Yi4(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::x4PNkmKr(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::yfxwArBN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::svyZ10dw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::IXoUbeFb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::tGedWTwI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::EWv4na10(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::lieDvLYH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::ysXy7OLl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::0XXTgRwi(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::OnXiVva8(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::dv9Olwkj(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::mOFQx35V()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::Zgl9uY_g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::wIR7WMPU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::Ptd0lFS7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::60lC8rPO(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::MBG3WXS7(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::aoySneYC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::ZoLexGw6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::deqbuswQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::Eb4zcPYZ(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::_kVsYsqJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::x0w9JHDM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::ob5Q92ie(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::ELZ7wIe6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tV02MDi3/gw9oVc6X::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3/gw9oVc6X::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3/gw9oVc6X::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3/K6HD9KRl::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3/K6HD9KRl::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tV02MDi3/K6HD9KRl::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3/GQZ2TGE5::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3/GQZ2TGE5::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tV02MDi3/GQZ2TGE5::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::sVi1z9cu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::CKoKcUVo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::9pqRZMMO(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::4jwJUmf4(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::wW0mN7ej(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::X6p0PCfP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::Tc2s0aGO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::xosCWHSX(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::Fd04pE2T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::RSLJ7Xid(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::x0w9JHDM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::0A7_9pdr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::Dtlq3g6H()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::.ctor(System.Action,System.Action`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::.ctor(System.Action,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::Wl3LDHS4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::rcWeYuTr(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::JLY7juLa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::vUwGq61b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::SyT9saFk(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::Ql0qdicT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::vAxGB5AK(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tV02MDi3::RxqxAcIt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::qVHnXztA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::THvHNGzQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::mdk29KAg(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::j4W4mxbM(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::O5KQuYUx(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::s5LdjGi2(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::EKiTCQ8f()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::IkUVwM4Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::vfoVATs4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tV02MDi3::wYehbTb8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::eSOFV8ul()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::gCKPQRcY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::HVlP6r_E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::k5CcuodC(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::KZ6YBSUE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::poAppjHs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::f9C8p5o7(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::sJSqu846()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::dZzXOCdj(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::mtAW3Nif()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::7aI27nTe(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::UugjINUS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::Sm9UVei9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::KwQOeECU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::fERJDIDc(System.String,System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tV02MDi3::rb3zJLYU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.9X_wOmur::iEOPbbrB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.9X_wOmur::_p99TAox()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.9X_wOmur::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.9X_wOmur::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.9X_wOmur::Ym8XOIL1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.9X_wOmur::ySJqObBO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.9X_wOmur::4eKOYVVR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.9X_wOmur::0o2vAmK2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.9X_wOmur::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.9X_wOmur::tdpcqoNY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.9X_wOmur::AV8KXODV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO/xz__giD6::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO/xz__giD6::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::IS4xhTIn(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::MnwKdGVy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::iuiFgmpc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::W_P6s13U(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::5Cwq95TR(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::tSjgHUm2(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::Zp8sDifQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::1QRztMgy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::HJBQotXn(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::pUdZzfzB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::DQmLbOii(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::YkJP_jwH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::lv2BuqQo(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::LzVIP38G(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::GbVH9jW0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::hwC4_7oa(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::VcupgdzW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::GpEaOAxc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::TLTpUO12(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::1JQQnLQY(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::D9gpOhoW(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::swbGI5AR(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::mQYeTBfF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::HAsqZIGu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::HDdV1CP3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::oFLkWisc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::9oMPAS1U(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::Ov_OyWbE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::SyI9VMcm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::b0TE86C_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::g4uXv9pE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::_KpK2NVB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::KeRk2Fj2(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::kaeqcQLk(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::CV_4LsNB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::dt7EcrhZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::sp7zSzgA(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::vvq9gC6R(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::500DDiq6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::AaTleW3g(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::tEn4uOwo(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::WQcjxrA3(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::bxd5FKTa(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::Xoy09INI(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::3zboBoCB(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::J0x8E8hr(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::0GcVnUFn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::tMr61Yqp(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::VLhDhFeY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::Spb70wh7(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::Bah5IFbS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::_3pvfe3n(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::irtzNBM5(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::VYN1lmDp(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::9uhdNb8r(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::plmbd4Ds(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::kW0e8r0R(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::ixtBPk51(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::la_jP_tQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::ezisRCuX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::ODaLrNCN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::FpOXzUtz(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::bF5LhAx4(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::StiRFdlQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::ygysL_T5(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::JnHhyvPu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::GmmlMRhW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::lBJwfKJy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::sWnBUfXQ(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::M70jSfCd(System.String,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.rKZJP9iO::6RMoJ3NO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::8wvLlQBF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::QYVFQ43k()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::N6mzAcGz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::AbMwQWa_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::vUMoRfOt(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::8QS4uqFq(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::yPMVhvqX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::zWAgYvEg(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::m86i2fO9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::_yLZyND7(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::GXOklCCG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::5IVTtD_Y(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::YeasbGI9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::aD2rY4Qg(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::y9Qy5_Jh(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::cjFWGo5w(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::10HYj_OY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::bskJdsWO(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::at2uG21_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::GaUdw6hL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::rSxB8eEF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::y3iFqNBS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::zmp6RFkd(ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::sEhVF8u0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::6ES_ESWl(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::dwgk57oT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::vept5XLP(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::j_VsrjGy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::pXomKGTB(ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::EeTBQbDe(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::GCUqZwyK(ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::hE17yL_p(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::G6RSEL8x()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::9EmZvCVe(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::MLGA_2j0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::Aw4o04bF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::1Zj2vfO_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::ayBw0KdQ(ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::XlID0NbX(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::2FjIkEfo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::jvbtPc0Q(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::BdbOED9h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::Fp16VLTQ(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::qYLN8BxU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::jZy2UOh2(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::g71dRxRv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::WLBFHZdg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::KwMrLLri(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::ss2cZAId(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::07vamkwg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::evw9uSvf(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::ip_mbBRT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::fadL0GAv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::_p69phoK(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::b_xks_Ta(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::bscbOUmq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::aSvqols4(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::egGiMIu7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::a8PyF1aj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::Cj3exfjS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tRSlO60l::K_Kzg_XK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::KtIvCPCZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::WG3bZk0v(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tRSlO60l::qz7Vu2W6(System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::cTYqaRZg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::H1yWJXgy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::BiLr5rEP(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::EQi2Qxyr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::gd3kVjzI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::6ClkjIc3(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::pI9GiR7C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::msxCX8Kr(System.Delegate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::DKqp8Vuc(System.Delegate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::8mducHgU(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::QK85D7tH(System.Delegate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::HooQ_qSh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::5C1uuzGP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::pxjM8ljB(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::koL76lYb(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::KDJRsMmG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::Yo1xly7K(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::mWrP05tW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::O99K0tbh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::BnpcoARh(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::8WDwJfKn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::i0lzMl7T(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::TUdm26DZ(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::yJUDhZ_j(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::qFPBgNsH(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::PVlyOjkA(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::UpID1W4V()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::yuWRpu_j(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::MPQKVTrZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::G85AulrL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::40dq443P(System.Delegate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::rqHtIXrY(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::IyHskQLs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::e2G1mzSK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::EupwHBuc(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::vlCaQRWj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::AGgA2p3w(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::6i1KwsHj(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::hrRrvVoU(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::VhPmDFRJ(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::EejRP0CC(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::gXrxBFor(System.Delegate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::oPVrwahL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::hSNPa3G2(System.Delegate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::7VUWv1ns(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::Y3OvI2do()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::yrMHPdCz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::5k8P1KNb(System.Delegate)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Delegate ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::mM9PVyqf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B::4ZkAia7X(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl::3kgVrA9H()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl::EtWVQVFo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl::OdMfwPzG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl::8kAMWFHb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl::PIEMu9N9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl::MRskShNV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::dIcTsAV4(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::PmJlGS27(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::8yZLhssf(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::RZCYXU0i(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::CP2XuC9O(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::sOs9_lip(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::c7nvvlKF(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::cdAmEU_S(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::0XzxLL26(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::qc9tRfqN(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::j8tAiTIs(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::itFDMW9N(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::HyYzy4f3(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::epRTimdG(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::BYrzQiYs(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::nwzFcFVL(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::DpBGpMpc(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::1_RmXeQT(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::y5zEfZaI(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::VpbKQOSW(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::rcdcfx_s(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::Dx1TtQB0(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::RuMPjiz2(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::49sNstzs(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::7LPVv4vV(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::8sZs0OnV(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::CXHqjITT(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::kpxgzv9J(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::gqVvMIXF(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::_XEw_awg(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::fvKDVAKe(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::AMSTSBPk(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::bedHwY6W(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::qhBR9d8u(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::OudEfMhd(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::Yf8OyE6B(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::IcB68ziQ(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::BVI9FvLv(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::dggPinaf(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::VQfDunLV(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::EDsLlO3E(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::CHdgv_DS(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::8cEwFlmK(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::vvgrHnaT(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::Ca6Ssqm9(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::HusNZ93z(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::pOqDx8Jw(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::k3xB1J3M(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::ofzfAwHD(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::CA2pgBrb(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::EcXXEtFz(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::0utAugNO(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::PuIu0cIU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::yinTu9CG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::o9SmKe94()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::U64izeNa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::XAEUYDSd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::KZVarSl7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::bc_ymDlZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::nsYF6fgT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::cDoBCxYn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::OrSjRIPs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::maQYAmJP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::NdVkF2d4(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::Wr3aaxtQ(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::yfz6GoN8(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::HhbFwbK7(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::Ac7VTqQO(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::_xrGVoiO(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::8gAX1RyN(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::6_eKL2iY(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::Hx2F2DWP(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::DO5NG8FM(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::sHtZM9L_(ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/gtmoBF0B)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::kJJAopOF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::esPos05j()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::WyYotF6P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::MjHTAZby()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::jbMpIlEt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::giGK3XH0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::2rotyoms()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::pzH7q7Xz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::ECJqhQFv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::P47ADCB3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::r8scJaMX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::EUlG7dvR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::poIf4vHA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::l_MGob8G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::GdsQGzo3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::MkNJO3Gm(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::3_fCNczc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::oEHkTMsO(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::W4koIQTG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::KKm7OId2(c2rdfFsg)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::CZe5PM_h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::aSZZPq_o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::YeVwSzGs(System.Action`1,System.Int32,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::EEpTyjnJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::wnElVrVQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::YwsYeFhf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::XaKhfcOK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::XlDJDMS9(OD5sQp_9)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::x5d0Yg66(System.Action`1<_koGu7LR>,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::IEDkBDRb(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::jolydzgi(System.Action`1,System.Int32,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::kU1rzM2q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::9jFIsJjc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::a5KDhu7V()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::S0GOvzuD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::lqzZWxk4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::tDFLt6Ye(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HycQLCQa::8Wx_16gM(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HycQLCQa::kf4nijl_(StlN7owQ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HycQLCQa::oCx5rYtl(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HycQLCQa::VyBoO72a(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HycQLCQa::XdgyDJkq(System.Object,System.Action`1<25j8tIq7>,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HycQLCQa::WK70Qg_c(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HycQLCQa::JBp2J5th(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HycQLCQa::jl2fWI5u(BHQH27zX)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HycQLCQa::sUD6HLxr(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HycQLCQa::0G4aLxlT(System.Object,System.Action`1,System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HycQLCQa::_KmGOUY8(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HycQLCQa::igSjxIga(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HycQLCQa::bbRV_O4J(System.Object,System.Action`1<6fPdQaeu>)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EventSystemHelper::hlYg0c8b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EventSystemHelper::LD6B3E9G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EventSystemHelper::c5GlIwlE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EventSystemHelper::qlbn2cVj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EventSystemHelper::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EventSystemHelper::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EventSystemHelper::Update()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EventSystemHelper::wFfK8U2C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EventSystemHelper::dBSBA56E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EventSystemHelper::OnDestroy()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EventSystemHelper::E0uN5iQQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.EventSystemHelper::P7Covu84()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/XiVanbLr::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/XiVanbLr::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/dr3z0c4M::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/dr3z0c4M::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/dr3z0c4M::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::RfWPa4Ix()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::_Kqhght8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::8kV67ALP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::PwBk9YH8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::_ZdM7yjy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::cs5LVIjV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::MuY3N1kU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::ehEYoL32(System.String,ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq,System.String,System.Action`2,System.Nullable`1,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::P0khcQ10(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::XeM2sJwr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::JoQRXhGN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::KI1ZQCpy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::fnTRAIoB(System.String,ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq,System.String,System.Action`2,System.Nullable`1,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::1j4Htrpj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::XF7wSeS4(System.String,ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq,System.String,System.Action`2,System.Nullable`1,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::guCQlCZA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::_egPeGPQ(System.String,ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq,System.Byte[],System.Action`2,System.Action`2,System.Nullable`1,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::aHxPfYTr(System.String,ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq,System.Byte[],System.Action`2,System.Action`2,System.Nullable`1,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::AZ1zcbsL(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::qXBgb_FW(System.String,ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq,System.Byte[],System.Action`2,System.Action`2,System.Nullable`1,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::pkAkBjd4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::cBwC6lEY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::g_vYk4A9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::OnApplicationQuit()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::IAilDU1d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::ca61XSll()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::FDOxUitI(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::J4Ece889(System.String,ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq,System.String,System.Action`2,System.Nullable`1,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::WqTU0Ys9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::1yu2XFie()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::QFlOsVVK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::P1yGOcxM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::oAjvHWX7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::zmgCoGgM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::BxXkJtZL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::zSDLMrqG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::xbcPAKGt(System.String,ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq,System.String,System.Action`2,System.Nullable`1,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::C3eJkn5d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::K0K7NX9K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rHG8uP6X::IIXx86FE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rHG8uP6X::eabvvRsu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rHG8uP6X::OF_CVlSr(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rHG8uP6X::hOckDVJ2(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rHG8uP6X::sKKK_oM_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rHG8uP6X::7a29AEJq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rHG8uP6X::d90nWXoO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rHG8uP6X::QZUS2uaV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rHG8uP6X::4jQwRStf(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rHG8uP6X::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.rHG8uP6X::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/4ii4W047::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/4ii4W047::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/sbaBXlQT::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/sbaBXlQT::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/sbaBXlQT::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::zyufzg3G(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::XAxgWPei(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::YCq0OWff()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::i7oMriVm(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::Update()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::SLk4QAfh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::5OIMhnvb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::8KD208k2(System.Single,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::QtZYx2fP(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::yNQs8mh6(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::cLfY87mU(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::9dmTFINb(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::M0dzVj32(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::nNGrppcT(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::lGLMa1ul(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::eaIob0Wn(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::7XI0s8He()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::nks6QGbK(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::cN3eKuCT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::uzWNY37U()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::QTUT8scL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::aPQOQcms(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::SoabZSdv(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::NUODjIYp(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::AA9bVLXb(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::uzSdh6CC(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::x6GaM6oJ(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::jmClIagd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::gnpQdh3A(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::s503Uj6f(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool::B1d3heJa(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::ZTrmSaLz(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::YSdl8liB(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::3ljbfWGP(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::0BQtnixI(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::YdAhHNbF(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::vUpHNuxc(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::1gndy6DP(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::qxw_Y_dq(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::mEebtFtg(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::k7UDAWyA(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::Uu_yi8r4(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::_cjy6si5(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::Uo2SkxKa(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::lzVMt_K2(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::0WdgBPom(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::JJPIyYgh(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::Rn4wX9aC(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::J1oDuqhx(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::73_b7j2f(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::f5qoRQCe(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::v0BVH_vY(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::k6kVtEzW(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::X3cJKOtm(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::dnO8Kjin(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::a4r31XHi(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::mbC3Ch5C(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::AJzUcm__(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::n9CvltDB(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::3x_VzE_b(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::olCaoQNC(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::3EbEUaFN(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::GBzXSshM(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::GlscK645(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::clXyoU_j(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::RuFaCWCB(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::YK2WLEyt(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::YAFKafUL(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::imbZq492(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::WXx1hdEi(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::wzahQZBO(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::2oz1L6xc(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::ZbC1dw6_(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::FmaFrpEL(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::MY1TDFUb(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::W3Q4SQZy(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::HAejGPC9(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::jmPgyx91(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::7q4cKJRO(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::oyleXCq5(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::HuSojsVi(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::Wt1rmybH(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::9GSuobL3(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::9xA1IsT2(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::4RfoEwCi(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::wq1531pH(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::EnC1V3ou(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::1wfLNUeV(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::znbYeKTV(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.JJpJd_AL::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.I5kVKta4::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.I5kVKta4::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.I5kVKta4::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::WZf5qxBN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::uHESuiRY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::3Jk5cPHB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::4Wb_Bo6v()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::ZtVzGJ76()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::eLjDUbkA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::jh_83UV2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::8TUJceml()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::f9dwTj8f()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::zAQvO0Xm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.KppWFT_B::UZDP9sq4(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::U_SAkvxN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.KppWFT_B::vkKvKByt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::vrZU9ToB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::YTH31of6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::Ck50GTAn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::pGqZETck()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::2iVpYqE0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KppWFT_B::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KppWFT_B::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::DpP_PZLr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::yZIHazzO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::Jcx0uXeQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::5kHnanap()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.KppWFT_B::544BW8nh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::Uvl7Z9am()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::BankVwX5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::xoOKz3Ui()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::ZnSrpVgU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::5Vf_fqVQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::Ti7h7Zjy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::eS_wKsgn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::bNTBspKP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::b0zmIAAI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::IMbXU7mn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::tfR78SJW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::4fU8XQzf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::4fmy9FVZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::rNR_v3A_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::Nujvk009()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::7KAKeijf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::6e1HS0rV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KppWFT_B::l4a1Yi_7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/Akl7fC46::hFjBYgr1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/Akl7fC46::DnDXzXJ5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/Akl7fC46::91VTSOAc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/Akl7fC46::d2y7BK95()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/Akl7fC46::6a6thqeD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/Akl7fC46::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/Akl7fC46::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/5WtIh70C::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/5WtIh70C::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/5WtIh70C::2dSAEqZF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/RPQ7pYcH::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/RPQ7pYcH::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/RPQ7pYcH::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::EdAkF81X(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::Update()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::Update()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Tasks.Task ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::2Bf8zJ3Z(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::RpfLaDD6(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::6ULA0uSI(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::3VTDsHPk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::QJHof0px(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Tasks.Task ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::dHmwGYhi(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::xZidvhO9(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::SNoZ5OZ9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Tasks.Task ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::ZLiPnexJ(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::68cbc6OU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::n_f1KfmV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::bX9ZiBui()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::sqa9FisF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::9RsFBOtf(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::rBnPWmNB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::LRHK7a97(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::d6AOCCwt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Tasks.Task ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::yC06X6oA(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::JQnnOVOW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::96lggJp2(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::wUFQT1Bv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::MKfLX3o2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::SYfqUGJ9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::QWmBu4S8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Tasks.Task ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::SMjAMTZE(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::oYKK7_8y(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::FI5QaAD9(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Tasks.Task ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::sHQnzWr9(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::vUhOujH6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::y67Vj6UQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::L4NrCLiI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::M84G7D35()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::OwZLrb3n()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::pnlw7Rt8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Tasks.Task ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::8jlSVKmu(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::V8LZ2pA1(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::PHFfjfm2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Tasks.Task ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::xN1jcWj2(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::OnDestroy()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Tasks.Task ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::cG37C2Mm(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::ziI0nwTM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::6rJD2M5s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::VTRnpeYv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::O9EHGaG3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::qpnFsUAf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Tasks.Task ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::TdBAGhnN(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::JijCHj0N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::JhFUb0sk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::cROmMHNc(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::HVky2jZO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::JLfKm6D3(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::cHnV49lC(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::m1L7OtHK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Tasks.Task ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::kWEL1fG0(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::AUCBYzyx(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::2Q14B7xl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::RkWYTZeA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::5H0FyDGw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::5WF0y14M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::ZyRtXKpt(System.Collections.IEnumerator)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher::Awake()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM::WHOIu47p(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM::jlZpsU5n(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::zLTaXIKx(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::sfmFbQm6(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::E0OXG4xQ(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::p3lhdm0e(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::yod7P9pO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::J8ZlmMQ5(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::5I0RNivw(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::aiOj2H1r()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::IgIn2Qof(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::TZb5LgNM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::ogVzWM32(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::iRTSs4lV(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::Ap7oosGR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::wJIQFfzC(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::TQpqjP3E(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::nl95IkiU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::RE91G0mg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::KU_eDc0F(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::C9AEfUIg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::DjBUUFEh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::Zubae0wG(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::z1I8e28Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::y5NdB_lt(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::dN_F3VXE(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::B17lACey(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::XtdrDcH8(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::2PZIVOcs(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::pym7LhgH(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::AEQjxTOx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::DTHOQnwg(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::oHHBb9gF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::cXdQwogs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::qhJrnmZg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::YvbY1cMy(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::TCx7wRWw(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::MgZhABcs(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::3L3sMom2(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::g5gMKyGp(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::9vXwWfsl(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::jzBPEi3L(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::YDSDLAnV(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::oEYXLjkC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::fXY3xBpt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::sBOx0_Oh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::JnCSAWnv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.wRO3ToY7::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::7gJTJjRi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::gmGv1qDQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::M8ut4tFp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::KcJ3Rf_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::tasUiAdw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::mOCbwgmu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::idt_j_1D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::vR_b_qkw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::PDokZh4A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::knCTTob5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::Ut7dQ9GH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::ugX6CejX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::pGdNMB3E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.hopUZXhB::.ctor(System.Double,System.String,System.Double,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.hopUZXhB::.ctor(System.Double,System.String,System.Double,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::vjQGpcH0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::Oi70S0Op()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::2qPAo5eE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::5Gh6jzZc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kzgkCyk9::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.kzgkCyk9::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::WKe4fZkn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::8ruF_oI9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::jjOV1_eR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::pypgmUiD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::0BMSipYC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::83WczPPp(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::jyJ2AcZx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::rMSOfqMu(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::rZVXLWdX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::64BShXpi(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::HzRP4v5P()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::FC8Rlo40()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::WGAnKrl3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::yfnfJLjK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::sfCzRk_v(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::02m8WuBx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::tXVGzEv_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::CSDcILWA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::ZSKmZQZX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::juzf1pjK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::E6_2yUEE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::zA6DZLq5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::dtzkSyTF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::GwbOZ2JV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::R5gDU0DQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::pKiGcxvi(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::fKkWwYWe(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::0XfaOBEp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::yPEW3Ib3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::hJ19q2Ty(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::DFL26S2G(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::CNWfA8_x(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::fydBmzgn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::qg3mcS_1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::yNuYIqGy(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::IFYeMVsi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::QNciZuyu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::JVuIltR3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::LAvHkzr_(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::0N5jn37Q(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::P7PSsyGr(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::n5kDX3_n(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::Ou3Ihgi9(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::xq0sjlPu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::UFts5jdB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::1uM9POLe(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::0VPuIvM3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::WyHOTiap(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::OT4vT9rz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::BD7WsLEi(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::tSbIt9o0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::e2ErJQeA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::RxmpTSEs(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::Y0KUfUMD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::v7RMtQC6(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::dv7H69Ue(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::s9FiljUi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::_OAqpSHv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::C0rLlJ3y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::_aG18igK(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::6CNOoGXR(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::N2MvV4Tc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::Z3QKvKut(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::o3kVuFsf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::gdK_eSMa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::6QcYjaks(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::AC0is5qe(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::fwRfc1_0(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::TiSt5OC9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::Edk8brde(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::cESKZFvB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::go03xe1y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::t7i8NTVD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::xi27BOcW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::kLhlJPqI(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::2ex9ZFMr(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::jgFnCRWt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::SHq945Dt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::XZzHwTdH(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::_22JSdou()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::6u1tdAho(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::S8dEReGg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::HbDjHwua(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::MA402Rsu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::FxBgujaD(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::86BxQO4H(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::xRXY8Nv3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::8NNTzwsr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::82R_CWcW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::NS2XbhvE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::F3HmtBOe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::gjFk52YC(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::VFN8Vf6E(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::jK5A9QrQ(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::iKCDM87h(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::_7dJ2xAw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::wfOQAfrD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::KZJuh9lP(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::ToString()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::JwM7HF0U()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::neiJ77fu(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::TYomYUd6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::G4B8lECl(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::7HF_5gvO(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::1mPgSFXm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::tRRUsz8H()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::aECPMslk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::Zy7wLOy9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::NdoxPRLs(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::FGV5XVl5(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::YpP5JInj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::KfmSnwBv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::QSxUrcIH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::pz4GP3lp(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::dCWrUv9N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::pj9btVhj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::2uVTVWng(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::vwPIt9GP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::Qjhl8GKc(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::SoIfGw9f()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::2v0XemSe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::PvA33fTF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::XFhFKtrz(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::oTBAGq9m(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::pv5q14gM(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::8z3q0UXm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::rxunwf4u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::OQaEaUUC(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::i31Wk6_p(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::xhaHMf2K(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::MaD3wOuQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::a0UuH7sb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::x0fWAXkZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::.ctor(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::HW8VhOcH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::hDhuExvF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::2OdfDPh9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::RUjbV0ZI(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::HXVu43JF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::_gxOg5J_(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::nFQRTy0a()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::kXy_ducV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::ZN5vIO_D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::vWK7iZVN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::Ys7ZMJsC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::AeNbxWMt(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::x7PqfHVa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::au64h5ga()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::CQVlqOMw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::ug8dVX97(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::uMJLeBrB(System.Double)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::w8ahC4rS(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::u8s4fh7T()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::P5ILwDNT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::BWd8gChZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::ajj_ax2K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::52tSBHMd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::dx5OLCqo(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::C6Zelk3L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::SNHSXkhv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP::Sf1YOPNe(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::UGRukm6g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::W8Mu2Rbs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::v9jRIszL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::KH4Qeooq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::FOm56FJx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::S1E1lfKk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::25wKXxAw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::29u2I3k1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::y1Hpruq9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::KwjOPSBZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::.ctor(MaxSdkBase/AdInfo,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::.ctor(MaxSdkBase/AdInfo,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::ifzog8oi(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::zmUDJ6SN(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::URc1TJ8x(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::pE0E4A8x(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::Fez0Quld(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::0JOJpHI5(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::8BflT4Jt(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::koxe3BeP(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::lp3UBvAp(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::y9xGo72V(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::21ujXuaK(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::31N5OzRz(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::G2_oXf0I(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::PrCA3J1v(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::pO4N2wBP(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::252YDRDE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::Cj1_yDWo(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::qqI2yhzw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::UAoGhbmP(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::Di31XxWJ(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::B9331J8C(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::1wnGoiAO(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::meuBW3kQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::uv0MBHdl(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::NcSblqfj(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::8XXVUy3y(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::TN94VuSW(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::G6l7l46I(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::DvatzrV_(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::xQM2UvUH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::rfeLdgQO(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::96mZ98cm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::zrcfvpGT(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::G_5lNSDU(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::GWuyxDN6(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::tnaNXtkq(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::TiwUO8Oz(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::oJglkdWb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::Wrge__0v(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::UVJpAhY0(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::_UyUnMiU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::oAKhoxGk(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::xD1XaFwJ(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::25XuFacz(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::N6IubL14(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::Vg1mvMzV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::8UWPn9OK(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::3ScsgIMu(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::Gvt_uOjd(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::QqBmfg2t(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::CSna7gq7(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::Zte7c5Nx(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::ixn71Qin(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::unkIDdft(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::4r9WUDUY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::1U_6eJ8o(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::ZEhA3aOf(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::_sRt3GLm(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::VQhrDmKm(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::iJv1zSHv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::McWPPX87(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::7yOmALtH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::mITYYj7H(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::zAHmEwhE(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::DgKxrCLs(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::6zMsEo5A(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::v5HKY10z(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::CJ7l5xHy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::BgnEhPhc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::Ji1EXXCe(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::cpW7C94w(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::C2rJi1Oe(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::MFhGC7_j(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::Op58VfCn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::zaAs2p4Z(System.Object,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::qAZc8Zod(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::SWQ39sNu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::EYZDmKUv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::VN8evdzQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::fNyK8Yvq(System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.buN33ZG4::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.buN33ZG4::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.buN33ZG4::Invoke(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.buN33ZG4::Invoke(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.IAsyncResult ZrZYFo6bYXYM71YyLSDK.buN33ZG4::BeginInvoke(System.Boolean,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.IAsyncResult ZrZYFo6bYXYM71YyLSDK.buN33ZG4::BeginInvoke(System.Boolean,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.buN33ZG4::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.buN33ZG4::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.KkPul9Ab/WXmQTG8M::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab/WXmQTG8M::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab/WXmQTG8M::.ctor(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::5zzGyNvn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::zjKfpsqA(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::Oyy2nBUQ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::GcUymq7L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::AkeTXyjw(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::oGvWW0Yy(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::7fY9X_sq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::IqHLgtUH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::Aly6xoyo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::0RRuy6Pu(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::Ypn1kLyI(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::PxcvBMPi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::D2hTqmCq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::CxliKJ5g()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::gCFwsrrd(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::r2BueeKc(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::IiRhIYbR(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::WLDj_cIq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::SPNn01nM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::UzO8c1CF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::wXcAyYLU(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::wbJbhjUn(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::d0O4zVwA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::c1r2WIwc(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::lQWpC1qW(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::LFfdPw5q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::OzzoVbIr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::sVlYRxYl(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::fOXW0s1x(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::x5gHouOE(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::aGhlrZ4T(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::qefFph7O(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::rAVhDw5D(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::UIm24aUO(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::czfMIXi5(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::sBlZkHJx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::m6Gm6F3P(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::G_m47y2t()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::2obOrd_K(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::Kk98j5qf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::Zo6cQ3Ot()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::2LDFnMly()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::FNExeL8G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::OjXrkF1x(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::xLjep2RV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::IrxiYsaa(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::Ou6IRiL3(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::TPmcY7QW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::aNEqQk2c(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::89H7fsWv(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::hwvNA1N8(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::6gM7RutG(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::JjBQ53XW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::SBo54Cfe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::BW0cSbPR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::lHyxOyY1(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::LGUODSyH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::FwoPAoix()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::XqDVHG0S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::k8N9jDSc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::WDgXer6h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::mjRZK_Bj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::MAzOL4_U()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::YRV5DUGj(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::AmpG1BA3(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::BT3BUU3D(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::487Nezmj(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::9nPBk1FQ(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::QqyNuv8c(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::Tn88ADvK(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::IX6ZVEDj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::UwVIFNAO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::KcNk0csR(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::0XC_sG3O()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::pQs7iaMm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::ymeP6cDV(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::9aUdRsKn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::vy7eOjPi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::UHvzK8kp(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::p_ZoFgmg(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::PvmALgwV(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::jDlm0RLC(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::H5Vfjv01()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::fhSe8I48(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::zc04N6uJ(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::N8GLlHK2(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::maYf1fjw(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::Hcw_YUr6(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::Y2pmpSrO(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::ixE5IPG6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::MS56GcqH(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::5i3gq2ov(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HiqjHarS::8HSEI7DV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HiqjHarS::9OJPFNm6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HiqjHarS::5Y9v0eAi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::5LPvoUiU(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::zbyoEpAW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::ZXfuApCk(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::zJH8ZGw0(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::mycJVlgg(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::lwX76H5n(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::wgLQ6Z4P(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::ORzjdt_S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::Sjplp8nb(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::uLNFUV4h(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.HiqjHarS::itMnkCrX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::XBmEfij3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::gNM9yyqg(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::MhzayNU8(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HiqjHarS::HTIHfMwk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::EqEPTYqT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::0sbwMcTh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::854pePr9(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::VRddpp8s(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.HiqjHarS::vjJMikUl()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HiqjHarS::crFkt27K()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::PIAcWdRp(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.HiqjHarS::HxoHm94D()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.HiqjHarS::hSISk8Tp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::PZMHJRhF(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::6_gVlOmq(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::7SypMf8L(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::8IRXTgyp(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::6RYGTKG4(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::ExymG45C()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::nBEMSDVV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.HiqjHarS::opYxuv_i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::xQ5fvH44(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::rZdPjBfi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.HiqjHarS::CRsnnTfC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::3WH7ce90(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::0v8WEUib(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::NGEETMrn(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::JVFdzvR8(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::zBCR7l6J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::LkgA4XuO(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::FBxnZ78C(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::0iB4i3Ki()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::ksKUZaV6(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::0CTGO1HK(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::e7scumJb(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::zDnhF_Fm(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::0Tji03ug(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::YEDhuu7I(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::3OCNiy64()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HiqjHarS::uEbzq7JA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::erFVLdSb(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::vdZztetN(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HiqjHarS::KfDIqMTF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::fmbGOsNX(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.HiqjHarS::fNOuBCRS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.HiqjHarS::9VVRS7Sa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::Fa7j5COF(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::0llf744n(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::jfwGj46q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::AZgpOhwb(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::wkMiGTq6(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::Qqp7RNqj(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::cP0SsDPC(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::sC6vpOpR(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::0_XnzssL(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::DtFubvJk(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::J0DlHKjZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HiqjHarS::U8fln4JF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HiqjHarS::ZErFp4UW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::TWmRsawS(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::vGKTB9xK(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::FZFpWjhR(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::1EQemPEP(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.HiqjHarS::eyn8Ohq6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HiqjHarS::YZ3JXtw7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::OX1KFxdX(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::rZVWf6hW(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::9QcsFXkv(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::WzzlszIG(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::7me1QpQl(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::TAZi68UO(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::XPBUSxnN(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::CIswmXQf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::Bezxnc84(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::yLHGKS35(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::OizqDz9l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.HiqjHarS::tkFUNrrz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.HiqjHarS::H3cRmkbU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HiqjHarS::CpEe6LVB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.HiqjHarS::xMLdJ8Vv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::g984j3e6(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::TKmyQi1F(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::XD_Tc4bX(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::to50Jyf_(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HiqjHarS::YqVY0b30()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::4kc31X2u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HiqjHarS::ftvJCr83()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::PNd_s_lX(ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HiqjHarS::xtg2ArJd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::d7wH1iHi(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::3mc6DT1J(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.HiqjHarS::U2JCzgIK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.HiqjHarS::nSeL9d2w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::y8f_gyMi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::EpqJIO1Z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HiqjHarS::S09dTE04()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::F8GO4tRz(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::p_OSWVCq(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::_IcCczMq(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Tf0hwmfP ZrZYFo6bYXYM71YyLSDK.HiqjHarS::vKGwwUhX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::msDdw0Ub(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::HIxgsvBN(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::GZFs1Y_2(ZrZYFo6bYXYM71YyLSDK.hopUZXhB)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::FVEjJIkg(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::H0_iljdh(System.Single)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::VfFp9o58(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.HiqjHarS::vu50K_Gh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HiqjHarS::q23GEtGT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HiqjHarS::jXTB7eYP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HiqjHarS::8QlVvRkd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HiqjHarS::0Ad6ec1V()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE::WzALinzs(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE::QGy_3ejd(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE::qQhiEMwH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE::R6Jh8G4I(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/hcOfyqGD::U91_Yc75(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/hcOfyqGD::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/hcOfyqGD::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/hcOfyqGD::mzCakYyJ(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/hcOfyqGD::ykwVVb4D(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/hcOfyqGD::n418vZ3E(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/hcOfyqGD::CAoqQ89D(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/hcOfyqGD::zfBXaScV(System.Boolean,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/Cvn1XrhC::19d8DzsE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/Cvn1XrhC::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/Cvn1XrhC::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::ba9MHy6L()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::5uhWypYK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::EU6rkegW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::KXnlWyTv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::HrzsgJ7t()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::gYFdVsHP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::7lbH6Jpz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::KltYpvQ3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::rzNmTuvi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::NGA_4Dqh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::Y1SiLl3d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::qscF3SPQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::BoRnxMkc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::YoeFy5zN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::3VaGo76o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::XflSJ8bc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::8chMni4t(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::CHY303K7(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Jj0frcav()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::p2qeXgoz(System.Action`1,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::eYjCkN52()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::3F4xmCqr(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::OSbDd8PW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::QFX673Oi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::AtiGc66w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF::lCqDSjWW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::vfZYJz91()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HiqjHarS ZrZYFo6bYXYM71YyLSDK.j6C8atiF::o7yK1cjs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::zmETxu2I()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::XPMUkI_Q(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::cIdlzp_p()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::zXTocNFV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::L3sQ2Rje()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::cniuFfBM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::fhmnj5od()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::_GfjT58S()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::1TlBP5YB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::WPZHc8HK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HiqjHarS ZrZYFo6bYXYM71YyLSDK.j6C8atiF::YR7vmSeo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::KIJW6vz0(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::AoZh_gQ6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::mpvfcizZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::MkqSOVuc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::TlykX5uT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::6PqUL_Ii(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::5w0hjbi1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Uyywf8iI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::zhzuraVH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::knf6D_tm()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Mve6jyzd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF::71lJfGj3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::NpAPhmAS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::N8azDxOc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::3cEE5eFU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::J1ms43HI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Y3YpQGMe(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::nXGSkJvg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::VCKA5fh5(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF::yX9sgchg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::o0lBrr22()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::VjjXjPqS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::_taWDkec()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::O9hpruCJ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::27ytqMlP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::FUjNfBjF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::TC4WFNCQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::WOivWAnJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::l8yyIhVZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::movbaQvJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF::wusTdd8j()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::WWcbZxsB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF::KsRXKaNq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::8o_ceWIM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::jxWyao5n(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::rWb11OLD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Ap7ueRy5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF::YhscC6cX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::lg9wODLK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::ghn7Jxc3(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::fKgB55hV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::yOLZPfg5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::hxtnGunJ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::DtEKW19E(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::EXjOnj9d(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::d2qTzcOB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HiqjHarS ZrZYFo6bYXYM71YyLSDK.j6C8atiF::3A51B5uP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::i3ntPQlI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::ItQQwYzk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::yBHJfktP(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::YihNJQuQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::9ML1iqSH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::rkhiqchq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::SVpmDZpW(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::KqWnYLOW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Gi1XlD_0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::XfjPoDVQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::04zdxs5f(System.Action`1,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::l85fLcJI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::z7UlpCLE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::cvCTuK1o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::V0pWQHSu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::hltVyuP6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Hi88h38w(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::3PrmK8Fn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Aj1K7jrX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::4EpffXBB(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::t42cm7O3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF::fn25QjSK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::UoqEP0DF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::11QLDV9A(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Y7VUqXGI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::z6iJAf_M(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::iXuJ0sDQ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::9J9cR6rO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::W0flX8le(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::8un3O1OE(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HiqjHarS ZrZYFo6bYXYM71YyLSDK.j6C8atiF::_Fvj4XPQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::nul07acp(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Cd5cPLEX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::kvl8mPeO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::wxFrXwLM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::NqWrmBqw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::WqsTmjyk(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::KYEHzhJw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::_a7QVOMz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::99pXFT_A()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::ddiGgpac(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF::pwTyaWr7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::zzU4YY6B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::JoNvdPhP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::2lrt53JX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Wb1WE41h(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::VSxmB3VP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::cV_d5Wfb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::k5WjIjOV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF::N9BZfVCi()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::7koVjUwP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::pLornxxB(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::RDSEE8u4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::lxddN7Kc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::_z3QgTtb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::JqkRt6Bp(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Ct6jBGsu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::PiNcxt1E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::1QcPesE4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::S2VpKtRW(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::diwRgpyc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::TbYB0l_a()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::WXGmdVL0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::aNJks8xQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::HhWCo8Mz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::0CVZYE5Q(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::NnzRBOUx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF::ibq6qtUp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::rAI5PKt8()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::vbyL2vmX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::4kaVcHdt(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::jtCVckHU(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::wuA1yCz4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::bpeFp6fA(System.Action`1,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF::ewAPGMev()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::e9lZw3x8(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::qmoYVv2N()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::anauwVEg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::CCJGw_l4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Upo6P1yT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::U6LfUPWY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::19tnW46C(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::T9zGXDva()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::0dt6hJSP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::UYqDP73H()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::WkxZd9t1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::jbNoJJfX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::05eClKyy(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::jy5Sh2eP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::JWRg7DDH(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::fa9nufPJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::cX8yKa8n()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::sKMnVJtp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF::0cYTY2r6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::9WSRg4ZM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::WDGMPZ3z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::0iGPfSZN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::_8VBIWUu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::4zWdxLeJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::lNsIIixi(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::NBfR0lIV(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::LrjpJiZI(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::88wpDqNz(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::RBXVvUdR(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::qQDFDc94()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::aE6qhnzg(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::5ZcQ3gBI(System.Action`1,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::wJM8Q5M4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::1HfSLDbn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::W88wNYMA(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::RXxSxziK(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::wnOAVxi3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Srtu9IPw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::9fZM6TJd(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::sW0yvzeJ(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::JOaV87OP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::nWzyj_1o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::pawJ7OZB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::RulzgpdX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::jgiIYx47()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::CcBLms7V()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::kGGQJOW_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::_ivxnwaS(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::A3hjFQtj(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::jJ8QNgzs(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::6uRngcYj(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::722TRhMc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::cbkWAU6d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::kolunqqQ(System.Action`1,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::lvabsZfs(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::eG769bSq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::4rkmZj_f()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::KpaUFjbb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::XNwPCDJy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HiqjHarS ZrZYFo6bYXYM71YyLSDK.j6C8atiF::2f6ceFGn()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Pbmt1v2R(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::tSU3verj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::I_T0Roz3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::wfzVVqRh(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::th18KGKD(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::r3asQ2bb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::HBU0Cila()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::gU19h0wt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Jo967r_G()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::yrXVLPKF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::Kq3Gt9HQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::UcNy73Fr(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::8CFJuNTX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::mSDjWzxS(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::u0hfDwEJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.j6C8atiF::g0pZvN_h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.j6C8atiF::xOEAtPVh(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HiqjHarS ZrZYFo6bYXYM71YyLSDK.j6C8atiF::jBwAOObP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::vxJCMwHo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::xHYY495e(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::lZ54ZFZC(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::ePWAZKyZ(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::7OmWnNzD(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::v3jlSQDe(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::O7KTwKjs()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::Y2OeZYse(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::XEZeJ4ra(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::991La2PS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::ShowH5(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::BxR79oEW(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::6KSafg9s(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::LoadAndShowUrl(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::lgW9mFj2(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::pP0tK3uS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::Pk4gqkV_(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::ZUZnzDtR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::2coL_4Gc(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::6Y8CeFgV(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::rtJSNGuY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::KIXYYS1X(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::gqXBPH72(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::3YINkTLp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::RvITH6QP(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::JtTODZFa()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::HmpHz02S(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::0If7Qpsv(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::gqMAP4Or(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::Ok3QSMNE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::Z3vwcuBs(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::paIepLEt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::U_mEK441(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::rJvWtmpn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::ShowH5(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::6BuVcdN7(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::XQCIBPEz(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::B2d_xMkz(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::Tky1tHhq(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::10V9YFYq(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::Fz3f3JWy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::IsShowH5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::HideUrl(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::oNaTtW33()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::uQw_44cd(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::AdIfZUKN(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::1DUKHWlG(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::_Kx_DZ9j(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::v1v2nLF8(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::x7dHMmjd(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::quyRJ_YG(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::9fBBj1V8(System.Action,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::FAUIaisW(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::XGx5piWS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::moafLgF8(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::EYRe21P4(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::qcS0YsMe(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::HideH5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::GWeZb5rV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::jKsnnT1W(UnityEngine.RectTransform,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::kE_NHT5B()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::uJ7IFsUh(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::nECUAR9q(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::T7rd0_AR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5::x7r_FZz2(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::XbjYJK4a()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::ImZFMviN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::RQ3cLyIp()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::vdGOSFZM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::KEE53tCA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::XOr1leY3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::jzHK9jDI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::ZtE_jS0e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::rqoZ7HdW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::<.cctor>b__28_0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::m4PXqc2E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::oAL4uILV(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::Ehunx9l7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::get_H5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::IsInterReady()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::s2dK6ftK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::3rDoqUpC(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::fmoH95MK(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::4rUgHgtk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::b7oH1dk5()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::1RY73j5w(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::Track(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::j3hHifgC(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::yMl4MWYa(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::JgU6p97Q(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::rYMpoHPx(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::OhMES_eR(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::20ulboe9(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::RegistIosParam(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::k4maoS2_(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::a0eoSigx(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::WHp3pN2E(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::jgWOQb85(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::iH8tuPww(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::WCz8H8NK(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::2mgisgeq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::iD9UwCMC(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::yi74o_Ym(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::xY54dCvU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::9isByu9h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::ovKYZpOB(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::QIu1hSkQ(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::ShowSplash(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::yuS22F7u()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::h66yDTUT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::GPh4GivL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::DQrxbxew(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::g1BI5ZIU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::TrackLevelUp(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::JNVamO7i(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::g1JjHivB(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::72KoHfvn(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::Cu24zYxS(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::4LTKZ5cG(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::AJHxEHS9(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::50lZ8d75(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::yoPle9lV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::b6y1gFVJ(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::f5yNTAik(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::S2AkUPx1(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::cRtW18Zt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::Msm98fiN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::TUsPbcu1(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::CexoQZlZ(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::9gdq4nNu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::x4RDWrBZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::X6zGkahU(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::GbPOJEA3(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::vovprXjd(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::WhnqMlgT(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::DS12u7S8(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::qkUZkVSb(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::vfuKt1We(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::4yNybRK6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::OHc4rnzO(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::dGAWzlND()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::1iseykup(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::ShowAdmobInter(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::0UOu301i()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::9NTnxV_w(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::EgNsyNeR(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::0rIwcISE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::dV_HyEXm(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::CR2F2q03(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::BvMPbRXT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::TrackH5(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::rHwFQ0qP(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::bkCL4oWK(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::kT34dKbm(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::tdX6nDPe(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::Urw2wjMM(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::v4a8_J2H()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::73zOGOIe(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::iwV7jBdQ(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::n3TjMUQt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::ShowRewardVideo(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::CX_53IaL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::N4TojSDj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::ytk8HVTH(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::09LZp3z2(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::EWicO1Oa(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::ww2YPT2p()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::GetWithDrawOrders(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::wutuIlPT(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::6T8JvNTz(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::FTvlxThp(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::xUesGX0D(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::Os3QSVUd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::VyIBItyd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::NWc0SGun(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::IsVideoReady()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::iraECkbH()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::0xqnoNSo(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::jZ5RHGA6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::Kivgln50()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::iMWvKZJS(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::eSFR1eqv(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::get_Instance()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::DLsV9YRX(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::2wIyixO2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::beTGPXqJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::72IteqiB(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::xUC3C2VL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::zMQvC_vK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::GetCountryCode()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::VrlHDCzt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::xNIcg0Vd(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::ShowInter(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::gthUE2Jq(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::_iilar3r(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::c2AvB7vF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::fvJEuG3W()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::EMsiD3tW()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::C6bNLf2i(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::FZ3TCQOc(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::W507VHBI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::VH2n587R(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::EGXJvm_w()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::oX6k952J()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::32ZunX41(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::ksHeDQqr(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::odP9DYB4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::Ae2_HRsS(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::_PK3PR3N(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::VX9TaVg9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::xILc7UWD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::Drr2uCyr(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::6pMhmym5(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::69b1Sm_X(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::CreateWithDrawOrder(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::ostyZhvw(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::Init(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::Kfo7vlqk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::LQB9uZrf(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::efUpzpFe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::get_SdkVersion()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::lNcyDIzA(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::aqlgIyXk(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::LGww1RRs(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::lrDWGHk6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::LJVG1Gm9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::fkSoYYMS(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::4ALGVe7m()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::TD_5cXkU(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::eKJ1WC9U(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::xVWwB1io()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::0c8nW9MC(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::4BYQKexQ(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::3E8rVS_3(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::t2mrtkFN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::pZojZ3YI()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::3UHkKowV(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::IBHK2Wgb(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::4w0Db0ZO(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::UgwSrSKG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::QhC6coi5(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::1OsDFCSr()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::XmrXXrZf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::hC0WlplA(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::jrih5p_G(System.String,ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode,System.String,System.String,System.String,System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::8cerFHMO(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::DquUDnRU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::Vp9FrATO()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::od5rmfBc(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::wHjWkz0_(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::VSzpOVyl(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::AA6EhRtL(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::aljkKyW3(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::nO4f5s9v(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::FBb2Dmiu()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::kw5xwYGE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::QSMMdBaS(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::FMe_pFuK(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::o_a1nmPO(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::NTHv7OZR(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::07H2JgKP()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::nT2HHtBe(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/SDK_H5 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::DH_v9W72()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::VsoZQ5Rd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::KPxpAofs(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::WeQB4yb2(System.Action`1,System.String,System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::LVFvFy_n(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::aqTOJr7d()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::KyWrcDbf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::tzMKq6oi(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::GetWithDrawConfigs(System.Action`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::hz26oDOm(System.Int32)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::lAqQI85a(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::d2AryDOb(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::ZHah_mQ7(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER::IsSplashReady()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::tjA_6nA8(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::KzLvcH3m(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::_sFjMmXK(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::aHRoS1xK(ZrZYFo6bYXYM71YyLSDK.WzVrEiL2,ZrZYFo6bYXYM71YyLSDK.EkCGohlU)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::1nuOkYO_(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::bH2FO8vi(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::MlTwPpFD(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::lACsR1ya(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::Y2sGoVCK(System.Collections.Generic.List`1,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::uMMZHuLS(ZrZYFo6bYXYM71YyLSDK.8SZrsi8s)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::HtQEKajo(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::nFDrvED7(ZrZYFo6bYXYM71YyLSDK.WzVrEiL2,ZrZYFo6bYXYM71YyLSDK.EkCGohlU)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::6G4Co_eo(System.Collections.Generic.List`1,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::XIX0YDuV(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::HR9CQ6PT(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::YlmLSwrd(System.Collections.Generic.List`1,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::cZyxcviq(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::kLeaJlXu(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::nBTdTyVz(System.Collections.Generic.List`1,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::zDZ6jNSo(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::7JVG5hmR(ZrZYFo6bYXYM71YyLSDK.WzVrEiL2,ZrZYFo6bYXYM71YyLSDK.EkCGohlU)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::gk9SZaRt(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::hQNYbnKv(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::lcDwqx3l(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::15rIHWdm(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::yzfy4nS0(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::4TKJk_YK(System.Collections.Generic.List`1,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::O4UdiFYD(ZrZYFo6bYXYM71YyLSDK.8SZrsi8s,ZrZYFo6bYXYM71YyLSDK.E6E02u_K,ZrZYFo6bYXYM71YyLSDK.upOI0mf9)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::QTMoHi04(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::0oBwM8Nh(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::Vb07w8p3(ZrZYFo6bYXYM71YyLSDK.8SZrsi8s,ZrZYFo6bYXYM71YyLSDK.E6E02u_K,ZrZYFo6bYXYM71YyLSDK.upOI0mf9)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::s87nfutL(ZrZYFo6bYXYM71YyLSDK.8SZrsi8s)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::3IA1Xzhe(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::q7sQCcle(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::T3kQOdBp(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::dlcE12bi(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::oRjhMN8y(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::wVWH2pXc(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::zNuOZEoy(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::1tfzOOQN(ZrZYFo6bYXYM71YyLSDK.8SZrsi8s)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::p_EB4Dbc(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::B0qtwr3a(ZrZYFo6bYXYM71YyLSDK.Jok2RmfI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::LVmk4BXw(ZrZYFo6bYXYM71YyLSDK.8SZrsi8s)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::UlYj_Ngf(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::uC3LW9BZ(ZrZYFo6bYXYM71YyLSDK.8SZrsi8s)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::W1raF0wg(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::sY6HS60B(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::RbYZN3VW(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::WzDfIEud(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::z_FveWv2(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::XSsp4OHW(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::1v_BSeTz(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::zxjYe50O(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::kmfdZ2TS(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::L3IrwW_r(System.Collections.Generic.List`1,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::dXjUILtA(ZrZYFo6bYXYM71YyLSDK.WzVrEiL2,ZrZYFo6bYXYM71YyLSDK.EkCGohlU)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::kqt1Twwg(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::BJ8jT0l_(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::B4h310_p(ZrZYFo6bYXYM71YyLSDK.8SZrsi8s)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::GxrLa9UX(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::3QdLSZq9(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::sVltxBmX(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::aRWbG9y8(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::GBQPQRv0(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::dQkHA1qE(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::4PSYt5Ak(ZrZYFo6bYXYM71YyLSDK.8SZrsi8s)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::6OTIw6XH(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::b5c_ibx0(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::aasFHFZQ(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::lka4R_bA(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::QsUrVep6(ZrZYFo6bYXYM71YyLSDK.WzVrEiL2,ZrZYFo6bYXYM71YyLSDK.EkCGohlU)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::X3gUGtGZ(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::iqFAH_cz(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::uCuo8IQ0(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::Hs4XFyPW(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::cUPOfvo6(System.Collections.Generic.List`1,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::NBGA_p_q(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::DLRMp8AI(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::8mLfjD5e(ZrZYFo6bYXYM71YyLSDK.8SZrsi8s)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::bjC5pkXW(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::yTJAgbsT(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::xDgDUtA3(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::sMlLGf4L(System.Collections.Generic.List`1,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::ULiwlYOL(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::SrBudGCO(ZrZYFo6bYXYM71YyLSDK.8SZrsi8s,ZrZYFo6bYXYM71YyLSDK.E6E02u_K,ZrZYFo6bYXYM71YyLSDK.upOI0mf9)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::AYO79gdl(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::_KAcoa7J(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::CenH09d3(ZrZYFo6bYXYM71YyLSDK.8SZrsi8s)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::hD728wst(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::cgiq2grN(ZrZYFo6bYXYM71YyLSDK.Jok2RmfI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::m4FALIQS(ZrZYFo6bYXYM71YyLSDK.Jok2RmfI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::uStaiWhm(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::XZOl6IVH(ZrZYFo6bYXYM71YyLSDK.KkPul9Ab)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::gAyUFFaT(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::JK6lvoPR(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::MIZy0tKw(ZrZYFo6bYXYM71YyLSDK.WzVrEiL2,ZrZYFo6bYXYM71YyLSDK.EkCGohlU)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::8rB9joBJ(ZrZYFo6bYXYM71YyLSDK.WzVrEiL2,ZrZYFo6bYXYM71YyLSDK.EkCGohlU)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::iqhO9hlN(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::e0UPnjht(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::X5EzSksh(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::10mHRJp2(ZrZYFo6bYXYM71YyLSDK.i25nl_jC,ZrZYFo6bYXYM71YyLSDK.OxsZC3BO,ZrZYFo6bYXYM71YyLSDK.0bh2cKMy,ZrZYFo6bYXYM71YyLSDK.p4hn_DV5)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::sDW0TO5s(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::adV8rkTE(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::ic3VQAod(System.Collections.Generic.List`1,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::Zq9u8hMl(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::nS6LY_fX(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::1gtA6uJG(ZrZYFo6bYXYM71YyLSDK.WzVrEiL2,ZrZYFo6bYXYM71YyLSDK.EkCGohlU)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::XPzE9nHu(System.Collections.Generic.List`1,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::9buo1Ons(ZrZYFo6bYXYM71YyLSDK.8SZrsi8s)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::mBAGVRsV(ZrZYFo6bYXYM71YyLSDK.WzVrEiL2,ZrZYFo6bYXYM71YyLSDK.EkCGohlU)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::Io3cHLyO(ZrZYFo6bYXYM71YyLSDK.Jok2RmfI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::LBBWtEc1(ZrZYFo6bYXYM71YyLSDK.Jok2RmfI)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::ruAU9tpY(ZrZYFo6bYXYM71YyLSDK.HiqjHarS)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::3v8mX2GE(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::p_QKH6R_(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::tzKqYRCZ(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::on9Ajqrv(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::1Y1Oaa3e()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::2478FK2q()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::_Sj4woAP(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::Dw1cygm4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::ShowAdmobInter(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::PGszcR_L(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::RxKcVTM0(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::NdTdTS8V(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::Eas0j7nQ(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::m_NUzgDB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::2ZoRwhPK(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::ShowSplash(System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::6tfY4bTZ(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::rZF6U8Rq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::_RMHK4__()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::MTHRDT4n(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::Xa6g5j24(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::zQNG6lYQ(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::ckbCERt8(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::3xMaznep(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::vdFiWQrR(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::4MSLAabY(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::zMyhCFuA(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::Hyg_Ntb0(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::CELdUsMb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::bdFaGQNC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::mRDT73Ft()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::S9VpvPfG(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::yJc8fhi0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::xwh1L2mC()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::ohRZeEPK(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::_t5CXl4R(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::dASSCDoL()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::xvnMXG2h()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::YZ6OYxY0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::xx_CYOt1()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::PqJaoqem(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::RfYkFviV(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::pUf7zefd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::9O7StYB6(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::iEHZc_wk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::MsqJf0hG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::2zDNYOfS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::vxQ2FmWX(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::FcUA4QNs(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::mUoAcpuz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::zbk_Yu5n()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::0Iz7FY61()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::Ju9iql1n()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::hDJZyKZ3(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::n8doAKsi(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::krq7RWK_(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::lZCaFe8T(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::UZMUpCAM(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::7Ejx0zi6(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::JVtNuPib()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::5E0S_oI7()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::K1frw2QZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::9201tVob()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::pVrmLrZi(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::f66aFH0M(System.String,System.Action`1,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::5WuX5RGM()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[ZrZYFo6bYXYM71YyLSDK] System.Void ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT::LJiYTOJE(System.String,System.Action)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find Method References in Modules... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find Field References in Instructions... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Skip Methods... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void jyj0EesQ::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void jyj0EesQ::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::SUUw0Rrk(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::as3AT5X_(System.String,System.Boolean,System.Double,System.String,System.Int32,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::TrackIAPPurchase(System.String,System.Boolean,System.Double,System.String,System.Int32,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::Es1MfzlS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::gKfN3YLm(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::U05PwZep(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::tHuxEqP8(System.String,System.Boolean,System.Double,System.String,System.Int32,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::I5Ff_o7w(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::BR1lCv1G(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::Track(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::lYBD2s9U(System.String,System.Boolean,System.Double,System.String,System.Int32,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::scclp8z4()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::8IEjqMiD(System.String,System.Boolean,System.Double,System.String,System.Int32,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::R_9S34Ky()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::W61PlXXl(System.String,System.Boolean,System.Double,System.String,System.Int32,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::kjTk4p7C(System.String,System.Boolean,System.Double,System.String,System.Int32,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::I8LubQOq(System.String,System.Boolean,System.Double,System.String,System.Int32,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::a2uyVuR_(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::TrackIAPInit(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::Qp1tYsDE(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::MtLpwLdl(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::tzRrC2G0()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::62fRnMaT(System.String,System.Boolean,System.Double,System.String,System.Int32,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::3Tw4BNd6(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::WkSCdZqN(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::5W1qHigN(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::TrackIAPRestore(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::mT1kjPOC(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::6nEBYLf0(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::MNk3rpxT(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::Init()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::xVfnMSGw(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::JccARFHZ(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::HsEMgBca()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::0X0R1TrQ(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::CNtoorzL(System.String,System.Boolean,System.Double,System.String,System.Int32,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::vWPjVprT(System.String,System.Boolean,System.Double,System.String,System.Int32,System.String,System.String,System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::HPb2Bh8i(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::DFBc7GxP(System.String,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Analytics::dCD8UA16(System.String,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::1MXFixbp(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::RMKQlApU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::DB6dT5Nn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::VxhBBUXB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.iiYPpatD::Hf0foeW0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.iiYPpatD::Tr2Z0eSV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::DDgyKY5b(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::UL1tRFjX(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.iiYPpatD::7xbcbCUV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.iiYPpatD::N7Z0Tx2Z(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::6cXjvEKD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.iiYPpatD::1_cxd6hC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.iiYPpatD::LVbzdUqB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::q96rcyYw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.iiYPpatD::_RKp8tJb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.iiYPpatD::DWGRnCMC(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.iiYPpatD::Ym3inoYo(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.iiYPpatD::LHaAE35t(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.iiYPpatD::ZcndOAJ0(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::GESJnrkI(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::5S4X78Sy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::QzwIzHju(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::uvA_F9nP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::Cw41lUXf(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::V_oJ5MPO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::bmJsz_Th(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::1uyNjXnx(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::hGHl1uEQ(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::NW9kRwt9(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::u4j1Q5kg(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::VjQVP99S(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::0CcxZrXB(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::LbxX0GsD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::TjpKT31q(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::GbTxH1KR(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::mYUjFwxS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::A0HxiVgS(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::MJk9uFDS(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::Fsyevm8O(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::X8m89Apj(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::G0pBkgrw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::4GhgNAqr(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::X2ZIvRFa(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::MalUoEye(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::9agJQLb9(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::0P9x5PyF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::i0LfJrL5(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::OnsM4lmc(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::Y7M1JZjy(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::1iGH9GHv(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::VoF5oSgL(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::e3CKuMXc(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::7bfpccGb(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::5KMvYMa5(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::EDHT73AJ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::oH0l2mK8(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::yBFTFPXx(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::902UMNRw(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::R8exP1Rp(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::A30HzQ7Y(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::G5UHNVUL(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::j3QbvQ4h(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::mwFIkR3M(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::fTqVXDJV(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::uYDc8LVK(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::IkYNSVmJ(System.String,System.Object[])] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::cOTzo6Od(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::JJZSVwUh(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::gwTss2Ha(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::T8zT8vm3(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::jN1Naqmx(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::J4U61biT()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::7idPOlpD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::mdRisR2V(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::fn0NlRNz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::av06FVwY(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::BEhahfIf(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::hNNqF2vS()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::Wylo9ATd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::tXcJaP4m(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::IGFJwj0h(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::cAk5PFLE(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::ESGgI0kr(System.Collections.Generic.List`1,System.Action`1,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::FLqq3OsK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::pBjvhiIj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::qIY4Zr1U(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::Iz9tKS54()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::J2qRpFFQ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::CFUpD7Ml(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::FWoCBUgP(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::remove_OnInitialized(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::Buy(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::gbl12qaN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::hw7IqQnj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::NRVyj5fr(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::CU5JFry4(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::SetLogEnabled(System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::VbL7DaJq(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::cSHdmoHc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::_9PCBCMt(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::QAdXNb2w(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::IsInitialized()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::sl2m_KQt(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::GetProducts()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::Rh09NRkw(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::fHUW5tru(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.IAPManager::GetSubscriptionInfo(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::9Npx0bJJ(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::CPYc1Z1B(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::27_KQf7l(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::4RDHlBMh(System.Collections.Generic.List`1,System.Action`1,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::j8WkJSex()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::2I7bsX1l(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::1BohBtaL(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::tJE_nHuy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::wt2UJgBk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::wfavkaOT(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::Nk7Cd1tx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::3qk2e90s()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::add_OnInitialized(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::3MdDNcLf(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::nRnbHUfP(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::dGugI0Wy(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::t9tIZ2tj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::NEhYZt6Q(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::Dispose()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::2A0O6VL8(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::Xu3asYrj(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::jGlMyF7E()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::zFm6pnwx(System.Collections.Generic.List`1,System.Action`1,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::IcXuNYAd(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::Init(System.Collections.Generic.List`1,System.Action`1,System.Boolean)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::YKo7qIAu(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::Restore(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::g1AxSgy2()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::uxB0ylss()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::0TfCyRli(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::z1grr9NF(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::8_xwCy4g(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::2foOtBMe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::DrYwdnEN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::OCN2ID2h(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::NB_1icMk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::HMv5mZTe()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::scsVfmxm(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::ObtDy5tl(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::cElX_9Hg(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::tfo9lokq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::8rUMIcLF()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::NeedShowRestoreButton()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::k0PL0yg6(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::icAi6yKb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::iUPTn3uF(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::gsepNmD3()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::W6pPp9Ml(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::CheckEntitlement(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::Vm_e6vwd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::Yn_e_h69()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::1h89axPt(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::vAkbUozA(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::OKtCAkza(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::sRx61UXh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::dKQhmLjZ(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::H7rDGBl_(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::jLwhiR1_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::uQhQnYKB()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::nPA_bLyf(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::UTA20ER3(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::g6VkVltc(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::L0zY3LeB(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::Z24QELEa(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::BGft1XkR()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::DKBmOV_j(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::remove_OnDeliver(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::wrrX9e5_(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::EGviku5F()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::JiQhnV5_(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::cDbuTZwa(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::uq2YMix_(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::pUoyB4mw(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.IAPManager::7fUdu9QT(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::J3SIlY5l()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::XPBHO1NX(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::PX3Ziu9Y()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::ZpHEKTmk()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::QZAJ42JJ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::1PePU7jx()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::e2fKMvLy()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::add_OnDeliver(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::SlTJkzyU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.IAPManager::qfvCiywo()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::K1hH7gz1(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.IAPManager::PBAM_Nby()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::WlE_yDsd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.IAPManager::VXfVftCY(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.P4S4xyJ1::PhUFAwUO(System.Collections.Generic.List`1,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.P4S4xyJ1::0EUDM7Dz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.P4S4xyJ1::s1YCzQu_(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.P4S4xyJ1::OGkysdDG(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.P4S4xyJ1::4cEcYsCD()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.P4S4xyJ1::Qk9TOqqV(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.P4S4xyJ1::poa5oZ9n(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::x4O89DQV(System.String,UnityEngine.Purchasing.ProductType)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::Simple(System.String,UnityEngine.Purchasing.ProductType)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::7PnNWu1I(System.String,UnityEngine.Purchasing.ProductType)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::fIYzacn_(System.String,UnityEngine.Purchasing.ProductType,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::Hl7N1VaH(System.String,UnityEngine.Purchasing.ProductType)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::TJZN57ev(System.String,UnityEngine.Purchasing.ProductType,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::IhwHChv1(System.String,UnityEngine.Purchasing.ProductType)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::JPvQy8CV(System.String,UnityEngine.Purchasing.ProductType,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::Ivjku5VR(System.String,UnityEngine.Purchasing.ProductType)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::IlescEvg(System.String,UnityEngine.Purchasing.ProductType,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::EbTBDSTt(System.String,UnityEngine.Purchasing.ProductType)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::WithStoreIds(System.String,UnityEngine.Purchasing.ProductType,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::gtXat4mR(System.String,UnityEngine.Purchasing.ProductType,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::gYSBAN79(System.String,UnityEngine.Purchasing.ProductType)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::at3UWn19(System.String,UnityEngine.Purchasing.ProductType,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::EXv4T0Bf(System.String,UnityEngine.Purchasing.ProductType,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::1lHMWSYE(System.String,UnityEngine.Purchasing.ProductType,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::x21kdd4y(System.String,UnityEngine.Purchasing.ProductType,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.ProductDefine::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.ProductDefine::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::6AANS7gk(System.String,UnityEngine.Purchasing.ProductType,System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.ProductDefine SDK_IAP.ProductDefine::1i8AryG_(System.String,UnityEngine.Purchasing.ProductType)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::dXCyXx0q(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::utv0xHLY(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::1mHkbNgh(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.PurchaseResult::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.PurchaseResult::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::az_EqBtP(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::Fail(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::cdDZscDM(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::iNIQLW6l(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::2RTNewAh(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::tolJscnn(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::oCUN3Zdu(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::Z8QG4x10(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::qqBh24Uh(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::hbAt4Jt1(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::jWexVnt_(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::Yl5kTQv8(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::o0YwMxt5(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::iegCtJLr(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::MY8lfAQR(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::908RmRuP(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::C3hACk0L(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::bn2ONfVU(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::HBL7KxUU(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::6jv8rU2A(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::cH6mbhVD(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::RtgQ1UDS(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::uFnwiVIo(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::M_zhhPD5(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.PurchaseResult SDK_IAP.PurchaseResult::Success(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.5JLe07NR::c03LPS4e(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.5JLe07NR::wDxXjduO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.5JLe07NR::TIUcLop4(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.5JLe07NR::Zy1UT0f4(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.5JLe07NR::gYParqCk(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.5JLe07NR::pArNXGfO(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.5JLe07NR::xtZWN9Zs(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::D8JIe9Kb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::iQxFsYcw()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::Rvw3gCnt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::HasRestoredItems()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::w02xuEnh()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::WmcZzIPz()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::MYgX1Vvt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::yrEsY9zX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::KmAi24pg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::HDVUVNlG()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::H7MVSvgE()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.RestoreResult::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.RestoreResult::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::3uNPKupb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::IJQvFpTf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::dJtVQ7uY()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::OmXVKXbv()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::vzFyACi6()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::eDpYvpjf()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::BqTx9WH_()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::Y3a4Ne50()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.SubscriptionInfoLite::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.SubscriptionInfoLite::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.b4eGWFfo/ReceiptWrapper::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.b4eGWFfo/ReceiptWrapper::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.b4eGWFfo/GooglePayloadWrapper::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.b4eGWFfo/GooglePayloadWrapper::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::0gth0gDU(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::rlMZ1a4p(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::uEtATvdf(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::0MyU8sMM(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::REbI9NKJ(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::JWdpYLsf(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::K4NuZTRf(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::QyzeSLXl(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::5ACIaOxV(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::4cqffcZg(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::sTPnPbZI(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::Utrf2zZ0(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::UrAPzIY3(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::oLHsOJbA(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.b4eGWFfo::St07le9d(System.String,System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/vWFTXjiG::5SeQovq_(SDK_IAP.RestoreResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/vWFTXjiG::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/vWFTXjiG::bWOG_Ufq(SDK_IAP.RestoreResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/vWFTXjiG::hWWisJVm(SDK_IAP.RestoreResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/vWFTXjiG::FbGjE4L1(SDK_IAP.RestoreResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/vWFTXjiG::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/vWFTXjiG::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/vWFTXjiG::MIsJovuc(SDK_IAP.RestoreResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/vWFTXjiG::n2Mt8KXj(SDK_IAP.RestoreResult)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe/s4DKl0py::6q6jY2uW(UnityEngine.Purchasing.Product)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::IucaBUCY(UnityEngine.Purchasing.Entitlement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe/s4DKl0py::162m66HJ(UnityEngine.Purchasing.Product)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::ip0g1TpK(UnityEngine.Purchasing.Entitlement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::sxJZNz6C(UnityEngine.Purchasing.Entitlement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::Z_882MEN(UnityEngine.Purchasing.Entitlement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::9FG7BVH5(UnityEngine.Purchasing.Entitlement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::kjMQ2sXw(UnityEngine.Purchasing.Entitlement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::JIUrwPzi(UnityEngine.Purchasing.Entitlement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe/s4DKl0py::uNSpbMaB(UnityEngine.Purchasing.Product)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe/s4DKl0py::90UCvXkD(UnityEngine.Purchasing.Product)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::Ay5B8ES3(UnityEngine.Purchasing.Entitlement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::1OZ8954C(UnityEngine.Purchasing.Entitlement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::c7oMpcmx(UnityEngine.Purchasing.Entitlement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::4F_PiXI_(UnityEngine.Purchasing.Entitlement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::SkVFn2mJ(UnityEngine.Purchasing.Entitlement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/s4DKl0py::SIF6Tmu1(UnityEngine.Purchasing.Entitlement)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe/s4DKl0py::tLOrS1y_(UnityEngine.Purchasing.Product)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::mNZWchYK()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::FZ5WHDas(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::b5aTBHuG(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::oj0Q3IN8(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.bxoh8bRe::Z1JZoCwA(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::Y4GOo8Gw(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.bxoh8bRe::bOn0Q07a()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::8d6fEDTe(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::dsSZr7FM(System.Collections.Generic.List`1,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::EkKu0LTy(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::dVU0rtqc()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::vS4gns2z(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::4sVX6A_d(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::FZ96qUHI(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::qvpf6x2M()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::fyJ5HDUO(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::q_PfWeRq(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::GktAy1PV(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::.ctor()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::JqxXWRGB(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::rZoB5x4f()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::l2HMjidQ(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::I58smuwg(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::CEQ0B6ov(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::3tQxwKuZ()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::FGtXsjGh(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::cdsxTio_(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::KowhgVms(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::rpiw0ZDY(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::oBhSM_6y(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::GEjmS5Ps(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::26pO9KxR(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.bxoh8bRe::kKtynbuB(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::Bz4Vsnk9()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.bxoh8bRe::C7d8282k(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::J9QImnBa(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::fnxSGqfH(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::Yo9FbD8k(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::SnENcydd()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.bxoh8bRe::3bWzTRyg()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::dM85WL3L(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.bxoh8bRe::1BSMctOF(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::efHQXQpp(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::KIOHn8VB(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::oQLkOTel(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::45mh62tL(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::vqZ5cvPC(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::VAqDGArw(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.bxoh8bRe::1BTusd6r()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::vkVyzMGU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::beFPn19s(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::32VHL3D9(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::nRqREOYp(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::IQ21Vp3h(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::yDjIeq_P(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::3MuMojpH(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::JK4GUmPZ(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::L3LtvtHf(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::GA3Uoi2z()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::7wfL5NE4(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::NLtWCYVw(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::y_6me6gP(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::AYxQ_BML(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.bxoh8bRe::ocS2IVji()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::_c71nDwB(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::_revKk8F(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::FFQwhITu(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::SFv3sqsj(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::zpgmrxT7(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::rNxka54b(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::Q2dFhE7L(System.Collections.Generic.List`1,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::vEGIbcKC(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::Y2kcq05b()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.bxoh8bRe::NofhA8CZ(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.bxoh8bRe::Hindf_ht(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::5X0VRi3o()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::66pRP4Fj()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::Adg7zhQb()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::9eyyRlzk(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::Hm0pQ5a4(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::QG6t7F_d(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::loN8B7lS(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::PjypCYwX()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::TNXg51Aq()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::Cmg3v_om(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::T7n480tt()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::WEZeU9Po(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::HwgBOJf2(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.bxoh8bRe::BqCnHLmN(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::CciWhtYC(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::Iq03O_hq(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::1FHqKbqE(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.bxoh8bRe::m8RuLiMN()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::NNWkPbIl(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::TVtWe3eo(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::grJ3ZJNK(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.bxoh8bRe::vHvQskx2(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::ne55K_zB(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::k2TCwsWV(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::2J2V7AJx(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::IDHeFGIX(System.String,System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::n1aa2VeV()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::gn47jMML()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.bxoh8bRe::9yLBIcu3(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.bxoh8bRe::BMbXTpmU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::G1RPKkoh(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::ai646XdG(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::6j2rAm58(System.Action`1)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] SDK_IAP.SubscriptionInfoLite SDK_IAP.bxoh8bRe::93Pc5BP6(System.String)] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::JSBDMGwU()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Boolean SDK_IAP.bxoh8bRe::scCxRnqA()] Because of your defined Method obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)] Method is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)] Some other Method in the Method group getting skipped. [Info][OPS.OBF][OnAnalyse_Assemblies] Process component Parameter - Obfuscation [Info][OPS.OBF][OnAnalyse_Assemblies] Process component Field - Obfuscation [Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Analyse Member... @@ -21388,44 +62872,14 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] VipDay VipDay::Month] Because of the 'Obfuscate enum values' setting. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] VipDay VipDay::Year] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] VipDay VipDay::Year] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Int32 PayType::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Int32 PayType::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Int32 PayType::value__] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_one] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_one] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_one_off] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_one_off] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_gold_1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_gold_1] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_gold_2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_gold_2] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_gold_3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_gold_3] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_gold_4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_gold_4] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_gold_5] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::buy_gold_5] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::remove_ad] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::remove_ad] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::battle_pass] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::battle_pass] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::pack_reward] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::pack_reward] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::fail_pack] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::fail_pack] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::three_days_gift] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::three_days_gift] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::weekly_subscription] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::weekly_subscription] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::monthly_subscription] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::monthly_subscription] Because of the 'Obfuscate enum values' setting. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::yearly_subscription] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PayType PayType::yearly_subscription] Because of the 'Obfuscate enum values' setting. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PurchasingManager/<>c PurchasingManager/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] PurchasingManager/<>c PurchasingManager/<>c::<>9] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 PurchasingManager/<>c::<>9__8_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 PurchasingManager/<>c::<>9__8_0] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] SGModule.GooglePay.GooglePayData PurchasingManager/<>c__DisplayClass9_0::payData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action PurchasingManager/<>c::<>9__6_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action PurchasingManager/<>c::<>9__6_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action PurchasingManager/<>c::<>9__6_1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action PurchasingManager/<>c::<>9__6_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 PurchasingManager::_shopProductMap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 PurchasingManager::_vipProductMap] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Int32 SaveingPotClass::tableId] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Int32 SaveingPotClass::id] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String SaveingPotClass::amountStr] Because of your defined Field obfuscation settings. @@ -22026,6 +63480,26 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Collections.Generic.List`1 IAPManagerV5::productConfigs] Because of compatibility component: Unity - Compatibility : The field has a 'SerializeField' attribute and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Int32 WebSocketData::cmd] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String WebSocketData::token] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ZrZYFo6bYXYM71YyLSDKDemo/<>c ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ZrZYFo6bYXYM71YyLSDKDemo/<>c ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__0_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__0_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__0_1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__0_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__1_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__1_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__2_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__2_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__9_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__9_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__9_1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__9_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__18_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__18_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`2 ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__19_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`2 ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__19_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__22_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 ZrZYFo6bYXYM71YyLSDKDemo/<>c::<>9__22_0] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TypesData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. @@ -22036,6 +63510,16 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] SDK_IAP.IAPDemoUsage/<>c SDK_IAP.IAPDemoUsage/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] SDK_IAP.IAPDemoUsage/<>c SDK_IAP.IAPDemoUsage/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 SDK_IAP.IAPDemoUsage/<>c::<>9__10_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 SDK_IAP.IAPDemoUsage/<>c::<>9__10_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 SDK_IAP.IAPDemoUsage/<>c::<>9__11_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 SDK_IAP.IAPDemoUsage/<>c::<>9__11_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 SDK_IAP.IAPDemoUsage/<>c::<>9__13_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 SDK_IAP.IAPDemoUsage/<>c::<>9__13_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 SDK_IAP.IAPDemoUsage/<>c::<>9__14_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 SDK_IAP.IAPDemoUsage/<>c::<>9__14_0] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UNSDK.SdkConfigMgr/<>c UNSDK.SdkConfigMgr/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UNSDK.SdkConfigMgr/<>c UNSDK.SdkConfigMgr/<>c::<>9] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`2 UNSDK.SdkConfigMgr/<>c::<>9__8_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. @@ -22923,14 +64407,6 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] SGModule.ConfigLoader.ConfigParser/<>c SGModule.ConfigLoader.ConfigParser/<>c::<>9] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Func`2 SGModule.ConfigLoader.ConfigParser/<>c::<>9__0_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Func`2 SGModule.ConfigLoader.ConfigParser/<>c::<>9__0_0] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Func`2 SGModule.ConfigLoader.ConfigParser/<>c::<>9__1_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Func`2 SGModule.ConfigLoader.ConfigParser/<>c::<>9__1_0] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Func`2 SGModule.ConfigLoader.ConfigParser/<>c::<>9__1_1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Func`2 SGModule.ConfigLoader.ConfigParser/<>c::<>9__1_1] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Func`2 SGModule.ConfigLoader.ConfigParser/<>c::<>9__1_2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Func`2 SGModule.ConfigLoader.ConfigParser/<>c::<>9__1_2] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Func`2 SGModule.ConfigLoader.ConfigParser/<>c::<>9__1_3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Func`2 SGModule.ConfigLoader.ConfigParser/<>c::<>9__1_3] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] SGModule.Common.Helper.ModuleLogger SGModule.Common.Helper.Log::Common] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] SGModule.Common.Helper.ModuleLogger SGModule.Common.Helper.Log::Net] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] SGModule.Common.Helper.ModuleLogger SGModule.Common.Helper.Log::MarkdownKit] Because of your defined Field obfuscation settings. @@ -26245,7 +67721,7 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.UInt32 BallKingdomCrush.GameMsg::RefreshGame] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.UInt32 BallKingdomCrush.GameMsg::RewardUIClosed] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.UInt32 BallKingdomCrush.GameMsg::H5ViewClickBtn] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.UInt32 BallKingdomCrush.GameMsg::apple_pay_success] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.UInt32 BallKingdomCrush.GameMsg::IAP_PAY_SUCCESS] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.UInt32 BallKingdomCrush.GameMsg::apple_s_success] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.UInt32 BallKingdomCrush.GameMsg::ExitGame] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.UInt32 BallKingdomCrush.GameMsg::UpdateNoads] Because of your defined Field obfuscation settings. @@ -27227,6 +68703,49 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] Msg BallKingdomCrush.BaseMainThreadDispatcher`3/MainThreadMsgClass::currMsgId] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] Param BallKingdomCrush.BaseMainThreadDispatcher`3/MainThreadMsgClass::currParam] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] BallKingdomCrush.ChangeValue`1 BallKingdomCrush.PreferencesDispatcher`1::changeValue] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c BallKingdomCrush.IAPPayManager/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c BallKingdomCrush.IAPPayManager/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.IAPPayManager/<>c::<>9__25_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.IAPPayManager/<>c::<>9__25_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.IAPPayManager/<>c::<>9__27_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.IAPPayManager/<>c::<>9__27_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.IAPPayManager/<>c::<>9__28_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.IAPPayManager/<>c::<>9__28_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager/<>c__DisplayClass23_0::productName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action BallKingdomCrush.IAPPayManager/<>c__DisplayClass23_0::onSuccess] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager/<>c__DisplayClass23_0::productId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager/<>c__DisplayClass24_0::subscriptionName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] BallKingdomCrush.IAPPayManager BallKingdomCrush.IAPPayManager/<>c__DisplayClass24_0::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action BallKingdomCrush.IAPPayManager/<>c__DisplayClass24_0::onSuccess] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager/<>c__DisplayClass24_0::productId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager/<>c__DisplayClass26_0::productName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.IAPPayManager/<>c__DisplayClass26_0::onResult] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_FIRST_GIFT] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_FIRST_GIFT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_REMOVE_ADS] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_REMOVE_ADS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_PASS_BONUS] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_PASS_BONUS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_SPACE_BONUS] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_SPACE_BONUS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_SHOP_1] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_SHOP_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_SHOP_2] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_SHOP_2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_SHOP_3] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_SHOP_3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_SHOP_4] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_SHOP_4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_SHOP_5] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_SHOP_5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_THREE_DAY] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_THREE_DAY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_VIP_WEEK] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_VIP_WEEK] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_VIP_MONTH] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_VIP_MONTH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_VIP_YEAR] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.IAPPayManager::PRODUCT_VIP_YEAR] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] BallKingdomCrush.MainScene/<>c BallKingdomCrush.MainScene/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] BallKingdomCrush.MainScene/<>c BallKingdomCrush.MainScene/<>c::<>9] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UnityEngine.Events.UnityAction`1 BallKingdomCrush.MainScene/<>c::<>9__6_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. @@ -27640,6 +69159,8 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] FGUI.ZM_Common_01.btn_watchAd BallKingdomCrush.AddViewUI::btn_WatchAd] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c BallKingdomCrush.AddviewnewUI/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c BallKingdomCrush.AddviewnewUI/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action BallKingdomCrush.AddviewnewUI/<>c::<>9__10_2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action BallKingdomCrush.AddviewnewUI/<>c::<>9__10_2] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action BallKingdomCrush.AddviewnewUI/<>c::<>9__18_1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action BallKingdomCrush.AddviewnewUI/<>c::<>9__18_1] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action BallKingdomCrush.AddviewnewUI/<>c::<>9__18_2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. @@ -27647,8 +69168,10 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action BallKingdomCrush.AddviewnewUI/<>c::<>9__18_3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action BallKingdomCrush.AddviewnewUI/<>c::<>9__18_3] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Decimal BallKingdomCrush.AddviewnewUI/<>c__DisplayClass10_0::price] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Decimal BallKingdomCrush.AddviewnewUI/<>c__DisplayClass10_1::price] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Decimal BallKingdomCrush.AddViewoffUI/<>c__DisplayClass10_0::price] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI/<>c BallKingdomCrush.AddViewoffUI/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI/<>c BallKingdomCrush.AddViewoffUI/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action BallKingdomCrush.AddViewoffUI/<>c::<>9__10_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action BallKingdomCrush.AddViewoffUI/<>c::<>9__10_0] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] BallKingdomCrush.AlbumDetailUI BallKingdomCrush.AlbumDetailUI/<>c__DisplayClass19_0::<>4__this] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Int32 BallKingdomCrush.AlbumDetailUI/<>c__DisplayClass19_0::downloadCoinNum] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.AlbumDetailUI/<>c__DisplayClass19_0::<>9__2] Because of your defined Field obfuscation settings. @@ -28412,12 +69935,17 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String[] BallKingdomCrush.UnitConvertUtil::UnitSuffixs] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c BallKingdomCrush.MaxADKit/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c BallKingdomCrush.MaxADKit/<>c::<>9] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.MaxADKit/<>c::<>9__4_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.MaxADKit/<>c::<>9__4_0] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.MaxADKit/<>c__DisplayClass25_0::adUnitId] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] MaxSdkBase/AdInfo BallKingdomCrush.MaxADKit/<>c__DisplayClass25_0::adInfo] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.MaxADKit/<>c__DisplayClass26_0::adUnitId] Because of your defined Field obfuscation settings. -[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] MaxSdkBase/AdInfo BallKingdomCrush.MaxADKit/<>c__DisplayClass26_0::adInfo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.MaxADKit/<>c::<>9__4_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.MaxADKit/<>c::<>9__4_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.MaxADKit/<>c::<>9__22_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 BallKingdomCrush.MaxADKit/<>c::<>9__22_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action BallKingdomCrush.MaxADKit/<>c::<>9__22_1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action BallKingdomCrush.MaxADKit/<>c::<>9__22_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.MaxADKit/<>c__DisplayClass27_0::adUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] MaxSdkBase/AdInfo BallKingdomCrush.MaxADKit/<>c__DisplayClass27_0::adInfo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.MaxADKit/<>c__DisplayClass28_0::adUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] MaxSdkBase/AdInfo BallKingdomCrush.MaxADKit/<>c__DisplayClass28_0::adInfo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UnityEngine.Events.UnityAction`1 BallKingdomCrush.MaxADKit/<>c__DisplayClass8_0::onCompleted] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.MaxADKit::SDKKey] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.MaxADKit::interstitialADUnitID] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String BallKingdomCrush.MaxADKit::rewardedADUnitID] Because of your defined Field obfuscation settings. @@ -28531,6 +70059,78 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON/Parser/TOKEN DataEyeAnalytics.Utils.DE_MiniJSON/Parser/TOKEN::FALSE] Because of the 'Obfuscate enum values' setting. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON/Parser/TOKEN DataEyeAnalytics.Utils.DE_MiniJSON/Parser/TOKEN::NULL] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON/Parser/TOKEN DataEyeAnalytics.Utils.DE_MiniJSON/Parser/TOKEN::NULL] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find Field References in Modules... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find Field References in Instructions... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Skip Fields... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TypesData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TypesData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalTypes] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalTypes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::appsFlyerDevKey] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::appsFlyerDevKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::appsFlyerIosAppleAppId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::appsFlyerIosAppleAppId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::appKey] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::appKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::appSecret] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::appSecret] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::logReportUrl] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::logReportUrl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::maxAppKey] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::maxAppKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::splashUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::splashUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::bannerUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::bannerUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::interUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::interUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::videoUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::videoUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::kwaiAppId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::kwaiAppId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.SDKConfig::kwaiVideoUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.SDKConfig::kwaiVideoUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.SDKConfig::kwaiInterUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.SDKConfig::kwaiInterUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::bigoAppId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::bigoAppId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.SDKConfig::bigoVideoUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.SDKConfig::bigoVideoUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.SDKConfig::bigoInterUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.SDKConfig::bigoInterUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::bigoSplashUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::bigoSplashUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::toponAppId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::toponAppId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::toponAppkey] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::toponAppkey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::toponVideoUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::toponVideoUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::toponInterUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::toponInterUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::admobAppId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::admobAppId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::admobVideoUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::admobVideoUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::admobInterUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::admobInterUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::admobSplashUnitId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String ZrZYFo6bYXYM71YyLSDK.SDKConfig::admobSplashUnitId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Boolean ZrZYFo6bYXYM71YyLSDK.SDKConfig::isDebug] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Boolean ZrZYFo6bYXYM71YyLSDK.SDKConfig::isDebug] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Boolean ZrZYFo6bYXYM71YyLSDK.SDKConfig::isPrintLog] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Boolean ZrZYFo6bYXYM71YyLSDK.SDKConfig::isPrintLog] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Boolean ZrZYFo6bYXYM71YyLSDK.SDKConfig::isUseAdmobSplash] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Boolean ZrZYFo6bYXYM71YyLSDK.SDKConfig::isUseAdmobSplash] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Find Field References in Modules... @@ -29428,6 +71028,90 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[spine-unity] UnityEngine.Material Spine.Unity.Deprecated.SlotBlendModes::screenMaterialSource] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[spine-unity] Spine.Collections.OrderedDictionary`2 Spine.Collections.OrderedDictionary`2/d__34::<>4__this] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[spine-unity] System.Int32 Spine.Collections.OrderedDictionary`2::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find Field References in Modules... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find Field References in Instructions... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Skip Fields... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] UnityEngine.AndroidJavaObject AdHelper/DestryAdTask::Ad] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TypesData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TypesData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalTypes] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalTypes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidBannerAd BigoAds.Scripts.Platforms.Android.AndroidBannerAd/<>c__DisplayClass34_0::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition BigoAds.Scripts.Platforms.Android.AndroidBannerAd/<>c__DisplayClass34_0::position] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Platforms.Android.AndroidNativeAd BigoAds.Scripts.Platforms.Android.AndroidNativeAd/<>c__DisplayClass33_0::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition BigoAds.Scripts.Platforms.Android.AndroidNativeAd/<>c__DisplayClass33_0::position] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] UnityEngine.AndroidJavaObject BigoAds.Scripts.Platforms.Android.AndroidPlatformTool/<>c__DisplayClass6_0::builder] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] UnityEngine.AndroidJavaObject BigoAds.Scripts.Platforms.Android.AndroidPlatformTool/<>c__DisplayClass6_0::builder] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.String BigoAds.Scripts.Platforms.Android.AndroidPlatformTool::ClassPackage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1 BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass35_0::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass35_0::errorCode] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.String BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass35_0::errorMessage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1 BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass39_0::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass39_0::errorCode] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.String BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass39_0::errorMessage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.String BigoAds.Scripts.Api.BigoAdConfig::EXTRA_KEY_HOST_RULES] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/<>c BigoAds.Scripts.Api.BigoAdSdk/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/<>c BigoAds.Scripts.Api.BigoAdSdk/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate BigoAds.Scripts.Api.BigoAdSdk/<>c::<>9__9_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate BigoAds.Scripts.Api.BigoAdSdk/<>c::<>9__9_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize BigoAds.Scripts.Api.BigoBannerRequest::size] Because of compatibility component: Unity - Compatibility : The field has a 'SerializeField' attribute and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.String BigoAds.Scripts.Api.BigoRequest::extraInfo] Because of compatibility component: Unity - Compatibility : The field has a 'SerializeField' attribute and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.BigoRequest::age] Because of compatibility component: Unity - Compatibility : The field has a 'SerializeField' attribute and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdGender BigoAds.Scripts.Api.BigoRequest::gender] Because of compatibility component: Unity - Compatibility : The field has a 'SerializeField' attribute and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int64 BigoAds.Scripts.Api.BigoRequest::activatedTime] Because of compatibility component: Unity - Compatibility : The field has a 'SerializeField' attribute and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.BGAdGender::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.BGAdGender::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.BGAdGender::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdGender BigoAds.Scripts.Api.Constant.BGAdGender::Female] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdGender BigoAds.Scripts.Api.Constant.BGAdGender::Female] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdGender BigoAds.Scripts.Api.Constant.BGAdGender::Male] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdGender BigoAds.Scripts.Api.Constant.BGAdGender::Male] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.BGAdLossReason::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.BGAdLossReason::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.BGAdLossReason::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason BigoAds.Scripts.Api.Constant.BGAdLossReason::InternalError] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason BigoAds.Scripts.Api.Constant.BGAdLossReason::InternalError] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason BigoAds.Scripts.Api.Constant.BGAdLossReason::Timeout] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason BigoAds.Scripts.Api.Constant.BGAdLossReason::Timeout] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason BigoAds.Scripts.Api.Constant.BGAdLossReason::LowerThanFloorPrice] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason BigoAds.Scripts.Api.Constant.BGAdLossReason::LowerThanFloorPrice] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason BigoAds.Scripts.Api.Constant.BGAdLossReason::LowerThanHighestPrice] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason BigoAds.Scripts.Api.Constant.BGAdLossReason::LowerThanHighestPrice] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize BigoAds.Scripts.Api.Constant.BigoBannerSize::BANNER_W_320_H_50] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize BigoAds.Scripts.Api.Constant.BigoBannerSize::BANNER_W_320_H_50] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize BigoAds.Scripts.Api.Constant.BigoBannerSize::BANNER_W_300_H_250] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize BigoAds.Scripts.Api.Constant.BigoBannerSize::BANNER_W_300_H_250] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.BigoBannerSize::width] Because of compatibility component: Unity - Compatibility : The field has a 'SerializeField' attribute and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.BigoBannerSize::height] Because of compatibility component: Unity - Compatibility : The field has a 'SerializeField' attribute and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.BigoPosition::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.BigoPosition::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.BigoPosition::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition BigoAds.Scripts.Api.Constant.BigoPosition::Top] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition BigoAds.Scripts.Api.Constant.BigoPosition::Top] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition BigoAds.Scripts.Api.Constant.BigoPosition::Middle] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition BigoAds.Scripts.Api.Constant.BigoPosition::Middle] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition BigoAds.Scripts.Api.Constant.BigoPosition::Bottom] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition BigoAds.Scripts.Api.Constant.BigoPosition::Bottom] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.ConsentOptions::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.ConsentOptions::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.ConsentOptions::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions BigoAds.Scripts.Api.Constant.ConsentOptions::GDPR] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions BigoAds.Scripts.Api.Constant.ConsentOptions::GDPR] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions BigoAds.Scripts.Api.Constant.ConsentOptions::CCPA] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions BigoAds.Scripts.Api.Constant.ConsentOptions::CCPA] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions BigoAds.Scripts.Api.Constant.ConsentOptions::LGPD] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions BigoAds.Scripts.Api.Constant.ConsentOptions::LGPD] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions BigoAds.Scripts.Api.Constant.ConsentOptions::COPPA] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions BigoAds.Scripts.Api.Constant.ConsentOptions::COPPA] Because of the 'Obfuscate enum values' setting. [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find Field References in Modules... @@ -30147,6 +71831,13 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] AppsFlyerSDK.AFPurchaseType AppsFlyerSDK.AFPurchaseType::Subscription] Because of the 'Obfuscate enum values' setting. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] AppsFlyerSDK.AFPurchaseType AppsFlyerSDK.AFPurchaseType::OneTimePurchase] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] AppsFlyerSDK.AFPurchaseType AppsFlyerSDK.AFPurchaseType::OneTimePurchase] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] System.Int32 AppsFlyerSDK.AFSDKPurchaseType::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] System.Int32 AppsFlyerSDK.AFSDKPurchaseType::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] System.Int32 AppsFlyerSDK.AFSDKPurchaseType::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseType AppsFlyerSDK.AFSDKPurchaseType::Subscription] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseType AppsFlyerSDK.AFSDKPurchaseType::Subscription] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseType AppsFlyerSDK.AFSDKPurchaseType::OneTimePurchase] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseType AppsFlyerSDK.AFSDKPurchaseType::OneTimePurchase] Because of the 'Obfuscate enum values' setting. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] System.Int32 AppsFlyerSDK.AFSDKValidateAndLogStatus::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] System.Int32 AppsFlyerSDK.AFSDKValidateAndLogStatus::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] System.Int32 AppsFlyerSDK.AFSDKValidateAndLogStatus::value__] Because of the 'Obfuscate enum values' setting. @@ -30212,6 +71903,30 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] AppsFlyerSDK.StoreKitVersion AppsFlyerSDK.StoreKitVersion::SK1] Because of the 'Obfuscate enum values' setting. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] AppsFlyerSDK.StoreKitVersion AppsFlyerSDK.StoreKitVersion::SK2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[AppsFlyer] AppsFlyerSDK.StoreKitVersion AppsFlyerSDK.StoreKitVersion::SK2] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find Field References in Modules... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find Field References in Instructions... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Skip Fields... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.Boolean KwaiLog::isShow] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TypesData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TypesData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalTypes] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalTypes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.String BigoAds.Scripts.Platforms.Android.AndroidPlatformTool::ClassPackage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.String KwaiAds.Scripts.Api.Constants/Request::BID_FLOOR_PRICE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.String KwaiAds.Scripts.Api.Constants/Request::BID_FLOOR_CURRENCY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.String KwaiAds.Scripts.Api.Constants/Request::MEDIATION_TYPE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.String KwaiAds.Scripts.Api.Constants/Currency::USD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.String KwaiAds.Scripts.Api.KwaiRequest::TagId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[KwaiAds] System.Collections.Generic.Dictionary`2 KwaiAds.Scripts.Api.KwaiRequest::ExtParams] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find Field References in Modules... @@ -30364,6 +72079,23 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[DOTween.Modules] System.Runtime.CompilerServices.AsyncTaskMethodBuilder DG.Tweening.DOTweenModuleUnityVersion/d__15::<>t__builder] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[DOTween.Modules] DG.Tweening.Tween DG.Tweening.DOTweenModuleUnityVersion/d__15::t] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[DOTween.Modules] DG.Tweening.Tween DG.Tweening.DOTweenModuleUnityVersion/d__15::t] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Field References in Modules... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Field References in Instructions... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Skip Fields... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TypesData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TypesData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalTypes] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalTypes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Action`2 AD.VosacoSDK.ISDKInitCallback::onInitResult] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Find Field References in Modules... @@ -30838,6 +72570,5577 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[endel.nativewebsocket] System.Net.WebSockets.WebSocketMessageType NativeWebSocket.WebSocket/d__32::messageType] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[endel.nativewebsocket] System.Collections.Generic.List`1> NativeWebSocket.WebSocket/d__32::queue] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[endel.nativewebsocket] System.Collections.Generic.List`1> NativeWebSocket.WebSocket/d__32::queue] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Field References in Modules... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Field References in Instructions... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Fields... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Collections.Generic.List`1 WebViewObject/<>c__DisplayClass29_0::permissions] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] WebViewObject WebViewObject/<>c__DisplayClass29_0::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Int32 WebViewObject/<>c__DisplayClass29_0::grantedCount] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Int32 WebViewObject/<>c__DisplayClass29_0::deniedCount] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] WebViewObject WebViewObject/d__30::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Boolean WebViewObject/d__30::granted] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TypesData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TypesData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalTypes] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalTypes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Find Field References in Modules... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Find Field References in Instructions... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Skip Fields... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertificateParser Org.BouncyCastle.X509.X509CertificateParser/d__11::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.X509.X509CertificateParser/d__11::<>3__inStream] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CrlParser Org.BouncyCastle.X509.X509CrlParser/d__13::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.X509.X509CrlParser/d__13::<>3__inStream] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.X509.X509KeyUsage::DigitalSignature] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.X509.X509KeyUsage::NonRepudiation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.X509.X509KeyUsage::KeyEncipherment] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.X509.X509KeyUsage::DataEncipherment] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.X509.X509KeyUsage::KeyAgreement] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.X509.X509KeyUsage::KeyCertSign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.X509.X509KeyUsage::CrlSign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.X509.X509KeyUsage::EncipherOnly] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.X509.X509KeyUsage::DecipherOnly] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificate/<>c Org.BouncyCastle.X509.X509V2AttributeCertificate/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificate/<>c Org.BouncyCastle.X509.X509V2AttributeCertificate/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.X509.X509V2AttributeCertificate/<>c::<>9__38_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.X509.X509V2AttributeCertificate/<>c::<>9__38_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Utilities.Arrays::EmptyBytes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Utilities.Arrays::EmptyInts] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Utilities.BigIntegers::Zero] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Utilities.BigIntegers::One] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bytes::NumBits] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bytes::NumBytes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Integers::NumBits] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Integers::NumBytes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Longs::NumBits] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Longs::NumBytes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Shorts::NumBits] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Shorts::NumBytes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_NO_COMPRESSION] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_BEST_SPEED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_BEST_COMPRESSION] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_DEFAULT_COMPRESSION] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_FILTERED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_HUFFMAN_ONLY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_DEFAULT_STRATEGY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_NO_FLUSH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_PARTIAL_FLUSH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_SYNC_FLUSH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_FULL_FLUSH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_FINISH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_OK] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_STREAM_END] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_NEED_DICT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_ERRNO] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_STREAM_ERROR] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_DATA_ERROR] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_MEM_ERROR] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_BUF_ERROR] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.JZlib::Z_VERSION_ERROR] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Utilities.Zlib.ZStream::next_in] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.ZStream::next_in_index] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.ZStream::avail_in] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.Zlib.ZStream::total_in] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Utilities.Zlib.ZStream::next_out] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.ZStream::next_out_index] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Zlib.ZStream::avail_out] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.Zlib.ZStream::total_out] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Utilities.Zlib.ZStream::msg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.Zlib.ZStream::adler] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::<>1__state] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::<>1__state] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Runtime.CompilerServices.AsyncTaskMethodBuilder Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::<>t__builder] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Runtime.CompilerServices.AsyncTaskMethodBuilder Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::<>t__builder] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.PushbackStream Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::<>4__this] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.PushbackStream Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::destination] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::destination] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Threading.CancellationToken Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::cancellationToken] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Threading.CancellationToken Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::cancellationToken] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::bufferSize] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.IO.PushbackStream/d__2::bufferSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.IO.Streams/d__8::<>1__state] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.IO.Streams/d__8::<>1__state] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Runtime.CompilerServices.AsyncTaskMethodBuilder Org.BouncyCastle.Utilities.IO.Streams/d__8::<>t__builder] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Runtime.CompilerServices.AsyncTaskMethodBuilder Org.BouncyCastle.Utilities.IO.Streams/d__8::<>t__builder] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.IO.Streams/d__8::bufferSize] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.IO.Streams/d__8::bufferSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Utilities.IO.Streams/d__8::destination] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Utilities.IO.Streams/d__8::destination] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Threading.CancellationToken Org.BouncyCastle.Utilities.IO.Streams/d__8::cancellationToken] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Threading.CancellationToken Org.BouncyCastle.Utilities.IO.Streams/d__8::cancellationToken] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Utilities.IO.Streams/d__8::source] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Utilities.IO.Streams/d__8::source] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.IO.Streams/d__20::<>1__state] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.IO.Streams/d__20::<>1__state] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Runtime.CompilerServices.AsyncTaskMethodBuilder Org.BouncyCastle.Utilities.IO.Streams/d__20::<>t__builder] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Runtime.CompilerServices.AsyncTaskMethodBuilder Org.BouncyCastle.Utilities.IO.Streams/d__20::<>t__builder] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Utilities.IO.Streams/d__20::writeTask] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Threading.Tasks.Task Org.BouncyCastle.Utilities.IO.Streams/d__20::writeTask] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Utilities.IO.Streams/d__20::localBuffer] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Utilities.IO.Streams/d__20::localBuffer] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Utilities.Date.DateTimeUtilities::UnixEpoch] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.Date.DateTimeUtilities::MaxUnixMs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.Date.DateTimeUtilities::MinUnixMs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Utilities.Collections.CollectionUtilities/d__15`2::<>3__selector] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.StoreImpl`1 Org.BouncyCastle.Utilities.Collections.StoreImpl`1/-EnumerateMatches>d__2::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.ISelector`1 Org.BouncyCastle.Utilities.Collections.StoreImpl`1/-EnumerateMatches>d__2::<>3__selector] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.BZip2Constants::baseBlockSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.BZip2Constants::MAX_ALPHA_SIZE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.BZip2Constants::MAX_CODE_LEN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.BZip2Constants::MAX_CODE_LEN_GEN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.BZip2Constants::RUNA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.BZip2Constants::RUNB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.BZip2Constants::N_GROUPS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.BZip2Constants::G_SIZE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.BZip2Constants::N_ITERS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.BZip2Constants::MAX_SELECTORS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.BZip2Constants::NUM_OVERSHOOT_BYTES] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tsp.Resolution::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tsp.Resolution::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tsp.Resolution::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.Resolution Org.BouncyCastle.Tsp.Resolution::R_SECONDS] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.Resolution Org.BouncyCastle.Tsp.Resolution::R_SECONDS] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.Resolution Org.BouncyCastle.Tsp.Resolution::R_TENTHS_OF_SECONDS] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.Resolution Org.BouncyCastle.Tsp.Resolution::R_TENTHS_OF_SECONDS] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.Resolution Org.BouncyCastle.Tsp.Resolution::R_HUNDREDTHS_OF_SECONDS] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.Resolution Org.BouncyCastle.Tsp.Resolution::R_HUNDREDTHS_OF_SECONDS] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.Resolution Org.BouncyCastle.Tsp.Resolution::R_MILLISECONDS] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.Resolution Org.BouncyCastle.Tsp.Resolution::R_MILLISECONDS] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::MD5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::Sha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::Sha224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::Sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::Sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::Sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::Sha3_224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::Sha3_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::Sha3_384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::Sha3_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::RipeMD128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::RipeMD160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::RipeMD256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::Gost3411] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::Gost3411_2012_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::Gost3411_2012_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tsp.TspAlgorithms::SM3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tsp.TspAlgorithms::Allowed] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::close_notify] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::unexpected_message] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::bad_record_mac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::decryption_failed] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::record_overflow] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::decompression_failure] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::handshake_failure] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::no_certificate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::bad_certificate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::unsupported_certificate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::certificate_revoked] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::certificate_expired] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::certificate_unknown] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::illegal_parameter] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::unknown_ca] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::access_denied] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::decode_error] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::decrypt_error] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::export_restriction] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::protocol_version] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::insufficient_security] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::internal_error] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::user_canceled] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::no_renegotiation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::unsupported_extension] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::certificate_unobtainable] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::unrecognized_name] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::bad_certificate_status_response] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::bad_certificate_hash_value] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::unknown_psk_identity] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::no_application_protocol] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::inappropriate_fallback] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::missing_extension] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertDescription::certificate_required] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertLevel::warning] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.AlertLevel::fatal] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CachedInformationType::cert] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CachedInformationType::cert_req] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CertChainType::individual_certs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CertChainType::pkipath] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.Certificate::EmptyChain] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate Org.BouncyCastle.Tls.Certificate::EmptyChainTls13] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CertificateCompressionAlgorithm::zlib] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CertificateCompressionAlgorithm::brotli] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CertificateCompressionAlgorithm::zstd] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CertificateStatusType::ocsp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CertificateStatusType::ocsp_multi] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CertificateType::X509] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CertificateType::OpenPGP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CertificateType::RawPublicKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ChangeCipherSpec::change_cipher_spec] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ChannelBinding::tls_server_end_point] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ChannelBinding::tls_unique] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ChannelBinding::tls_unique_for_telnet] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ChannelBinding::tls_exporter] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_NULL_WITH_NULL_NULL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_NULL_MD5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_NULL_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_EXPORT_WITH_RC4_40_MD5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_RC4_128_MD5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_RC4_128_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_IDEA_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_EXPORT_WITH_DES40_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_DES_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_DES_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_DES_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_DES_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_DES_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_EXPORT_WITH_RC4_40_MD5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_RC4_128_MD5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_DES_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_CAMELLIA_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_CAMELLIA_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_SEED_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_SEED_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_SEED_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_SEED_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_SEED_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_SEED_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_RC4_128_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_RC4_128_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_RC4_128_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_NULL_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_RC4_128_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_NULL_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_RC4_128_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_NULL_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_RC4_128_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_NULL_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_RC4_128_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_anon_WITH_NULL_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_anon_WITH_RC4_128_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_anon_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_anon_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_NULL_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_NULL_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_NULL_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_SRP_SHA_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_SRP_SHA_DSS_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_SRP_SHA_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_SRP_SHA_DSS_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_NULL_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_AES_256_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_AES_256_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_AES_256_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_AES_256_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_AES_256_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_AES_256_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_AES_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_NULL_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_NULL_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_AES_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_NULL_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_NULL_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_AES_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_NULL_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_NULL_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_RC4_128_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_NULL_SHA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_NULL_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_NULL_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_EMPTY_RENEGOTIATION_INFO_SCSV] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_ARIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_ARIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_ARIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_ARIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_ARIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_ARIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_ARIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_ARIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_ARIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_ARIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_ARIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_ARIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_ARIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_ARIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_ARIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_ARIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_ARIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_ARIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_CAMELLIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_DSS_WITH_CAMELLIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_AES_128_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_AES_256_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_AES_128_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_AES_256_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_AES_128_CCM_8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_WITH_AES_256_CCM_8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_AES_128_CCM_8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_AES_256_CCM_8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_AES_128_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_AES_256_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_AES_128_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_AES_256_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_AES_128_CCM_8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_AES_256_CCM_8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_DHE_WITH_AES_128_CCM_8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_DHE_WITH_AES_256_CCM_8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_AES_128_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_AES_256_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_FALLBACK_SCSV] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_PSK_WITH_CHACHA20_POLY1305_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_DHE_PSK_WITH_CHACHA20_POLY1305_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_RSA_PSK_WITH_CHACHA20_POLY1305_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_AES_128_CCM_8_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_ECDHE_PSK_WITH_AES_128_CCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_AES_128_GCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_AES_256_GCM_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_CHACHA20_POLY1305_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_AES_128_CCM_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_AES_128_CCM_8_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_SM4_GCM_SM3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_SM4_CCM_SM3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_GOSTR341112_256_WITH_KUZNYECHIK_CTR_OMAC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_GOSTR341112_256_WITH_MAGMA_CTR_OMAC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherSuite::TLS_GOSTR341112_256_WITH_28147_CNT_IMIT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherType::stream] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherType::block] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.CipherType::aead] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientAuthenticationType::anonymous] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientAuthenticationType::certificate_based] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientAuthenticationType::psk] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientCertificateType::rsa_sign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientCertificateType::dss_sign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientCertificateType::rsa_fixed_dh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientCertificateType::dss_fixed_dh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientCertificateType::rsa_ephemeral_dh_RESERVED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientCertificateType::dss_ephemeral_dh_RESERVED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientCertificateType::fortezza_dms_RESERVED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientCertificateType::ecdsa_sign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientCertificateType::rsa_fixed_ecdh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientCertificateType::ecdsa_fixed_ecdh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientCertificateType::gost_sign256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ClientCertificateType::gost_sign512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CompressionMethod::cls_null] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.CompressionMethod::DEFLATE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ConnectionEnd::server] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ConnectionEnd::client] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ContentType::change_cipher_spec] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ContentType::alert] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ContentType::handshake] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ContentType::application_data] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ContentType::heartbeat] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ContentType::tls12_cid] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::DefaultMinimumPrimeBits] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordFlags::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordFlags::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordFlags::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsRecordFlags Org.BouncyCastle.Tls.DtlsRecordFlags::None] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsRecordFlags Org.BouncyCastle.Tls.DtlsRecordFlags::None] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsRecordFlags Org.BouncyCastle.Tls.DtlsRecordFlags::IsNewest] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsRecordFlags Org.BouncyCastle.Tls.DtlsRecordFlags::IsNewest] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsRecordFlags Org.BouncyCastle.Tls.DtlsRecordFlags::UsesConnectionID] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsRecordFlags Org.BouncyCastle.Tls.DtlsRecordFlags::UsesConnectionID] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ECCurveType::explicit_prime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ECCurveType::explicit_char2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ECCurveType::named_curve] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ECPointFormat::uncompressed] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ECPointFormat::ansiX962_compressed_prime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.ECPointFormat::ansiX962_compressed_char2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::NULL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::RC4_40] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::RC4_128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::RC2_CBC_40] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::IDEA_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::DES40_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::DES_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::cls_3DES_EDE_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::AES_128_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::AES_256_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::AES_128_GCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::AES_256_GCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::CAMELLIA_128_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::CAMELLIA_256_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::SEED_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::AES_128_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::AES_128_CCM_8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::AES_256_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::AES_256_CCM_8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::CAMELLIA_128_GCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::CAMELLIA_256_GCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::CHACHA20_POLY1305] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::ARIA_128_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::ARIA_256_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::ARIA_128_GCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::ARIA_256_GCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::SM4_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::SM4_GCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::SM4_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::KUZNYECHIK_CTR_OMAC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::MAGMA_CTR_OMAC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.EncryptionAlgorithm::cls_28147_CNT_IMIT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ExporterLabel::client_finished] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ExporterLabel::server_finished] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ExporterLabel::master_secret] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ExporterLabel::key_expansion] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ExporterLabel::client_EAP_encryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ExporterLabel::ttls_keying_material] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ExporterLabel::ttls_challenge] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ExporterLabel::dtls_srtp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ExporterLabel::extended_master_secret] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.ExporterLabel::token_binding] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::server_name] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::max_fragment_length] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::client_certificate_url] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::trusted_ca_keys] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::truncated_hmac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::status_request] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::user_mapping] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::client_authz] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::server_authz] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::cert_type] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::supported_groups] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::ec_point_formats] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::srp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::signature_algorithms] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::use_srtp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::heartbeat] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::application_layer_protocol_negotiation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::status_request_v2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::signed_certificate_timestamp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::client_certificate_type] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::server_certificate_type] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::padding] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::encrypt_then_mac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::extended_master_secret] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::token_binding] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::cached_info] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::compress_certificate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::record_size_limit] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::session_ticket] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::pre_shared_key] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::early_data] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::supported_versions] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::cookie] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::psk_key_exchange_modes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::certificate_authorities] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::oid_filters] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::post_handshake_auth] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::signature_algorithms_cert] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::key_share] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::connection_id] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ExtensionType::renegotiation_info] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::hello_request] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::client_hello] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::server_hello] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::certificate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::server_key_exchange] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::certificate_request] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::server_hello_done] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::certificate_verify] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::client_key_exchange] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::finished] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::certificate_url] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::certificate_status] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::hello_verify_request] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::supplemental_data] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::new_session_ticket] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::end_of_early_data] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::hello_retry_request] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::encrypted_extensions] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::key_update] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::message_hash] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::ekt_key] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::compressed_certificate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::request_connection_id] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::new_connection_id] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HandshakeType::client_certificate_request] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HashAlgorithm::none] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HashAlgorithm::md5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HashAlgorithm::sha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HashAlgorithm::sha224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HashAlgorithm::sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HashAlgorithm::sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HashAlgorithm::sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HashAlgorithm::Intrinsic] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HeartbeatMessageType::heartbeat_request] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HeartbeatMessageType::heartbeat_response] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HeartbeatMode::peer_allowed_to_send] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.HeartbeatMode::peer_not_allowed_to_send] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.IdentifierType::pre_agreed] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.IdentifierType::key_sha1_hash] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.IdentifierType::x509_name] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.IdentifierType::cert_sha1_hash] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::NULL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::RSA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::RSA_EXPORT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::DHE_DSS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::DHE_DSS_EXPORT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::DHE_RSA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::DHE_RSA_EXPORT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::DH_DSS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::DH_DSS_EXPORT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::DH_RSA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::DH_RSA_EXPORT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::DH_anon] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::DH_anon_EXPORT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::PSK] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::DHE_PSK] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::RSA_PSK] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::ECDH_ECDSA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::ECDHE_ECDSA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::ECDH_RSA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::ECDHE_RSA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::ECDH_anon] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::SRP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::SRP_DSS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::SRP_RSA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::ECDHE_PSK] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::SM2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.KeyExchangeAlgorithm::GOSTR341112_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.KeyUpdateRequest::update_not_requested] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.KeyUpdateRequest::update_requested] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.MacAlgorithm::cls_null] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.MacAlgorithm::md5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.MacAlgorithm::sha] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.MacAlgorithm::hmac_md5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.MacAlgorithm::hmac_sha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.MacAlgorithm::hmac_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.MacAlgorithm::hmac_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.MacAlgorithm::hmac_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.MaxFragmentLength::pow2_9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.MaxFragmentLength::pow2_10] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.MaxFragmentLength::pow2_11] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.MaxFragmentLength::pow2_12] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect163k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect163r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect163r2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect193r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect193r2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect233k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect233r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect239k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect283k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect283r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect409k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect409r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect571k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::sect571r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::secp160k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::secp160r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::secp160r2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::secp192k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::secp192r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::secp224k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::secp224r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::secp256k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::secp256r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::secp384r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::secp521r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::brainpoolP256r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::brainpoolP384r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::brainpoolP512r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::x25519] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::x448] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::brainpoolP256r1tls13] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::brainpoolP384r1tls13] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::brainpoolP512r1tls13] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::GC256A] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::GC256B] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::GC256C] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::GC256D] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::GC512A] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::GC512B] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::GC512C] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::curveSM2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::ffdhe2048] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::ffdhe3072] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::ffdhe4096] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::ffdhe6144] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::ffdhe8192] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::arbitrary_explicit_prime_curves] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::arbitrary_explicit_char2_curves] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::MLKEM512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::MLKEM768] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroup::MLKEM1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroupRole::dh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroupRole::ecdh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroupRole::ecdsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.NamedGroupRole::kem] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.NameType::host_name] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.PrfAlgorithm::ssl_prf_legacy] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.PrfAlgorithm::tls_prf_legacy] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.PrfAlgorithm::tls_prf_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.PrfAlgorithm::tls_prf_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.PrfAlgorithm::tls13_hkdf_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.PrfAlgorithm::tls13_hkdf_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.PrfAlgorithm::tls13_hkdf_sm3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.PrfAlgorithm::tls_prf_gostr3411_2012_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Http_1_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Spdy_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Spdy_2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Spdy_3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Stun_Turn] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Stun_Nat_Discovery] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Http_2_Tls] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Http_2_Tcp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::WebRtc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::WebRtc_Confidential] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Ftp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Imap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Pop3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::ManageSieve] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Coap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Xmpp_Client] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Xmpp_Server] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Acme_Tls_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Oasis_Mqtt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Dns_Over_Tls] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Ntske_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Sun_Rpc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Http_3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Smb_2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Irc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Nntp_Reading] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Nntp_Transit] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.ProtocolName::Dns_Over_Quic] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::SSLv3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::TLSv10] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::TLSv11] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::TLSv12] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::TLSv13] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::DTLSv10] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::DTLSv12] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::DTLSv13] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ProtocolVersion::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.PskKeyExchangeMode::psk_ke] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.PskKeyExchangeMode::psk_dhe_ke] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.RecordFormat::TypeOffset] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.RecordFormat::VersionOffset] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.RecordFormat::LengthOffset] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.RecordFormat::FragmentOffset] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::anonymous] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::rsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::dsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::ecdsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::ed25519] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::ed448] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::rsa_pss_rsae_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::rsa_pss_rsae_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::rsa_pss_rsae_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::rsa_pss_pss_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::rsa_pss_pss_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::rsa_pss_pss_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::ecdsa_brainpoolP256r1tls13_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::ecdsa_brainpoolP384r1tls13_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::ecdsa_brainpoolP512r1tls13_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::gostr34102012_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.SignatureAlgorithm::gostr34102012_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::ecdsa_brainpoolP256r1tls13_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::ecdsa_brainpoolP384r1tls13_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::ecdsa_brainpoolP512r1tls13_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::ed25519] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::ed448] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::gostr34102012_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::gostr34102012_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::rsa_pss_rsae_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::rsa_pss_rsae_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::rsa_pss_rsae_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::rsa_pss_pss_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::rsa_pss_pss_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::rsa_pss_pss_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::rsa_pkcs1_sha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::ecdsa_sha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::rsa_pkcs1_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::rsa_pkcs1_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::rsa_pkcs1_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::ecdsa_secp256r1_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::ecdsa_secp384r1_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::ecdsa_secp521r1_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::rsa_pss_rsae_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::rsa_pss_rsae_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::rsa_pss_rsae_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::ed25519] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::ed448] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::rsa_pss_pss_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::rsa_pss_pss_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::rsa_pss_pss_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::ecdsa_brainpoolP256r1tls13_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::ecdsa_brainpoolP384r1tls13_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::ecdsa_brainpoolP512r1tls13_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::sm2sig_sm3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::DRAFT_mldsa44] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::DRAFT_mldsa65] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SignatureScheme::DRAFT_mldsa87] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SrtpProtectionProfile::SRTP_AES128_CM_HMAC_SHA1_80] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SrtpProtectionProfile::SRTP_AES128_CM_HMAC_SHA1_32] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SrtpProtectionProfile::SRTP_NULL_HMAC_SHA1_80] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SrtpProtectionProfile::SRTP_NULL_HMAC_SHA1_32] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SrtpProtectionProfile::SRTP_AEAD_AES_128_GCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SrtpProtectionProfile::SRTP_AEAD_AES_256_GCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.SupplementalDataType::user_mapping_data] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Tls.TlsObjectIdentifiers::id_pe_tlsfeature] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::EmptyBytes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.TlsUtilities::EmptyShorts] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.TlsUtilities::EmptyInts] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int64[] Org.BouncyCastle.Tls.TlsUtilities::EmptyLongs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String[] Org.BouncyCastle.Tls.TlsUtilities::EmptyStrings] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.UserMappingType::upn_domain_hint] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoHashAlgorithm::md5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoHashAlgorithm::sha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoHashAlgorithm::sha224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoHashAlgorithm::sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoHashAlgorithm::sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoHashAlgorithm::sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoHashAlgorithm::sm3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoHashAlgorithm::gostr3411_2012_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::rsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::dsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::ecdsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::rsa_pss_rsae_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::rsa_pss_rsae_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::rsa_pss_rsae_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::ed25519] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::ed448] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::rsa_pss_pss_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::rsa_pss_pss_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::rsa_pss_pss_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::ecdsa_brainpoolP256r1tls13_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::ecdsa_brainpoolP384r1tls13_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::ecdsa_brainpoolP512r1tls13_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::gostr34102012_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::gostr34102012_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm::sm2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc2409_768] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc2409_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc3526_1536] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc3526_2048] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc3526_3072] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc3526_4096] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc3526_6144] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc3526_8192] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc4306_768] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc4306_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc5996_768] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc5996_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc7919_ffdhe2048] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc7919_ffdhe3072] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc7919_ffdhe4096] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc7919_ffdhe6144] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::rfc7919_ffdhe8192] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Srp6Group Org.BouncyCastle.Tls.Crypto.Srp6StandardGroups::rfc5054_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Srp6Group Org.BouncyCastle.Tls.Crypto.Srp6StandardGroups::rfc5054_1536] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Srp6Group Org.BouncyCastle.Tls.Crypto.Srp6StandardGroups::rfc5054_2048] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Srp6Group Org.BouncyCastle.Tls.Crypto.Srp6StandardGroups::rfc5054_3072] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Srp6Group Org.BouncyCastle.Tls.Crypto.Srp6StandardGroups::rfc5054_4096] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Srp6Group Org.BouncyCastle.Tls.Crypto.Srp6StandardGroups::rfc5054_6144] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Srp6Group Org.BouncyCastle.Tls.Crypto.Srp6StandardGroups::rfc5054_8192] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCertificateRole::DH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCertificateRole::ECDH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCertificateRole::RsaEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsCertificateRole::Sm2Encryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsDecodeResult::buf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsDecodeResult::off] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsDecodeResult::len] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.Crypto.TlsDecodeResult::contentType] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.TlsEncodeResult::buf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsEncodeResult::off] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.TlsEncodeResult::len] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.Crypto.TlsEncodeResult::recordType] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher::Instance] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::AEAD_CCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::AEAD_CHACHA20_POLY1305] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::AEAD_GCM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSXof Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine::harakaSXof] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS256Digest Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine::harakaS256Digest] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS512Digest Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine::harakaS512Digest] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::sha2_128f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::sha2_128s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::sha2_192f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::sha2_192s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::sha2_256f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::sha2_256s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::sha2_128f_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::sha2_128s_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::sha2_192f_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::sha2_192s_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::sha2_256f_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::sha2_256s_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::shake_128f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::shake_128s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::shake_192f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::shake_192s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::shake_256f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::shake_256s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::shake_128f_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::shake_128s_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::shake_192f_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::shake_192s_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::shake_256f_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::shake_256s_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::haraka_128f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::haraka_128s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::haraka_192f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::haraka_192s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::haraka_256f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::haraka_256s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::haraka_128f_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::haraka_128s_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::haraka_192f_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::haraka_192s_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::haraka_256f_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters::haraka_256s_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::lightsaberkem128r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::saberkem128r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::firesaberkem128r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::lightsaberkem192r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::saberkem192r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::firesaberkem192r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::lightsaberkem256r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::saberkem256r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::firesaberkem256r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::lightsaberkem90sr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::saberkem90sr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::firesaberkem90sr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::ulightsaberkemr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::usaberkemr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::ufiresaberkemr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::ulightsaberkem90sr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::usaberkem90sr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters::ufiresaberkem90sr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Saber.SaberPublicKeyParameters::publicKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::picnicl1fs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::picnicl1ur] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::picnicl3fs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::picnicl3ur] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::picnicl5fs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::picnicl5ur] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::picnic3l1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::picnic3l3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::picnic3l5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::picnicl1full] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::picnicl3full] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters::picnicl5full] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters::NtruHps2048509] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters::NtruHps2048677] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters::NtruHps4096821] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters::NtruHps40961229] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters::NtruHrss701] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters::NtruHrss1373] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters::ntrulpr653] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters::ntrulpr761] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters::ntrulpr857] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters::ntrulpr953] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters::ntrulpr1013] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters::ntrulpr1277] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters::sntrup653] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters::sntrup761] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters::sntrup857] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters::sntrup953] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters::sntrup1013] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters::sntrup1277] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::sha256_n32_w1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::sha256_n32_w2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::sha256_n32_w4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::sha256_n32_w8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::sha256_n24_w1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::sha256_n24_w2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::sha256_n24_w4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::sha256_n24_w8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::shake256_n32_w1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::shake256_n32_w2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::shake256_n32_w4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::shake256_n32_w8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::shake256_n24_w1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::shake256_n24_w2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::shake256_n24_w4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters::shake256_n24_w8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_sha256_n32_h5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_sha256_n32_h10] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_sha256_n32_h15] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_sha256_n32_h20] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_sha256_n32_h25] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_sha256_n24_h5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_sha256_n24_h10] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_sha256_n24_h15] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_sha256_n24_h20] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_sha256_n24_h25] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_shake256_n32_h5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_shake256_n32_h10] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_shake256_n32_h15] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_shake256_n32_h20] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_shake256_n32_h25] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_shake256_n24_h5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_shake256_n24_h10] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_shake256_n24_h15] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_shake256_n24_h20] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters::lms_shake256_n24_h25] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::hqc128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::hqc192] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters::hqc256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::frodokem640aes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::frodokem640shake] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::frodokem976aes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::frodokem976shake] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::frodokem1344aes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::frodokem1344shake] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::frodokem19888r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::frodokem19888shaker3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::frodokem31296r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::frodokem31296shaker3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::frodokem43088r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters::frodokem43088shaker3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters::falcon_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters::falcon_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters::Dilithium2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters::Dilithium2Aes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters::Dilithium3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters::Dilithium3Aes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters::Dilithium5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters::Dilithium5Aes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric::Stream128BlockBytes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric::Stream256BlockBytes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::mceliece348864r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::mceliece348864fr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::mceliece460896r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::mceliece460896fr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::mceliece6688128r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::mceliece6688128fr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::mceliece6960119r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::mceliece6960119fr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::mceliece8192128r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters::mceliece8192128fr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::bike128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::bike192] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters::bike256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing/d__27::<>3__r] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::rainbow] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::rainbowWithSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::rainbowWithSha224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::rainbowWithSha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::rainbowWithSha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::rainbowWithSha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::gmss] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::gmssWithSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::gmssWithSha224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::gmssWithSha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::gmssWithSha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::gmssWithSha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::mcEliece] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::mcElieceCca2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::mcElieceFujisaki] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::mcEliecePointcheval] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::mcElieceKobara_Imai] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::sphincs256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::sphincs256_with_BLAKE512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::sphincs256_with_SHA512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::sphincs256_with_SHA3_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::newHope] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_SHA256ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_SHA512ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_SHAKE128ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_SHAKE256ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_SHA512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_SHAKE128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_SHAKE256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_mt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_mt_SHA256ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_mt_SHA512ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_mt_SHAKE128ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_mt_SHAKE256ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_mt_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_mt_SHA512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_mt_SHAKE128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::xmss_mt_SHAKE256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::qTESLA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::qTESLA_p_I] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::qTESLA_p_III] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::id_Dilithium3_RSA_PKCS15_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::id_Dilithium3_ECDSA_P256_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::id_Dilithium3_ECDSA_brainpoolP256r1_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::id_Dilithium3_Ed25519] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::id_Dilithium5_ECDSA_P384_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::id_Dilithium5_ECDSA_brainpoolP384r1_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::id_Dilithium5_Ed448] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::id_Falcon512_ECDSA_P256_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::id_Falcon512_ECDSA_brainpoolP256r1_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers::id_Falcon512_Ed25519] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.CertStatus::Unrevoked] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.CertStatus::Undetermined] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPath/<>c Org.BouncyCastle.Pkix.PkixCertPath/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPath/<>c Org.BouncyCastle.Pkix.PkixCertPath/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Pkix.PkixCertPath/<>c::<>9__5_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Pkix.PkixCertPath/<>c::<>9__5_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities/<>c Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities/<>c Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Predicate`1 Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities/<>c::<>9__28_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Predicate`1 Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities/<>c::<>9__28_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.PkixParameters::PkixValidityModel] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.PkixParameters::ChainValidityModel] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Collections.Generic.IEqualityComparer`1 Org.BouncyCastle.Pkcs.Pkcs12Store/<>c__DisplayClass56_0`1::c] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] K Org.BouncyCastle.Pkcs.Pkcs12Store/<>c__DisplayClass56_0`1::k] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Collections.Generic.IEqualityComparer`1 Org.BouncyCastle.Pkcs.Pkcs12Store/<>c__DisplayClass57_0`1::c] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] K Org.BouncyCastle.Pkcs.Pkcs12Store/<>c__DisplayClass57_0`1::oldKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkcs.Pkcs12Store::IgnoreUselessPasswordProperty] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::AES_128] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::AES_128] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::AES_192] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::AES_192] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::AES_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::AES_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::BF] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::BF] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::DES] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::DES] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::DES_EDE] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::DES_EDE] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::DES_EDE3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::DES_EDE3] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::RC2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::RC2] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::RC2_40] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::RC2_40] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::RC2_64] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg::RC2_64] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.OpenSsl.PemUtilities/PemMode::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.OpenSsl.PemUtilities/PemMode::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.OpenSsl.PemUtilities/PemMode::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemMode Org.BouncyCastle.OpenSsl.PemUtilities/PemMode::CBC] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemMode Org.BouncyCastle.OpenSsl.PemUtilities/PemMode::CBC] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemMode Org.BouncyCastle.OpenSsl.PemUtilities/PemMode::CFB] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemMode Org.BouncyCastle.OpenSsl.PemUtilities/PemMode::CFB] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemMode Org.BouncyCastle.OpenSsl.PemUtilities/PemMode::ECB] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemMode Org.BouncyCastle.OpenSsl.PemUtilities/PemMode::ECB] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemMode Org.BouncyCastle.OpenSsl.PemUtilities/PemMode::OFB] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities/PemMode Org.BouncyCastle.OpenSsl.PemUtilities/PemMode::OFB] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.OpenSsl.Pkcs8Generator::PbeSha1_RC4_128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.OpenSsl.Pkcs8Generator::PbeSha1_RC4_40] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.OpenSsl.Pkcs8Generator::PbeSha1_3DES] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.OpenSsl.Pkcs8Generator::PbeSha1_2DES] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.OpenSsl.Pkcs8Generator::PbeSha1_RC2_128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.OpenSsl.Pkcs8Generator::PbeSha1_RC2_40] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::AES] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::AES] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::ARC4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::ARC4] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::ARIA] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::ARIA] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::BLOWFISH] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::BLOWFISH] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::CAMELLIA] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::CAMELLIA] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::CAST5] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::CAST5] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::CAST6] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::CAST6] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::CHACHA] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::CHACHA] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::CHACHA20_POLY1305] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::CHACHA20_POLY1305] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::CHACHA7539] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::CHACHA7539] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::DES] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::DES] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::DESEDE] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::DESEDE] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::ELGAMAL] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::ELGAMAL] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::GOST28147] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::GOST28147] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::HC128] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::HC128] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::HC256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::HC256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::IDEA] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::IDEA] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::NOEKEON] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::NOEKEON] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::PBEWITHSHAAND128BITRC4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::PBEWITHSHAAND128BITRC4] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::PBEWITHSHAAND40BITRC4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::PBEWITHSHAAND40BITRC4] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::RC2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::RC2] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::RC5] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::RC5] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::RC5_64] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::RC5_64] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::RC6] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::RC6] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::RIJNDAEL] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::RIJNDAEL] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::RSA] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::RSA] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::SALSA20] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::SALSA20] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::SEED] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::SEED] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::SERPENT] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::SERPENT] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::SKIPJACK] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::SKIPJACK] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::SM4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::SM4] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::TEA] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::TEA] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::THREEFISH_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::THREEFISH_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::THREEFISH_512] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::THREEFISH_512] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::THREEFISH_1024] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::THREEFISH_1024] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::TNEPRES] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::TNEPRES] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::TWOFISH] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::TWOFISH] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::VMPC] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::VMPC] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::VMPC_KSA3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::VMPC_KSA3] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::XTEA] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm::XTEA] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.CipherUtilities/CipherMode::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.CipherUtilities/CipherMode::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.CipherUtilities/CipherMode::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::ECB] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::ECB] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::NONE] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::NONE] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::CBC] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::CBC] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::CCM] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::CCM] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::CFB] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::CFB] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::CTR] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::CTR] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::CTS] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::CTS] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::EAX] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::EAX] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::GCM] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::GCM] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::GOFB] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::GOFB] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::OCB] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::OCB] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::OFB] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::OFB] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::OPENPGPCFB] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::OPENPGPCFB] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::SIC] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherMode Org.BouncyCastle.Security.CipherUtilities/CipherMode::SIC] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.CipherUtilities/CipherPadding::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.CipherUtilities/CipherPadding::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.CipherUtilities/CipherPadding::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::NOPADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::NOPADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::RAW] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::RAW] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO10126PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO10126PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO10126D2PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO10126D2PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO10126_2PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO10126_2PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO7816_4PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO7816_4PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO9797_1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO9797_1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO9796_1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO9796_1] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO9796_1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ISO9796_1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEP] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPPADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPPADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHMD5ANDMGF1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHMD5ANDMGF1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA1ANDMGF1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA1ANDMGF1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_1ANDMGF1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_1ANDMGF1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA224ANDMGF1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA224ANDMGF1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_224ANDMGF1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_224ANDMGF1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA256ANDMGF1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA256ANDMGF1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_256ANDMGF1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_256ANDMGF1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA256ANDMGF1WITHSHA256PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA256ANDMGF1WITHSHA256PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_256ANDMGF1WITHSHA_256PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_256ANDMGF1WITHSHA_256PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA256ANDMGF1WITHSHA1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA256ANDMGF1WITHSHA1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_256ANDMGF1WITHSHA_1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_256ANDMGF1WITHSHA_1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA384ANDMGF1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA384ANDMGF1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_384ANDMGF1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_384ANDMGF1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA512ANDMGF1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA512ANDMGF1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_512ANDMGF1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::OAEPWITHSHA_512ANDMGF1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::PKCS1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::PKCS1] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::PKCS1PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::PKCS1PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::PKCS5] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::PKCS5] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::PKCS5PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::PKCS5PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::PKCS7] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::PKCS7] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::PKCS7PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::PKCS7PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::TBCPADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::TBCPADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::WITHCTS] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::WITHCTS] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::X923PADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::X923PADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ZEROBYTEPADDING] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities/CipherPadding Org.BouncyCastle.Security.CipherUtilities/CipherPadding::ZEROBYTEPADDING] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2B_160] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2B_160] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2B_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2B_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2B_384] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2B_384] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2B_512] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2B_512] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2S_128] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2S_128] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2S_160] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2S_160] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2S_224] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2S_224] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2S_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE2S_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE3_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::BLAKE3_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::DSTU7564_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::DSTU7564_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::DSTU7564_384] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::DSTU7564_384] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::DSTU7564_512] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::DSTU7564_512] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::GOST3411] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::GOST3411] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::GOST3411_2012_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::GOST3411_2012_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::GOST3411_2012_512] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::GOST3411_2012_512] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::KECCAK_224] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::KECCAK_224] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::KECCAK_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::KECCAK_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::KECCAK_288] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::KECCAK_288] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::KECCAK_384] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::KECCAK_384] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::KECCAK_512] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::KECCAK_512] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::MD2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::MD2] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::MD4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::MD4] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::MD5] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::MD5] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::NONE] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::NONE] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::RIPEMD128] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::RIPEMD128] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::RIPEMD160] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::RIPEMD160] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::RIPEMD256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::RIPEMD256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::RIPEMD320] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::RIPEMD320] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_1] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_224] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_224] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_384] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_384] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_512] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_512] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_512_224] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_512_224] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_512_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA_512_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA3_224] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA3_224] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA3_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA3_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA3_384] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA3_384] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA3_512] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHA3_512] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHAKE128_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHAKE128_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHAKE256_512] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SHAKE256_512] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SM3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::SM3] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::TIGER] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::TIGER] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::WHIRLPOOL] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm Org.BouncyCastle.Security.DigestUtilities/DigestAlgorithm::WHIRLPOOL] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::AESRFC3211WRAP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::AESRFC3211WRAP] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::AESWRAP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::AESWRAP] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::AESWRAPPAD] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::AESWRAPPAD] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::ARIARFC3211WRAP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::ARIARFC3211WRAP] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::ARIAWRAP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::ARIAWRAP] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::ARIAWRAPPAD] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::ARIAWRAPPAD] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::CAMELLIARFC3211WRAP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::CAMELLIARFC3211WRAP] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::CAMELLIAWRAP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::CAMELLIAWRAP] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::DESRFC3211WRAP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::DESRFC3211WRAP] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::DESEDERFC3211WRAP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::DESEDERFC3211WRAP] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::DESEDEWRAP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::DESEDEWRAP] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::RC2WRAP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::RC2WRAP] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::SEEDWRAP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm Org.BouncyCastle.Security.WrapperUtilities/WrapAlgorithm::SEEDWRAP] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.BasicOcspResp/<>c Org.BouncyCastle.Ocsp.BasicOcspResp/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.BasicOcspResp/<>c Org.BouncyCastle.Ocsp.BasicOcspResp/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Ocsp.BasicOcspResp/<>c::<>9__11_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Ocsp.BasicOcspResp/<>c::<>9__11_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Ocsp.CertificateID::HashSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Ocsp.CertificateID::DigestSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.CertificateStatus Org.BouncyCastle.Ocsp.CertificateStatus::Good] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspReq/<>c Org.BouncyCastle.Ocsp.OcspReq/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspReq/<>c Org.BouncyCastle.Ocsp.OcspReq/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Ocsp.OcspReq/<>c::<>9__10_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Ocsp.OcspReq/<>c::<>9__10_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspReqGenerator/<>c Org.BouncyCastle.Ocsp.OcspReqGenerator/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspReqGenerator/<>c Org.BouncyCastle.Ocsp.OcspReqGenerator/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Ocsp.OcspReqGenerator/<>c::<>9__9_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Ocsp.OcspReqGenerator/<>c::<>9__9_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OCSPRespGenerator::Successful] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OCSPRespGenerator::MalformedRequest] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OCSPRespGenerator::InternalError] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OCSPRespGenerator::TryLater] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OCSPRespGenerator::SigRequired] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OCSPRespGenerator::Unauthorized] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OcspRespStatus::Successful] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OcspRespStatus::MalformedRequest] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OcspRespStatus::InternalError] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OcspRespStatus::TryLater] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OcspRespStatus::SigRequired] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Ocsp.OcspRespStatus::Unauthorized] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.RespData/<>c Org.BouncyCastle.Ocsp.RespData/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.RespData/<>c Org.BouncyCastle.Ocsp.RespData/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Ocsp.RespData/<>c::<>9__7_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Ocsp.RespData/<>c::<>9__7_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Zero] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Zero] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::One] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::One] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Two] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Two] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Three] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Three] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Four] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Four] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Five] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Five] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Six] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Six] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Ten] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Ten] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Primes::SmallFactorLimit] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::COORD_AFFINE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::COORD_HOMOGENEOUS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::COORD_JACOBIAN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::COORD_JACOBIAN_CHUDNOVSKY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::COORD_JACOBIAN_MODIFIED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::COORD_LAMBDA_AFFINE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::COORD_LAMBDA_PROJECTIVE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECCurve::COORD_SKEWED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractFpCurve/<>c Org.BouncyCastle.Math.EC.AbstractFpCurve/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractFpCurve/<>c Org.BouncyCastle.Math.EC.AbstractFpCurve/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`3 Org.BouncyCastle.Math.EC.AbstractFpCurve/<>c::<>9__2_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`3 Org.BouncyCastle.Math.EC.AbstractFpCurve/<>c::<>9__2_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mFieldElement::Gnb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mFieldElement::Tpb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.F2mFieldElement::Ppb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm::Ed25519] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm::Ed25519] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm::Ed25519ctx] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm::Ed25519ctx] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm::Ed25519ph] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/Algorithm::Ed25519ph] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PrehashSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PublicKeySize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::SecretKeySize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::SignatureSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm::Ed448] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm::Ed448] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm::Ed448ph] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm Org.BouncyCastle.Math.EC.Rfc8032.Ed448/Algorithm::Ed448ph] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PrehashSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PublicKeySize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed448::SecretKeySize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed448::SignatureSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc7748.X25519::PointSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc7748.X25519::ScalarSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Size] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc7748.X448::PointSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc7748.X448::ScalarSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Size] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities::PRECOMP_NAME] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::PRECOMP_NAME] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Math.EC.Endo.EndoUtilities::PRECOMP_NAME] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement::Q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement::Q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement::Q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement::Q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement::Q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement::Q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::Q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement::Q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement::Q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement::Q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement::Q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement::Q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.SByte Org.BouncyCastle.Math.EC.Abc.Tnaf::Width] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.ZTauElement[] Org.BouncyCastle.Math.EC.Abc.Tnaf::Alpha0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.SByte[][] Org.BouncyCastle.Math.EC.Abc.Tnaf::Alpha0Tnaf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.ZTauElement[] Org.BouncyCastle.Math.EC.Abc.Tnaf::Alpha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.SByte[][] Org.BouncyCastle.Math.EC.Abc.Tnaf::Alpha1Tnaf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Abc.ZTauElement::u] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Abc.ZTauElement::v] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Operators.Utilities.DefaultDigestAlgorithmFinder Org.BouncyCastle.Operators.Utilities.DefaultDigestAlgorithmFinder::Instance] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Operators.Utilities.DefaultMacAlgorithmFinder Org.BouncyCastle.Operators.Utilities.DefaultMacAlgorithmFinder::Instance] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Operators.Utilities.DefaultSignatureAlgorithmFinder Org.BouncyCastle.Operators.Utilities.DefaultSignatureAlgorithmFinder::Instance] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICharToByteConverter Org.BouncyCastle.Crypto.PasswordConverter::Ascii] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICharToByteConverter Org.BouncyCastle.Crypto.PasswordConverter::Utf8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICharToByteConverter Org.BouncyCastle.Crypto.PasswordConverter::Pkcs12] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Utilities.AlgorithmIdentifierFactory::IDEA_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Crypto.Utilities.AlgorithmIdentifierFactory::CAST5_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Tls.TlsRsaKeyExchange::PreMasterSecretLength] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.IsoTrailers::TRAILER_IMPLICIT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.IsoTrailers::TRAILER_RIPEMD160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.IsoTrailers::TRAILER_RIPEMD128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.IsoTrailers::TRAILER_SHA1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.IsoTrailers::TRAILER_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.IsoTrailers::TRAILER_SHA512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.IsoTrailers::TRAILER_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.IsoTrailers::TRAILER_WHIRLPOOL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.IsoTrailers::TRAILER_SHA224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.IsoTrailers::TRAILER_SHA512_224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.IsoTrailers::TRAILER_SHA512_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.PlainDsaEncoding Org.BouncyCastle.Crypto.Signers.PlainDsaEncoding::Instance] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Signers.PssSigner::TrailerImplicit] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.SM2Signer/State::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.SM2Signer/State::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Signers.SM2Signer/State::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.SM2Signer/State Org.BouncyCastle.Crypto.Signers.SM2Signer/State::Uninitialized] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.SM2Signer/State Org.BouncyCastle.Crypto.Signers.SM2Signer/State::Uninitialized] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.SM2Signer/State Org.BouncyCastle.Crypto.Signers.SM2Signer/State::Init] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.SM2Signer/State Org.BouncyCastle.Crypto.Signers.SM2Signer/State::Init] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.SM2Signer/State Org.BouncyCastle.Crypto.Signers.SM2Signer/State::Data] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.SM2Signer/State Org.BouncyCastle.Crypto.Signers.SM2Signer/State::Data] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.StandardDsaEncoding Org.BouncyCastle.Crypto.Signers.StandardDsaEncoding::Instance] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Argon2Parameters/Builder::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::Argon2d] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::Argon2i] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::Argon2id] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::Version10] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::Version13] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Argon2Parameters::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DesEdeParameters::DesEdeKeyLength] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DesParameters::DesKeyLength] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DsaParameterGenerationParameters::DigitalSignatureUsage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DsaParameterGenerationParameters::KeyEstablishmentUsage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECDomainParameters/<>c Org.BouncyCastle.Crypto.Parameters.ECDomainParameters/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECDomainParameters/<>c Org.BouncyCastle.Crypto.Parameters.ECDomainParameters/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Crypto.Parameters.ECDomainParameters/<>c::<>9__23_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Crypto.Parameters.ECDomainParameters/<>c::<>9__23_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::KeySize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::SignatureSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::KeySize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::KeySize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::SignatureSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::KeySize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameters Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::ml_dsa_44] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameters Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::ml_dsa_65] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameters Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::ml_dsa_87] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameters Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::ml_dsa_44_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameters Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::ml_dsa_65_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameters Org.BouncyCastle.Crypto.Parameters.MLDsaParameters::ml_dsa_87_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet::ml_dsa_44] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet::ml_dsa_65] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet::ml_dsa_87] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format::SeedOnly] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format::SeedOnly] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format::EncodingOnly] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format::EncodingOnly] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format::SeedAndEncoding] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format::SeedAndEncoding] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemParameters Org.BouncyCastle.Crypto.Parameters.MLKemParameters::ml_kem_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemParameters Org.BouncyCastle.Crypto.Parameters.MLKemParameters::ml_kem_768] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemParameters Org.BouncyCastle.Crypto.Parameters.MLKemParameters::ml_kem_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet::ml_kem_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet::ml_kem_768] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet::ml_kem_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format::SeedOnly] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format::SeedOnly] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format::EncodingOnly] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format::EncodingOnly] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format::SeedAndEncoding] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format::SeedAndEncoding] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.SkeinParameters::PARAM_TYPE_KEY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.SkeinParameters::PARAM_TYPE_CONFIG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.SkeinParameters::PARAM_TYPE_PERSONALISATION] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.SkeinParameters::PARAM_TYPE_PUBLIC_KEY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.SkeinParameters::PARAM_TYPE_KEY_IDENTIFIER] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.SkeinParameters::PARAM_TYPE_NONCE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.SkeinParameters::PARAM_TYPE_MESSAGE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.SkeinParameters::PARAM_TYPE_OUTPUT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_sha2_128s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_shake_128s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_sha2_128f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_shake_128f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_sha2_192s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_shake_192s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_sha2_192f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_shake_192f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_sha2_256s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_shake_256s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_sha2_256f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_shake_256f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_sha2_128s_with_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_shake_128s_with_shake128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_sha2_128f_with_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_shake_128f_with_shake128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_sha2_192s_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_shake_192s_with_shake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_sha2_192f_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_shake_192f_with_shake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_sha2_256s_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_shake_256s_with_shake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_sha2_256f_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters::slh_dsa_shake_256f_with_shake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::slh_dsa_sha2_128s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::slh_dsa_shake_128s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::slh_dsa_sha2_128f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::slh_dsa_shake_128f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::slh_dsa_sha2_192s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::slh_dsa_shake_192s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::slh_dsa_sha2_192f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::slh_dsa_shake_192f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::slh_dsa_sha2_256s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::slh_dsa_shake_256s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::slh_dsa_sha2_256f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet::slh_dsa_shake_256f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::KeySize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::SecretSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters::KeySize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::KeySize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::SecretSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters::KeySize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.AsconAead128/State::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.AsconAead128/State::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.AsconAead128/State::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::Uninitialized] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::Uninitialized] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::EncInit] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::EncInit] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::EncAad] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::EncAad] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::EncData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::EncData] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::EncFinal] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::EncFinal] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::DecInit] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::DecInit] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::DecAad] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::DecAad] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::DecData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::DecData] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::DecFinal] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128/State Org.BouncyCastle.Crypto.Modes.AsconAead128/State::DecFinal] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::Uninitialized] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::Uninitialized] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::EncInit] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::EncInit] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::EncAad] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::EncAad] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::EncData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::EncData] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::EncFinal] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::EncFinal] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::DecInit] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::DecInit] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::DecAad] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::DecAad] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::DecData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::DecData] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::DecFinal] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State::DecFinal] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag::N] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag::N] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag::H] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag::H] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag::C] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag Org.BouncyCastle.Crypto.Modes.EaxBlockCipher/Tag::C] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.SkeinMac::SKEIN_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.SkeinMac::SKEIN_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.SkeinMac::SKEIN_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Position Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/<>c__DisplayClass24_0::position] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/<>c__DisplayClass24_0::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::KeyMaterial] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::IVMaterial] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::MacMaterial] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters::ascon80pq] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters::ascon80pq] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters::ascon128a] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters::ascon128a] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters::ascon128] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters Org.BouncyCastle.Crypto.Engines.AsconEngine/AsconParameters::ascon128] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AsconEngine/State::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AsconEngine/State::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.AsconEngine/State::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::Uninitialized] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::Uninitialized] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::EncInit] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::EncInit] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::EncAad] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::EncAad] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::EncData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::EncData] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::EncFinal] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::EncFinal] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::DecInit] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::DecInit] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::DecAad] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::DecAad] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::DecData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::DecData] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::DecFinal] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine/State Org.BouncyCastle.Crypto.Engines.AsconEngine/State::DecFinal] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::Uninitialized] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::Uninitialized] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::EncInit] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::EncInit] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::EncAad] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::EncAad] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::EncData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::EncData] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::EncFinal] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::EncFinal] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::DecInit] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::DecInit] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::DecAad] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::DecAad] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::DecData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::DecData] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::DecFinal] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State::DecFinal] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Salsa20Engine::DEFAULT_ROUNDS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode::C1C2C3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode::C1C2C3] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode::C1C3C2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode Org.BouncyCastle.Crypto.Engines.SM2Engine/Mode::C1C3C2] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters::SCHWAEMM128_128] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters::SCHWAEMM128_128] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters::SCHWAEMM256_128] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters::SCHWAEMM256_128] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters::SCHWAEMM192_192] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters::SCHWAEMM192_192] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters::SCHWAEMM256_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters Org.BouncyCastle.Crypto.Engines.SparkleEngine/SparkleParameters::SCHWAEMM256_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::Uninitialized] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::Uninitialized] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::EncInit] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::EncInit] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::EncAad] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::EncAad] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::EncData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::EncData] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::EncFinal] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::EncFinal] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::DecInit] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::DecInit] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::DecAad] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::DecAad] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::DecData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::DecData] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::DecFinal] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine/State Org.BouncyCastle.Crypto.Engines.SparkleEngine/State::DecFinal] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.ThreefishEngine::BLOCKSIZE_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.ThreefishEngine::BLOCKSIZE_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.ThreefishEngine::BLOCKSIZE_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::StrictLengthEnabledProperty] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters::AsconHash] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters::AsconHash] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters::AsconHashA] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters Org.BouncyCastle.Crypto.Digests.AsconDigest/AsconParameters::AsconHashA] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters::AsconXof] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters::AsconXof] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters::AsconXofA] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters Org.BouncyCastle.Crypto.Digests.AsconXof/AsconParameters::AsconXofA] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::UnknownDigestLength] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinDigest::SKEIN_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinDigest::SKEIN_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinDigest::SKEIN_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinEngine::SKEIN_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinEngine::SKEIN_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinEngine::SKEIN_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters::ESCH256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters::ESCH256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters::ESCH384] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters Org.BouncyCastle.Crypto.Digests.SparkleDigest/SparkleParameters::ESCH384] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc2409_768] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc2409_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc3526_1536] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc3526_2048] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc3526_3072] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc3526_4096] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc3526_6144] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc3526_8192] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc4306_768] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc4306_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc5996_768] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc5996_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc7919_ffdhe2048] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc7919_ffdhe3072] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc7919_ffdhe4096] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc7919_ffdhe6144] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::rfc7919_ffdhe8192] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters Org.BouncyCastle.Crypto.Agreement.Srp.Srp6StandardGroups::rfc5054_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters Org.BouncyCastle.Crypto.Agreement.Srp.Srp6StandardGroups::rfc5054_1536] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters Org.BouncyCastle.Crypto.Agreement.Srp.Srp6StandardGroups::rfc5054_2048] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters Org.BouncyCastle.Crypto.Agreement.Srp.Srp6StandardGroups::rfc5054_3072] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters Org.BouncyCastle.Crypto.Agreement.Srp.Srp6StandardGroups::rfc5054_4096] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters Org.BouncyCastle.Crypto.Agreement.Srp.Srp6StandardGroups::rfc5054_6144] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters Org.BouncyCastle.Crypto.Agreement.Srp.Srp6StandardGroups::rfc5054_8192] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::STATE_INITIALIZED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::STATE_ROUND_1_CREATED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::STATE_ROUND_1_VALIDATED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::STATE_ROUND_2_CREATED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::STATE_ROUND_2_VALIDATED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::STATE_KEY_CALCULATED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::STATE_ROUND_3_CREATED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant::STATE_ROUND_3_VALIDATED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroups::SUN_JCE_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroups::NIST_2048] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroups::NIST_3072] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::Zero] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::One] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRepMessage/<>c Org.BouncyCastle.Crmf.CertificateRepMessage/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRepMessage/<>c Org.BouncyCastle.Crmf.CertificateRepMessage/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Converter`2 Org.BouncyCastle.Crmf.CertificateRepMessage/<>c::<>9__5_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Converter`2 Org.BouncyCastle.Crmf.CertificateRepMessage/<>c::<>9__5_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRepMessageBuilder/<>c Org.BouncyCastle.Crmf.CertificateRepMessageBuilder/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRepMessageBuilder/<>c Org.BouncyCastle.Crmf.CertificateRepMessageBuilder/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Converter`2 Org.BouncyCastle.Crmf.CertificateRepMessageBuilder/<>c::<>9__2_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Converter`2 Org.BouncyCastle.Crmf.CertificateRepMessageBuilder/<>c::<>9__2_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateReqMessages/<>c Org.BouncyCastle.Crmf.CertificateReqMessages/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateReqMessages/<>c Org.BouncyCastle.Crmf.CertificateReqMessages/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Converter`2 Org.BouncyCastle.Crmf.CertificateReqMessages/<>c::<>9__4_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Converter`2 Org.BouncyCastle.Crmf.CertificateReqMessages/<>c::<>9__4_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crmf.CertificateRequestMessage::popRaVerified] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crmf.CertificateRequestMessage::popSigningKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crmf.CertificateRequestMessage::popKeyEncipherment] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crmf.CertificateRequestMessage::popKeyAgreement] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crmf.PkiArchiveControl::encryptedPrivKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crmf.PkiArchiveControl::keyGenParameters] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crmf.PkiArchiveControl::archiveRemGenPrivKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.CmsAttributeTableParameter::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.CmsAttributeTableParameter::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.CmsAttributeTableParameter::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableParameter Org.BouncyCastle.Cms.CmsAttributeTableParameter::ContentType] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableParameter Org.BouncyCastle.Cms.CmsAttributeTableParameter::ContentType] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableParameter Org.BouncyCastle.Cms.CmsAttributeTableParameter::Digest] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableParameter Org.BouncyCastle.Cms.CmsAttributeTableParameter::Digest] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableParameter Org.BouncyCastle.Cms.CmsAttributeTableParameter::Signature] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableParameter Org.BouncyCastle.Cms.CmsAttributeTableParameter::Signature] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableParameter Org.BouncyCastle.Cms.CmsAttributeTableParameter::DigestAlgorithmIdentifier] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableParameter Org.BouncyCastle.Cms.CmsAttributeTableParameter::DigestAlgorithmIdentifier] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableParameter Org.BouncyCastle.Cms.CmsAttributeTableParameter::SignatureAlgorithmIdentifier] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableParameter Org.BouncyCastle.Cms.CmsAttributeTableParameter::SignatureAlgorithmIdentifier] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator/<>c__DisplayClass2_0::encKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator/<>c__DisplayClass2_0::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsAuthEnvelopedGenerator::Aes128Ccm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsAuthEnvelopedGenerator::Aes192Ccm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsAuthEnvelopedGenerator::Aes256Ccm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsAuthEnvelopedGenerator::Aes128Gcm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsAuthEnvelopedGenerator::Aes192Gcm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsAuthEnvelopedGenerator::Aes256Gcm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsCompressedData/<>c Org.BouncyCastle.Cms.CmsCompressedData/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsCompressedData/<>c Org.BouncyCastle.Cms.CmsCompressedData/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Cms.CmsCompressedData/<>c::<>9__5_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Cms.CmsCompressedData/<>c::<>9__5_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.CmsCompressedData/<>c__DisplayClass6_0::limit] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsCompressedDataGenerator::ZLib] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator::ZLib] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator/<>c__DisplayClass2_0::encKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator/<>c__DisplayClass2_0::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator/<>c__DisplayClass4_0::encKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator/<>c__DisplayClass4_0::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::DesCbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::DesEde3Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::RC2Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::IdeaCbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Cast5Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes128Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes192Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes256Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes128Ccm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes192Ccm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes256Ccm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes128Gcm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes192Gcm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes256Gcm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Camellia128Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Camellia192Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Camellia256Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::SeedCbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::DesEde3Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes128Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes192Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Aes256Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Camellia128Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Camellia192Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Camellia256Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::SeedWrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Gost28147Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::Gost28147CryptoProWrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECDHSha1Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECCDHSha1Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECMqvSha1Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECDHSha224Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECCDHSha224Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECMqvSha224Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECDHSha256Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECCDHSha256Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECMqvSha256Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECDHSha384Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECCDHSha384Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECMqvSha384Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECDHSha512Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECCDHSha512Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsEnvelopedGenerator::ECMqvSha512Kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::Data] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestSha224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestSha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestSha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestSha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestSha512_224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestSha512_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestSha3_224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestSha3_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestSha3_384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestSha3_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestShake128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestShake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestMD5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestGost3411] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestRipeMD128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestRipeMD160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestRipeMD256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::DigestSM3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::EncryptionRsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::EncryptionDsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::EncryptionECDsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::EncryptionRsaPss] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::EncryptionGost3410] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::EncryptionECGost3410] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::EncryptionECGost3410_2012_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.CmsSignedGenerator::EncryptionECGost3410_2012_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformation/<>c Org.BouncyCastle.Cms.SignerInformation/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformation/<>c Org.BouncyCastle.Cms.SignerInformation/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Cms.SignerInformation/<>c::<>9__56_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Cms.SignerInformation/<>c::<>9__56_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessage/<>c Org.BouncyCastle.Cmp.ProtectedPkiMessage/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessage/<>c Org.BouncyCastle.Cmp.ProtectedPkiMessage/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Converter`2 Org.BouncyCastle.Cmp.ProtectedPkiMessage/<>c::<>9__12_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Converter`2 Org.BouncyCastle.Cmp.ProtectedPkiMessage/<>c::<>9__12_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.AeadAlgorithmTag::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.AeadAlgorithmTag::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.AeadAlgorithmTag::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.AeadAlgorithmTag Org.BouncyCastle.Bcpg.AeadAlgorithmTag::Eax] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.AeadAlgorithmTag Org.BouncyCastle.Bcpg.AeadAlgorithmTag::Eax] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.AeadAlgorithmTag Org.BouncyCastle.Bcpg.AeadAlgorithmTag::Ocb] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.AeadAlgorithmTag Org.BouncyCastle.Bcpg.AeadAlgorithmTag::Ocb] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.AeadAlgorithmTag Org.BouncyCastle.Bcpg.AeadAlgorithmTag::Gcm] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.AeadAlgorithmTag Org.BouncyCastle.Bcpg.AeadAlgorithmTag::Gcm] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.ArmoredOutputStream::HeaderVersion] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.ArmoredOutputStream::HeaderVersion] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.BcpgInputStream::next] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.CompressionAlgorithmTag::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.CompressionAlgorithmTag::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.CompressionAlgorithmTag::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.CompressionAlgorithmTag Org.BouncyCastle.Bcpg.CompressionAlgorithmTag::Uncompressed] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.CompressionAlgorithmTag Org.BouncyCastle.Bcpg.CompressionAlgorithmTag::Uncompressed] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.CompressionAlgorithmTag Org.BouncyCastle.Bcpg.CompressionAlgorithmTag::Zip] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.CompressionAlgorithmTag Org.BouncyCastle.Bcpg.CompressionAlgorithmTag::Zip] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.CompressionAlgorithmTag Org.BouncyCastle.Bcpg.CompressionAlgorithmTag::ZLib] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.CompressionAlgorithmTag Org.BouncyCastle.Bcpg.CompressionAlgorithmTag::ZLib] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.CompressionAlgorithmTag Org.BouncyCastle.Bcpg.CompressionAlgorithmTag::BZip2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.CompressionAlgorithmTag Org.BouncyCastle.Bcpg.CompressionAlgorithmTag::BZip2] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.HashAlgorithmTag::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.HashAlgorithmTag::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.HashAlgorithmTag::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::MD5] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::MD5] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha1] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::RipeMD160] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::RipeMD160] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::DoubleSha] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::DoubleSha] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::MD2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::MD2] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Tiger192] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Tiger192] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Haval5pass160] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Haval5pass160] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha384] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha384] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha512] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha512] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha224] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha224] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha3_256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha3_256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha3_512] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha3_512] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::MD4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::MD4] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha3_224] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha3_224] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha3_256_Old] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha3_256_Old] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha3_384] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha3_384] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha3_512_Old] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::Sha3_512_Old] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::SM3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag Org.BouncyCastle.Bcpg.HashAlgorithmTag::SM3] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OnePassSignaturePacket::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.PacketTag::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.PacketTag::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.PacketTag::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Reserved] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Reserved] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::PublicKeyEncryptedSession] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::PublicKeyEncryptedSession] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Signature] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Signature] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::SymmetricKeyEncryptedSessionKey] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::SymmetricKeyEncryptedSessionKey] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::OnePassSignature] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::OnePassSignature] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::SecretKey] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::SecretKey] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::PublicKey] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::PublicKey] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::SecretSubkey] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::SecretSubkey] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::CompressedData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::CompressedData] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::SymmetricKeyEncrypted] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::SymmetricKeyEncrypted] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Marker] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Marker] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::LiteralData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::LiteralData] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Trust] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Trust] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::UserId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::UserId] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::PublicSubkey] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::PublicSubkey] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::UserAttribute] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::UserAttribute] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::SymmetricEncryptedIntegrityProtected] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::SymmetricEncryptedIntegrityProtected] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::ModificationDetectionCode] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::ModificationDetectionCode] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Experimental1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Experimental1] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Experimental2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Experimental2] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Experimental3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Experimental3] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Experimental4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag Org.BouncyCastle.Bcpg.PacketTag::Experimental4] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::RsaGeneral] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::RsaGeneral] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::RsaEncrypt] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::RsaEncrypt] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::RsaSign] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::RsaSign] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::ElGamalEncrypt] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::ElGamalEncrypt] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Dsa] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Dsa] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::ECDH] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::ECDH] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::ECDsa] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::ECDsa] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::ElGamalGeneral] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::ElGamalGeneral] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::DiffieHellman] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::DiffieHellman] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::EdDsa] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::EdDsa] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::EdDsa_Legacy] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::EdDsa_Legacy] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_1] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_2] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_3] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_4] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_5] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_5] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_6] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_6] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_7] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_7] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_8] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_8] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_9] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_10] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_10] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_11] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag::Experimental_11] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.PublicKeyEncSessionPacket::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.PublicKeyPacket::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.S2k::Simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.S2k::Salted] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.S2k::SaltedAndIterated] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.S2k::GnuDummyS2K] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.S2k::GnuProtectionModeNoPrivateKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.S2k::GnuProtectionModeDivertToCard] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SecretKeyPacket::UsageNone] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SecretKeyPacket::UsageChecksum] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SecretKeyPacket::UsageSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SignaturePacket::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SignatureSubpacketTag::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SignatureSubpacketTag::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SignatureSubpacketTag::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::CreationTime] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::CreationTime] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::ExpireTime] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::ExpireTime] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::Exportable] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::Exportable] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::TrustSig] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::TrustSig] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::RegExp] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::RegExp] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::Revocable] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::Revocable] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::KeyExpireTime] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::KeyExpireTime] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::Placeholder] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::Placeholder] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PreferredSymmetricAlgorithms] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PreferredSymmetricAlgorithms] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::RevocationKey] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::RevocationKey] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::IssuerKeyId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::IssuerKeyId] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::NotationData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::NotationData] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PreferredHashAlgorithms] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PreferredHashAlgorithms] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PreferredCompressionAlgorithms] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PreferredCompressionAlgorithms] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::KeyServerPreferences] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::KeyServerPreferences] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PreferredKeyServer] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PreferredKeyServer] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PrimaryUserId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PrimaryUserId] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PolicyUrl] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PolicyUrl] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::KeyFlags] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::KeyFlags] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::SignerUserId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::SignerUserId] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::RevocationReason] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::RevocationReason] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::Features] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::Features] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::SignatureTarget] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::SignatureTarget] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::EmbeddedSignature] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::EmbeddedSignature] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::IssuerFingerprint] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::IssuerFingerprint] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::IntendedRecipientFingerprint] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::IntendedRecipientFingerprint] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::AttestedCertifications] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::AttestedCertifications] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::KeyBlock] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::KeyBlock] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PreferredAeadAlgorithms] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.SignatureSubpacketTag::PreferredAeadAlgorithms] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.RevocationKeyTag::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.RevocationKeyTag::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.RevocationKeyTag::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationKeyTag Org.BouncyCastle.Bcpg.RevocationKeyTag::ClassDefault] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationKeyTag Org.BouncyCastle.Bcpg.RevocationKeyTag::ClassDefault] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationKeyTag Org.BouncyCastle.Bcpg.RevocationKeyTag::ClassSensitive] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationKeyTag Org.BouncyCastle.Bcpg.RevocationKeyTag::ClassSensitive] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.RevocationReasonTag::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.RevocationReasonTag::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.RevocationReasonTag::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReasonTag Org.BouncyCastle.Bcpg.RevocationReasonTag::NoReason] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReasonTag Org.BouncyCastle.Bcpg.RevocationReasonTag::NoReason] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReasonTag Org.BouncyCastle.Bcpg.RevocationReasonTag::KeySuperseded] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReasonTag Org.BouncyCastle.Bcpg.RevocationReasonTag::KeySuperseded] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReasonTag Org.BouncyCastle.Bcpg.RevocationReasonTag::KeyCompromised] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReasonTag Org.BouncyCastle.Bcpg.RevocationReasonTag::KeyCompromised] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReasonTag Org.BouncyCastle.Bcpg.RevocationReasonTag::KeyRetired] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReasonTag Org.BouncyCastle.Bcpg.RevocationReasonTag::KeyRetired] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReasonTag Org.BouncyCastle.Bcpg.RevocationReasonTag::UserNoLongerValid] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReasonTag Org.BouncyCastle.Bcpg.RevocationReasonTag::UserNoLongerValid] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags::None] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags::None] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags::LongLength] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags::LongLength] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags::Partial] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags Org.BouncyCastle.Bcpg.StreamUtilities/StreamFlags::Partial] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Null] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Null] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Idea] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Idea] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::TripleDes] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::TripleDes] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Cast5] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Cast5] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Blowfish] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Blowfish] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Safer] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Safer] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Des] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Des] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Aes128] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Aes128] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Aes192] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Aes192] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Aes256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Aes256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Twofish] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Twofish] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Camellia128] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Camellia128] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Camellia192] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Camellia192] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Camellia256] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag::Camellia256] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.SymmetricKeyEncSessionPacket::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag::ImageAttribute] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag::ImageAttribute] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyFlags::CanCertify] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyFlags::CanSign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyFlags::CanEncryptCommunications] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyFlags::CanEncryptStorage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyFlags::MaybeSplit] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyFlags::MaybeShared] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Char Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralData::Binary] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Char Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralData::Text] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Char Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralData::Utf8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralData::Console] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Char Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator::Binary] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Char Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator::Text] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Char Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator::Utf8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator::Console] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::<>3__ignoreCase] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::<>3__matchPartial] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::<>3__userID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::<>3__ignoreCase] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::<>4__this] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::<>3__matchPartial] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::<>3__userID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::BinaryDocument] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::CanonicalTextDocument] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::StandAlone] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::DefaultCertification] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::NoCertification] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::CasualCertification] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::PositiveCertification] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::SubkeyBinding] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::PrimaryKeyBinding] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::DirectKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::KeyRevocation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::SubkeyRevocation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::CertificationRevocation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::Timestamp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::ThirdPartyConfirmation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator/<>c__DisplayClass34_0::type] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator/<>c__DisplayClass35_0::type] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.Sig.Features::FEATURE_MODIFICATION_DETECTION] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.Sig.Features::FEATURE_AEAD_ENCRYPTED_DATA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.Sig.Features::FEATURE_VERSION_5_PUBLIC_KEY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.KeyFlags::CertifyOther] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.KeyFlags::SignData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.KeyFlags::EncryptComms] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.KeyFlags::EncryptStorage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.KeyFlags::Split] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.KeyFlags::Authentication] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.KeyFlags::Shared] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.NotationData::HeaderFlagLength] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.NotationData::HeaderNameLength] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.Sig.NotationData::HeaderValueLength] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.Attr.ImageAttrib/Format::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.Attr.ImageAttrib/Format::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Bcpg.Attr.ImageAttrib/Format::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Attr.ImageAttrib/Format Org.BouncyCastle.Bcpg.Attr.ImageAttrib/Format::Jpeg] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Attr.ImageAttrib/Format Org.BouncyCastle.Bcpg.Attr.ImageAttrib/Format::Jpeg] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Encodable::Ber] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Encodable::Der] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1Encodable::DL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable[] Org.BouncyCastle.Asn1.Asn1EncodableVector/d__36::<>3__elements] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1EncodableVector/d__36::<>3__elementCount] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Boolean] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Integer] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::BitString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::OctetString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Null] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::ObjectIdentifier] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::ObjectDescriptor] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::External] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Real] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Enumerated] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::EmbeddedPdv] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Utf8String] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::RelativeOid] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Time] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Sequence] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::SequenceOf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Set] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::SetOf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::NumericString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::PrintableString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::T61String] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::VideotexString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::IA5String] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::UtcTime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::GeneralizedTime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::GraphicString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::VisibleString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::GeneralString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::UniversalString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::UnrestrictedString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::BmpString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Date] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::TimeOfDay] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::DateTime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Duration] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::ObjectIdentifierIri] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::RelativeOidIri] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Constructed] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Universal] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Application] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::ContextSpecific] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Private] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Tags::Flags] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerOctetString Org.BouncyCastle.Asn1.BerOctetString::Empty] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence Org.BouncyCastle.Asn1.BerSequence::Empty] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSet Org.BouncyCastle.Asn1.BerSet::Empty] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean Org.BouncyCastle.Asn1.DerBoolean::False] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean Org.BouncyCastle.Asn1.DerBoolean::True] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerInteger::AllowUnsafeProperty] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.DerInteger::Zero] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.DerInteger::One] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.DerInteger::Two] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.DerInteger::Three] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.DerInteger::Four] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.DerInteger::Five] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerNull Org.BouncyCastle.Asn1.DerNull::Instance] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerOctetString Org.BouncyCastle.Asn1.DerOctetString::Empty] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.DerSequence::Empty] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSet Org.BouncyCastle.Asn1.DerSet::Empty] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence Org.BouncyCastle.Asn1.DLSequence::Empty] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSet Org.BouncyCastle.Asn1.DLSet::Empty] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c::<>9__3_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c::<>9__3_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c::<>9__5_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.X9.X9ECParametersHolder/<>c::<>9__5_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECPoint/<>c Org.BouncyCastle.Asn1.X9.X9ECPoint/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECPoint/<>c Org.BouncyCastle.Asn1.X9.X9ECPoint/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.X9.X9ECPoint/<>c::<>9__10_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.X9.X9ECPoint/<>c::<>9__10_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ansi_X9_62] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::IdFieldType] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::PrimeField] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::CharacteristicTwoField] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::GNBasis] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::TPBasis] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::PPBasis] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::id_ecSigType] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::id_publicKeyType] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::IdECPublicKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ECDsaWithSha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::EllipticCurve] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::CTwoCurve] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb163v1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb163v2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb163v3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb176w1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb191v1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb191v2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb191v3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Onb191v4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Onb191v5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb208w1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb239v1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb239v2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb239v3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Onb239v4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Onb239v5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb272w1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb304w1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb359v1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Pnb368w1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::C2Tnb431r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::PrimeCurve] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime192v1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime192v2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime192v3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime239v1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime239v2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime239v3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Prime256v1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::IdDsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::IdDsaWithSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::X9x63Scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHSinglePassStdDHSha1KdfScheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHSinglePassCofactorDHSha1KdfScheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::MqvSinglePassSha1KdfScheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::ansi_x9_42] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHPublicNumber] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::X9x42Schemes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHStatic] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHEphem] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHOneFlow] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHHybrid1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHHybrid2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::DHHybridOneFlow] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Mqv2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers::Mqv1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.AccessDescription::IdADCAIssuers] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.AccessDescription::IdADOcsp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.CrlReason::Unspecified] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.CrlReason::KeyCompromise] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.CrlReason::CACompromise] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.CrlReason::AffiliationChanged] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.CrlReason::Superseded] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.CrlReason::CessationOfOperation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.CrlReason::CertificateHold] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.CrlReason::RemoveFromCrl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.CrlReason::PrivilegeWithdrawn] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.CrlReason::AACompromise] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.DisplayText::ContentTypeIA5String] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.DisplayText::ContentTypeBmpString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.DisplayText::ContentTypeUtf8String] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.DisplayText::ContentTypeVisibleString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.DisplayText::DisplayTextMaximumSize] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPoint/<>c Org.BouncyCastle.Asn1.X509.DistributionPoint/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPoint/<>c Org.BouncyCastle.Asn1.X509.DistributionPoint/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`3 Org.BouncyCastle.Asn1.X509.DistributionPoint/<>c::<>9__6_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`3 Org.BouncyCastle.Asn1.X509.DistributionPoint/<>c::<>9__6_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.DistributionPointName::FullName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.DistributionPointName::NameRelativeToCrlIssuer] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.GeneralName::OtherName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.GeneralName::Rfc822Name] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.GeneralName::DnsName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.GeneralName::X400Address] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.GeneralName::DirectoryName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.GeneralName::EdiPartyName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.GeneralName::UniformResourceIdentifier] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.GeneralName::IPAddress] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.GeneralName::RegisteredID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.IetfAttrSyntax::ValueOctets] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.IetfAttrSyntax::ValueOid] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.IetfAttrSyntax::ValueUtf8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint/<>c Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint/<>c Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`3 Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint/<>c::<>9__11_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`3 Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint/<>c::<>9__11_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::AnyExtendedKeyUsage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_serverAuth] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_clientAuth] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_codeSigning] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_emailProtection] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_ipsecEndSystem] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_ipsecTunnel] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_ipsecUser] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_timeStamping] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_OCSPSigning] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_dvcs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_sbgpCertAAServerAuth] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_scvp_responder] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_eapOverPPP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_eapOverLAN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_scvpServer] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_scvpClient] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_ipsecIKE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_capwapAC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_capwapWTP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_cmcCA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_cmcRA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_cmKGA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_smartcardlogon] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_macAddress] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_msSGC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::scSysNodeNumber] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_pkinit_authData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_pkinit_DHKeyData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_pkinit_rkeyData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::keyPurposeClientAuth] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::keyPurposeKdc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::id_kp_nsSGC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPServerAuth] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPClientAuth] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPCodeSigning] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPEmailProtection] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPIpsecEndSystem] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPIpsecTunnel] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPIpsecUser] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPTimeStamping] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPOcspSigning] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPSmartCardLogon] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID Org.BouncyCastle.Asn1.X509.KeyPurposeID::IdKPMacAddress] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.KeyUsage::DigitalSignature] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.KeyUsage::NonRepudiation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.KeyUsage::KeyEncipherment] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.KeyUsage::DataEncipherment] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.KeyUsage::KeyAgreement] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.KeyUsage::KeyCertSign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.KeyUsage::CrlSign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.KeyUsage::EncipherOnly] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.KeyUsage::DecipherOnly] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::PublicKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::PublicKeyCert] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.ObjectDigestInfo::OtherObjectDigest] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyQualifierID Org.BouncyCastle.Asn1.X509.PolicyQualifierID::IdQtCps] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyQualifierID Org.BouncyCastle.Asn1.X509.PolicyQualifierID::IdQtUnotice] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.ReasonFlags::Unused] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.ReasonFlags::KeyCompromise] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.ReasonFlags::CACompromise] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.ReasonFlags::AffiliationChanged] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.ReasonFlags::Superseded] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.ReasonFlags::CessationOfOperation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.ReasonFlags::CertificateHold] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.ReasonFlags::PrivilegeWithdrawn] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.ReasonFlags::AACompromise] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.Target/Choice::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.Target/Choice::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.Target/Choice::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Target/Choice Org.BouncyCastle.Asn1.X509.Target/Choice::Name] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Target/Choice Org.BouncyCastle.Asn1.X509.Target/Choice::Name] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Target/Choice Org.BouncyCastle.Asn1.X509.Target/Choice::Group] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Target/Choice Org.BouncyCastle.Asn1.X509.Target/Choice::Group] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerTaggedObject Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Attributes::RoleSyntax] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::SubjectDirectoryAttributes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::SubjectKeyIdentifier] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::KeyUsage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::PrivateKeyUsagePeriod] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::SubjectAlternativeName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::IssuerAlternativeName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::BasicConstraints] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::CrlNumber] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::ReasonCode] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::InstructionCode] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::InvalidityDate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::DeltaCrlIndicator] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::IssuingDistributionPoint] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::CertificateIssuer] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::NameConstraints] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::CrlDistributionPoints] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::CertificatePolicies] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::PolicyMappings] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::AuthorityKeyIdentifier] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::PolicyConstraints] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::ExtendedKeyUsage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::FreshestCrl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::InhibitAnyPolicy] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::AuthorityInfoAccess] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::BiometricInfo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::QCStatements] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::AuditIdentity] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::SubjectInfoAccess] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::LogoType] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::NoRevAvail] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::TargetInformation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::ExpiredCertsOnCrl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::SubjectAltPublicKeyInfo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::AltSignatureAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::AltSignatureValue] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Extensions::DRAFT_DeltaCertificateDescriptor] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::C] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::O] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::OU] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::T] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::CN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::Street] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::SerialNumber] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::L] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::ST] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::Surname] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::GivenName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::Initials] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::Generation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::UniqueIdentifier] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::Description] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::BusinessCategory] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::PostalCode] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::DnQualifier] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::Pseudonym] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::Role] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::DateOfBirth] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::PlaceOfBirth] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::Gender] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::CountryOfCitizenship] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::CountryOfResidence] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::NameAtBirth] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::PostalAddress] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::DmdName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::TelephoneNumber] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::OrganizationIdentifier] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::Name] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::EmailAddress] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::UnstructuredName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::UnstructuredAddress] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::E] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::DC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::UID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::JurisdictionC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::JurisdictionST] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::JurisdictionL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Asn1.X509.X509Name::DefaultSymbols] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Asn1.X509.X509Name::RFC2253Symbols] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Asn1.X509.X509Name::RFC1779Symbols] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Asn1.X509.X509Name::DefaultLookup] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::attributeType] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::CommonName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::CountryName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::LocalityName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::StateOrProvinceName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::Organization] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::OrganizationalUnitName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::id_at_telephoneNumber] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::id_at_name] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::id_at_organizationIdentifier] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::RipeMD160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::RipeMD160WithRsaEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdEARsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdPkix] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdPE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::pkix_algorithms] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::id_RSASSA_PSS_SHAKE128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::id_RSASSA_PSS_SHAKE256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::id_ecdsa_with_shake128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::id_ecdsa_with_shake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::id_pda] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdAD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdADOcsp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::IdADCAIssuers] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::OcspAccessMethod] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::CrlAccessMethod] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers::id_ce] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.SigI.SigIObjectIdentifiers::IdSigI] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.SigI.SigIObjectIdentifiers::IdSigIKP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.SigI.SigIObjectIdentifiers::IdSigICP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.SigI.SigIObjectIdentifiers::IdSigION] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.SigI.SigIObjectIdentifiers::IdSigIKPDirectoryService] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.SigI.SigIObjectIdentifiers::IdSigIONPersonalData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.SigI.SigIObjectIdentifiers::IdSigICPSigConform] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.Qualified.EtsiQCObjectIdentifiers::IdEtsiQcs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.Qualified.EtsiQCObjectIdentifiers::IdEtsiQcsQcCompliance] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.Qualified.EtsiQCObjectIdentifiers::IdEtsiQcsLimitValue] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.Qualified.EtsiQCObjectIdentifiers::IdEtsiQcsRetentionPeriod] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.Qualified.EtsiQCObjectIdentifiers::IdEtsiQcsQcSscd] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.Qualified.EtsiQCObjectIdentifiers::IdEtsiQcsQcCClegislation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.Qualified.Rfc3739QCObjectIdentifiers::IdQcs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.Qualified.Rfc3739QCObjectIdentifiers::IdQcsPkixQCSyntaxV1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.Qualified.Rfc3739QCObjectIdentifiers::IdQcsPkixQCSyntaxV2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::Picture] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData::HandwrittenSignature] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::UaOid] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu4145le] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu4145be] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7564digest_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7564digest_384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7564digest_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7564mac_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7564mac_384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7564mac_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624ecb_128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624ecb_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624ecb_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624ctr_128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624ctr_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624ctr_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624cfb_128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624cfb_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624cfb_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624cmac_128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624cmac_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624cmac_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624cbc_128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624cbc_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624cbc_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624ofb_128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624ofb_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624ofb_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624gmac_128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624gmac_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624gmac_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624ccm_128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624ccm_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624ccm_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624xts_128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624xts_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624xts_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624kw_128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624kw_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers::dstu7624kw_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.PartialHashtree/<>c Org.BouncyCastle.Asn1.Tsp.PartialHashtree/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.PartialHashtree/<>c Org.BouncyCastle.Asn1.Tsp.PartialHashtree/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Tsp.PartialHashtree/<>c::<>9__8_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Tsp.PartialHashtree/<>c::<>9__8_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::TeleTrusT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::algorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::TeleTrusTAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::encryptionAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::hashAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::signatureAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::signatureScheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RipeMD160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RipeMD128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RipeMD256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::rsaSignature] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::TeleTrusTRsaSignatureAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RsaSignatureWithRipeMD160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RsaSignatureWithRipeMD128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::RsaSignatureWithRipeMD256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::ECSign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::ECSignWithSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::ECSignWithRipeMD160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::ECSignWithMD2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::ECSignWithMD5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::ttt_ecg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::ecStdCurvesAndGeneration] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::EccBrainpool] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::EllipticCurve] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::VersionOne] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP160R1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP160T1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP192R1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP192T1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP224R1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP224T1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP256R1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP256T1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP320R1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP320T1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP384R1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP384T1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP512R1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers::BrainpoolP512T1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeAttributes::SmimeCapabilities] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeAttributes::EncrypKeyPref] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::PreferSignedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::CannotDecryptAny] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::SmimeCapabilitesVersions] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::Aes256Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::Aes192Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::Aes128Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::IdeaCbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::Cast5Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::DesCbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::DesEde3Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::RC2Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapability::PreferSignedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapability::CannotDecryptAny] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapability::SmimeCapabilitiesVersions] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapability::DesCbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapability::DesEde3Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Smime.SmimeCapability::RC2Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure/<>c Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure/<>c Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`3 Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure/<>c::<>9__7_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`3 Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure/<>c::<>9__7_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::EllipticCurve] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT163k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT163r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT239k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT113r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT113r2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP112r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP112r2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP160r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP160k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP256k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT163r2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT283k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT283r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT131r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT131r2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT193r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT193r2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT233k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT233r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP128r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP128r2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP160r2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP192k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP224k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP224r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP384r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP521r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT409k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT409r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT571k1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecT571r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP192r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::SecP256r1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::secg_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::dhSinglePass_stdDH_sha224kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::dhSinglePass_stdDH_sha256kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::dhSinglePass_stdDH_sha384kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::dhSinglePass_stdDH_sha512kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::dhSinglePass_cofactorDH_sha224kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::dhSinglePass_cofactorDH_sha256kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::dhSinglePass_cofactorDH_sha384kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::dhSinglePass_cofactorDH_sha512kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::mqvSinglePass_sha224kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::mqvSinglePass_sha256kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::mqvSinglePass_sha384kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::mqvSinglePass_sha512kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::mqvFull_sha224kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::mqvFull_sha256kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::mqvFull_sha384kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers::mqvFull_sha512kdf_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::rosstandart] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_3411_12_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_3411_12_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_hmac_gost_3411_12_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_hmac_gost_3411_12_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_3410_12_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_3410_12_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_signwithdigest_gost_3410_12_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_signwithdigest_gost_3410_12_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_agreement] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_agreement_gost_3410_12_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_agreement_gost_3410_12_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_3410_12_256_paramSet] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_3410_12_256_paramSetA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_3410_12_256_paramSetB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_3410_12_256_paramSetC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_3410_12_256_paramSetD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_3410_12_512_paramSet] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_3410_12_512_paramSetA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_3410_12_512_paramSetB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_3410_12_512_paramSetC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers::id_tc26_gost_28147_param_Z] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params::DefaultPrf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::pkcs_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::RsaEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD2WithRsaEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD4WithRsaEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD5WithRsaEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha1WithRsaEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SrsaOaepEncryptionSet] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdRsaesOaep] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdMgf1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdPSpecified] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdRsassaPss] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha256WithRsaEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha384WithRsaEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha512WithRsaEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha224WithRsaEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha512_224WithRSAEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Sha512_256WithRSAEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::pkcs_3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::DhKeyAgreement] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::pkcs_5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithMD2AndDesCbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithMD2AndRC2Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithMD5AndDesCbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithMD5AndRC2Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithSha1AndDesCbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithSha1AndRC2Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdPbkdf2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdPbeS2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdPbmac1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::EncryptionAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::DesEde3Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::RC2Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::rc4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::DigestAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::MD5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha512_224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdHmacWithSha512_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::pkcs_7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Data] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SignedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::EnvelopedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SignedAndEnvelopedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::DigestedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::EncryptedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::pkcs_9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtEmailAddress] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtUnstructuredName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtContentType] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtMessageDigest] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtSigningTime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtCounterSignature] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtChallengePassword] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtUnstructuredAddress] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtExtendedCertificateAttributes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtSigningDescription] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtExtensionRequest] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtSmimeCapabilities] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdSmime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtFriendlyName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtLocalKeyID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::CertTypes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::X509Certificate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SdsiCertificate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::CrlTypes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::X509Crl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::smime_alg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::id_alg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgEsdh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgCms3DesWrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgCmsRC2Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgZlibCompress] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgPwriKek] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgSsdh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::id_aa_cmsAlgorithmProtect] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdRsaKem] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgHssLmsHashsig] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgAeadChaCha20Poly1305] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgHkdfWithSha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgHkdfWithSha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAlgHkdfWithSha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PreferSignedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::CannotDecryptAny] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SmimeCapabilitiesVersions] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::id_ct] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTAuthData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTTstInfo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTCompressedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTAuthEnvelopedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCTTimestampedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCti] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::id_cti] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfOrigin] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfReceipt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfDelivery] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfSender] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfApproval] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdCtiEtsProofOfCreation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::id_aa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAOid] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs9AtBinarySigningTime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAReceiptRequest] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAContentHint] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAMsgSigDigest] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAContentReference] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEncrypKeyPref] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAASigningCertificate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAASigningCertificateV2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAContentIdentifier] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAASignatureTimeStampToken] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsSigPolicyID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsCommitmentType] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsSignerLocation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsSignerAttr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsOtherSigCert] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsContentTimestamp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsCertificateRefs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsRevocationRefs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsCertValues] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsRevocationValues] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsEscTimeStamp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsCertCrlTimestamp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAEtsArchiveTimestamp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAADecryptKeyID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAImplCryptoAlgs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAAsymmDecryptKeyID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAAImplCompressAlgs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdAACommunityIdentifiers] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdSpq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::id_spq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdSpqEtsUri] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::IdSpqEtsUNotice] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs12] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::BagTypes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::KeyBag] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs8ShroudedKeyBag] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::CertBag] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::CrlBag] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SecretBag] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::SafeContentsBag] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::Pkcs12PbeIds] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd128BitRC4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd40BitRC4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd3KeyTripleDesCbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd2KeyTripleDesCbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbeWithShaAnd128BitRC2Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers::PbewithShaAnd40BitRC2Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::DefaultHashAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::DefaultMaskGenAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::DefaultMaskGenFunction] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters::DefaultPSourceAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::DefaultHashAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::DefaultMaskGenAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::DefaultMaskGenFunction] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::DefaultSaltLength] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters::DefaultTrailerField] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::MD4WithRsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::MD5WithRsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::MD4WithRsaEncryption] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesEcb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesCbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesOfb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesCfb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DesEde] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::IdSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::DsaWithSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::Sha1WithRsa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers::ElGamalAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ocsp.OcspObjectIdentifiers::PkixOcsp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ocsp.OcspObjectIdentifiers::PkixOcspBasic] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ocsp.OcspObjectIdentifiers::PkixOcspNonce] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ocsp.OcspObjectIdentifiers::PkixOcspCrl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ocsp.OcspObjectIdentifiers::PkixOcspResponse] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ocsp.OcspObjectIdentifiers::PkixOcspNocheck] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ocsp.OcspObjectIdentifiers::PkixOcspArchiveCutoff] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ocsp.OcspObjectIdentifiers::PkixOcspServiceLocator] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ocsp.OcspObjectIdentifiers::PkixPcspPrefSigSlgs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ocsp.OcspObjectIdentifiers::PkixPcspExtendedRevoke] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus::Successful] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus::MalformedRequest] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus::InternalError] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus::TryLater] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus::SignatureRequired] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus::Unauthorized] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.RevokedInfo/<>c Org.BouncyCastle.Asn1.Ocsp.RevokedInfo/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.RevokedInfo/<>c Org.BouncyCastle.Asn1.Ocsp.RevokedInfo/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`3 Org.BouncyCastle.Asn1.Ocsp.RevokedInfo/<>c::<>9__7_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`3 Org.BouncyCastle.Asn1.Ocsp.RevokedInfo/<>c::<>9__7_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::IdCamellia128Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::IdCamellia192Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::IdCamellia256Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::IdCamellia128Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::IdCamellia192Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers::IdCamellia256Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::nsri] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_algorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_sea] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_pad] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_pad_null] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_pad_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria128_ecb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria128_cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria128_cfb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria128_ofb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria128_ctr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria192_ecb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria192_cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria192_cfb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria192_ofb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria192_ctr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria256_ecb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria256_cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria256_cfb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria256_ofb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria256_ctr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria128_cmac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria192_cmac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria256_cmac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria128_ocb2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria192_ocb2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria256_ocb2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria128_gcm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria192_gcm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria256_gcm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria128_ccm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria192_ccm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria256_ccm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria128_kw] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria192_kw] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria256_kw] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria128_kwp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria192_kwp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers::id_aria256_kwp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::DefaultOutputLength] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params::DefaultCustomizationString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::DefaultOutputLength] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params::DefaultCustomizationString] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::NistAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::HashAlgs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha512_224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha512_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha3_224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha3_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha3_384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdSha3_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdShake128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdShake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdHMacWithSha3_224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdHMacWithSha3_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdHMacWithSha3_384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdHMacWithSha3_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdShake128Len] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdShake256Len] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdKmacWithShake128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdKmacWithShake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdKmac128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdKmac256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::Aes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Ecb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Ofb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Cfb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Gcm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128Ccm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128WrapPad] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes128GMac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Ecb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Ofb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Cfb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Gcm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192Ccm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192WrapPad] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes192GMac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Ecb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Ofb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Cfb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Gcm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256Ccm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256WrapPad] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdAes256GMac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::SigAlgs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdDsaWithSha2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::DsaWithSha224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::DsaWithSha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::DsaWithSha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::DsaWithSha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdDsaWithSha3_224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdDsaWithSha3_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdDsaWithSha3_384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdDsaWithSha3_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdEcdsaWithSha3_224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdEcdsaWithSha3_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdEcdsaWithSha3_384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdEcdsaWithSha3_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdRsassaPkcs1V15WithSha3_224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdRsassaPkcs1V15WithSha3_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdRsassaPkcs1V15WithSha3_384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::IdRsassaPkcs1V15WithSha3_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_ml_dsa_44] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_ml_dsa_65] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_ml_dsa_87] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_ml_dsa_44_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_ml_dsa_65_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_ml_dsa_87_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_slh_dsa_sha2_128s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_slh_dsa_sha2_128f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_slh_dsa_sha2_192s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_slh_dsa_sha2_192f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_slh_dsa_sha2_256s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_slh_dsa_sha2_256f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_slh_dsa_shake_128s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_slh_dsa_shake_128f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_slh_dsa_shake_192s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_slh_dsa_shake_192f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_slh_dsa_shake_256s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_slh_dsa_shake_256f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_slh_dsa_sha2_128s_with_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_slh_dsa_sha2_128f_with_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_slh_dsa_sha2_192s_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_slh_dsa_sha2_192f_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_slh_dsa_sha2_256s_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_slh_dsa_sha2_256f_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_slh_dsa_shake_128s_with_shake128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_slh_dsa_shake_128f_with_shake128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_slh_dsa_shake_192s_with_shake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_slh_dsa_shake_192f_with_shake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_slh_dsa_shake_256s_with_shake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_hash_slh_dsa_shake_256f_with_shake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::kems] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_alg_ml_kem_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_alg_ml_kem_768] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers::id_alg_ml_kem_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::Netscape] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::NetscapeCertType] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::NetscapeBaseUrl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::NetscapeRevocationUrl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::NetscapeCARevocationUrl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::NetscapeRenewalUrl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::NetscapeCAPolicyUrl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::NetscapeSslServerName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::NetscapeCertComment] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::Verisign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::VerisignCzagExtension] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::VerisignPrivate_6_9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::VerisignOnSiteJurisdictionHash] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::VerisignBitString_6_13] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::VerisignDnbDunsNumber] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::VerisignIssStrongCrypto] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::Novell] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::NovellSecurityAttribs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::Entrust] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::EntrustVersionExtension] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::cast5CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::HMAC_SHA1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::as_sys_sec_alg_ideaCBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::cryptlib] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::cryptlib_algorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::cryptlib_algorithm_blowfish_ECB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::cryptlib_algorithm_blowfish_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::cryptlib_algorithm_blowfish_CFB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::cryptlib_algorithm_blowfish_OFB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::blake2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::id_blake2b160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::id_blake2b256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::id_blake2b384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::id_blake2b512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::id_blake2s128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::id_blake2s160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::id_blake2s224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::id_blake2s256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::blake3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::blake3_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::id_scrypt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::id_alg_composite] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::id_composite_key] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers::id_oracle_pkcs12_trusted_key_usage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Misc.NetscapeCertType::SslClient] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Misc.NetscapeCertType::SslServer] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Misc.NetscapeCertType::Smime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Misc.NetscapeCertType::ObjectSigning] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Misc.NetscapeCertType::Reserved] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Misc.NetscapeCertType::SslCA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Misc.NetscapeCertType::SmimeCA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Misc.NetscapeCertType::ObjectSigningCA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Microsoft.MicrosoftObjectIdentifiers::Microsoft] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Microsoft.MicrosoftObjectIdentifiers::MicrosoftCertTemplateV1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Microsoft.MicrosoftObjectIdentifiers::MicrosoftCAVersion] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Microsoft.MicrosoftObjectIdentifiers::MicrosoftPrevCACertHash] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Microsoft.MicrosoftObjectIdentifiers::MicrosoftCrlNextPublish] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Microsoft.MicrosoftObjectIdentifiers::MicrosoftCertTemplateV2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Microsoft.MicrosoftObjectIdentifiers::MicrosoftAppPolicies] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Kisa.KisaObjectIdentifiers::IdSeedCbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Kisa.KisaObjectIdentifiers::IdNpkiAppCmsSeedWrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMtt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttCP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttCPAccredited] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttAT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATDateOfCertGen] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATProcuration] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATAdmission] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATMonetaryLimit] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATDeclarationOfMajority] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATIccsn] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATPKReference] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATRestriction] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATRetrieveIfAllowed] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATRequestedCertificate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATNamingAuthorities] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATCertInDirSince] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATCertHash] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATNameAtBirth] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATAdditionalInformation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers::IdIsisMttATLiabilityLimitationFlag] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice::NotYoungerThan] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice::NotYoungerThan] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice::FullAgeAtCountry] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice::FullAgeAtCountry] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice::DateOfBirth] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority/Choice::DateOfBirth] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority::IdIsisMttATNamingAuthoritiesRechtWirtschaftSteuern] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Rechtsanwltin] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Rechtsanwalt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Rechtsbeistand] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Steuerberaterin] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Steuerberater] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Steuerbevollmchtigte] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Steuerbevollmchtigter] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Notarin] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Notar] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Notarvertreterin] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Notarvertreter] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Notariatsverwalterin] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Notariatsverwalter] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Wirtschaftsprferin] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Wirtschaftsprfer] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::VereidigteBuchprferin] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::VereidigterBuchprfer] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Patentanwltin] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo::Patentanwalt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice::Certificate] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice::Certificate] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice::PublicKeyCertificate] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice::PublicKeyCertificate] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice::AttributeCertificate] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate/Choice::AttributeCertificate] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Isara.IsaraObjectIdentifiers::id_alg_xmss] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Isara.IsaraObjectIdentifiers::id_alg_xmssmt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Icao.IcaoObjectIdentifiers::IdIcao] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Icao.IcaoObjectIdentifiers::IdIcaoMrtd] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Icao.IcaoObjectIdentifiers::IdIcaoMrtdSecurity] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Icao.IcaoObjectIdentifiers::IdIcaoLdsSecurityObject] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Icao.IcaoObjectIdentifiers::IdIcaoCscaMasterList] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Icao.IcaoObjectIdentifiers::IdIcaoCscaMasterListSigningKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Icao.IcaoObjectIdentifiers::IdIcaoDocumentTypeList] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Icao.IcaoObjectIdentifiers::IdIcaoAAProtocolObject] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Icao.IcaoObjectIdentifiers::IdIcaoExtensions] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Icao.IcaoObjectIdentifiers::IdIcaoExtensionsNamechangekeyrollover] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::UBDataGroups] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::internet] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::directory] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::mgmt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::experimental] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::cls_private] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::security] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::SNMPv2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::mail] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::security_mechanisms] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::security_nametypes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::pkix] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::ipsec] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::IsakmpOakley] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::HmacMD5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::HmacSha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::HmacTiger] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers::HmacRipeMD160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Gnu] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::GnuPG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Notation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::PkaAddress] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::GnuRadar] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::DigestAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Tiger192] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::EncryptionAlgorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Serpent] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Serpent128Ecb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Serpent128Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Serpent128Ofb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Serpent128Cfb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Serpent192Ecb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Serpent192Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Serpent192Ofb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Serpent192Cfb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Serpent256Ecb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Serpent256Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Serpent256Ofb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Serpent256Cfb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Crc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Crc32] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::EllipticCurve] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers::Ed25519] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm_scheme] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm6_ecb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm6_cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm6_ofb128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm6_cfb128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm1_ecb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm1_cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm1_ofb128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm1_cfb128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm1_cfb1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm1_cfb8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::ssf33_ecb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::ssf33_cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::ssf33_ofb128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::ssf33_cfb128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::ssf33_cfb1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::ssf33_cfb8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sms4_ecb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sms4_cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sms4_ofb128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sms4_cfb128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sms4_cfb1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sms4_cfb8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sms4_ctr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sms4_gcm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sms4_ccm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sms4_xts] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sms4_wrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sms4_wrap_pad] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sms4_ocb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2p256v1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2sign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2exchange] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::wapip192v1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::wapi192v1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::wapi192v1_parameters] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt_recommendedParameters] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt_specifiedParameters] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt_with_sm3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt_with_sha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt_with_sha224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt_with_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt_with_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt_with_rmd160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt_with_whirlpool] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt_with_blake2b512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt_with_blake2s256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2encrypt_with_md5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::id_sm9PublicKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm9sign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm9keyagreement] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm9encrypt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::hmac_sm3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2sign_with_sm3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2sign_with_sha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2sign_with_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2sign_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2sign_with_sha224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2sign_with_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2sign_with_rmd160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2sign_with_whirlpool] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2sign_with_blake2b512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers::sm2sign_with_blake2s256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.CommitmentTypeIdentifier::ProofOfOrigin] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.CommitmentTypeIdentifier::ProofOfReceipt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.CommitmentTypeIdentifier::ProofOfDelivery] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.CommitmentTypeIdentifier::ProofOfSender] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.CommitmentTypeIdentifier::ProofOfApproval] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.CommitmentTypeIdentifier::ProofOfCreation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::SigPolicyId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::CommitmentType] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::SignerLocation] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::SignerAttr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::OtherSigCert] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::ContentTimestamp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::CertificateRefs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::RevocationRefs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::CertValues] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::RevocationValues] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::EscTimeStamp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::CertCrlTimestamp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::ArchiveTimestamp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Esf.EsfAttributes::ArchiveTimestampV2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c::<>9__6_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c::<>9__6_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c::<>9__14_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Esf.SignerLocation/<>c::<>9__14_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.EdEC.EdECObjectIdentifiers::id_edwards_curve_algs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.EdEC.EdECObjectIdentifiers::id_X25519] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.EdEC.EdECObjectIdentifiers::id_X448] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.EdEC.EdECObjectIdentifiers::id_Ed25519] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.EdEC.EdECObjectIdentifiers::id_Ed448] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::bsi_de] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_PK] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_PK_DH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_PK_ECDH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_CA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_CA_DH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_CA_DH_3DES_CBC_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_CA_ECDH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_CA_ECDH_3DES_CBC_CBC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_TA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_TA_RSA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_TA_RSA_v1_5_SHA_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_TA_RSA_v1_5_SHA_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_TA_RSA_PSS_SHA_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_TA_RSA_PSS_SHA_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_TA_ECDSA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_TA_ECDSA_SHA_1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_TA_ECDSA_SHA_224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_TA_ECDSA_SHA_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_TA_ECDSA_SHA_384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers::id_TA_ECDSA_SHA_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GOST_id] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411Hmac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::id_Gost28147_89_None_KeyWrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::id_Gost28147_89_CryptoPro_KeyWrap] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR28147Gcfb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR28147Cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::ID_Gost28147_89_CryptoPro_TestParamSet] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::ID_Gost28147_89_CryptoPro_A_ParamSet] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::ID_Gost28147_89_CryptoPro_B_ParamSet] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::ID_Gost28147_89_CryptoPro_C_ParamSet] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::ID_Gost28147_89_CryptoPro_D_ParamSet] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411x94WithGostR3410x94] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411x94WithGostR3410x2001] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3411x94CryptoProParamSet] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProXchA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProXchB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x94CryptoProXchC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProXchA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProXchB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostElSgDH3410Default] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostElSgDH3410x1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001CryptoProESDH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers::GostR3410x2001DH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::passwordBasedMac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_pkix] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_pkip] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_regCtrl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_regCtrl_regToken] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_regCtrl_authenticator] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_regCtrl_pkiPublicationInfo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_regCtrl_pkiArchiveOptions] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_regCtrl_oldCertID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_regCtrl_protocolEncrKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_regInfo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_regInfo_utf8Pairs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_regInfo_certReq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_ct_encKeyWithID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_dh_sig_hmac_sha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers::id_alg_dh_pop] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::encryptedPrivKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::keyGenParameters] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::archiveRemGenPrivKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::DontPublish] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo::PleasePublish] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::thisMessage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::subsequentMessage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::dhMAC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::agreeMAC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::encryptedKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::TYPE_RA_VERIFIED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::TYPE_SIGNING_KEY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::TYPE_KEY_ENCIPHERMENT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::TYPE_KEY_AGREEMENT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.SubsequentMessage Org.BouncyCastle.Asn1.Crmf.SubsequentMessage::encrCert] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.SubsequentMessage Org.BouncyCastle.Asn1.Crmf.SubsequentMessage::challengeResp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Collections.Generic.Dictionary`2 Org.BouncyCastle.Asn1.Cms.AttributeTable/d__25::<>3__attributes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.AuthEnvelopedDataParser::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection::Signature] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection::Mac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsAttributes::ContentType] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsAttributes::MessageDigest] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsAttributes::SigningTime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsAttributes::CounterSignature] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsAttributes::ContentHint] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsAttributes::CmsAlgorithmProtect] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::Data] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::SignedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::EnvelopedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::SignedAndEnvelopedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::DigestedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::EncryptedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::AuthenticatedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::CompressedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::AuthEnvelopedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::TimestampedData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::ZlibCompress] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::id_ri] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::id_ri_ocsp_response] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::id_ri_scvp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::id_alg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::id_RSASSA_PSS_SHAKE128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::id_RSASSA_PSS_SHAKE256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::id_ecdsa_with_shake128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::id_ecdsa_with_shake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::id_ori] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::id_ori_kem] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers::id_alg_cek_hkdf_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.TimeStampedDataParser::version] Because of compatibility component: .Net Framework - Compatibility : Is a special name. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::passwordBasedMac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::kemBasedMac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::dhBasedMac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::id_it] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_caProtEncCert] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_signKeyPairTypes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_encKeyPairTypes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_preferredSymAlg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_caKeyUpdateInfo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_currentCRL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_unsupportedOIDs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_keyPairParamReq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_keyPairParamRep] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_revPassphrase] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_implicitConfirm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_confirmWaitTime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_origPKIMessage] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::it_suppLangTags] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::id_it_caCerts] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::id_it_rootCaKeyUpdate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::id_it_certReqTemplate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::id_it_rootCaCert] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::id_it_certProfile] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::id_it_crlStatusList] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::id_it_crls] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::id_pkip] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::id_regCtrl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::id_regInfo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::regCtrl_regToken] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::regCtrl_authenticator] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::regCtrl_pkiPublicationInfo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::regCtrl_pkiArchiveOptions] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::regCtrl_oldCertID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::regCtrl_protocolEncrKey] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::regCtrl_altCertTemplate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::id_regCtrl_algId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::id_regCtrl_rsaKeyLen] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::regInfo_utf8Pairs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::regInfo_certReq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers::ct_encKeyWithID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_INIT_REQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_INIT_REP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_CERT_REQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_CERT_REP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_P10_CERT_REQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_POPO_CHALL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_POPO_REP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_KEY_UPDATE_REQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_KEY_UPDATE_REP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_KEY_RECOVERY_REQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_KEY_RECOVERY_REP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_REVOCATION_REQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_REVOCATION_REP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_CROSS_CERT_REQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_CROSS_CERT_REP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_CA_KEY_UPDATE_ANN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_CERT_ANN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_REVOCATION_ANN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_CRL_ANN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_CONFIRM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_NESTED] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_GEN_MSG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_GEN_REP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_ERROR] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_CERT_CONFIRM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_POLL_REQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiBody::TYPE_POLL_REP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::BadAlg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::BadMessageCheck] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::BadRequest] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::BadTime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::BadCertId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::BadDataFormat] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::WrongAuthority] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::IncorrectData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::MissingTimeStamp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::BadPop] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::CertRevoked] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::CertConfirmed] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::WrongIntegrity] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::BadRecipientNonce] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::TimeNotAvailable] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::UnacceptedPolicy] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::UnacceptedExtension] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::AddInfoNotAvailable] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::BadSenderNonce] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::BadCertTemplate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::SignerNotTrusted] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::TransactionIdInUse] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::UnsupportedVersion] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::NotAuthorized] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::SystemUnavail] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::SystemFailure] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo::DuplicateCertReq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFreeText/<>c Org.BouncyCastle.Asn1.Cmp.PkiFreeText/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFreeText/<>c Org.BouncyCastle.Asn1.Cmp.PkiFreeText/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Cmp.PkiFreeText/<>c::<>9__9_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Cmp.PkiFreeText/<>c::<>9__9_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName Org.BouncyCastle.Asn1.Cmp.PkiHeader::NULL_NAME] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiHeader::CMP_1999] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiHeader::CMP_2000] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiStatus::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiStatus::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cmp.PkiStatus::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::Granted] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::Granted] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::GrantedWithMods] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::GrantedWithMods] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::Rejection] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::Rejection] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::Waiting] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::Waiting] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::RevocationWarning] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::RevocationWarning] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::RevocationNotification] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::RevocationNotification] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::KeyUpdateWarning] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus Org.BouncyCastle.Asn1.Cmp.PkiStatus::KeyUpdateWarning] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::granted] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::grantedWithMods] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::rejection] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::waiting] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::revocationWarning] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::revocationNotification] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable::keyUpdateWaiting] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::<>9__6_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::<>9__6_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::<>9__8_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::<>9__8_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::<>9__9_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::<>9__9_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::<>9__10_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] System.Func`2 Org.BouncyCastle.Asn1.Cmp.PollReqContent/<>c::<>9__10_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::bsi_de] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::id_ecc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecdsa_plain_signatures] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecdsa_plain_SHA1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecdsa_plain_SHA224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecdsa_plain_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecdsa_plain_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecdsa_plain_SHA512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecdsa_plain_RIPEMD160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecdsa_plain_SHA3_224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecdsa_plain_SHA3_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecdsa_plain_SHA3_384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecdsa_plain_SHA3_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::algorithm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecka_eg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecka_eg_X963kdf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecka_eg_X963kdf_SHA1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecka_eg_X963kdf_SHA224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecka_eg_X963kdf_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecka_eg_X963kdf_SHA384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecka_eg_X963kdf_SHA512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecka_eg_X963kdf_RIPEMD160] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecka_eg_SessionKDF] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecka_eg_SessionKDF_3DES] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecka_eg_SessionKDF_AES128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecka_eg_SessionKDF_AES192] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers::ecka_eg_SessionKDF_AES256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha384] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha224] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha1_pkcs5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha1_pkcs12] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha256_pkcs5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha256_pkcs12] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha1_pkcs12_aes128_cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha1_pkcs12_aes192_cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha1_pkcs12_aes256_cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha256_pkcs12_aes128_cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha256_pkcs12_aes192_cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_pbe_sha256_pkcs12_aes256_cbc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_sig] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincs256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincs256_with_BLAKE512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincs256_with_SHA512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincs256_with_SHA3_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_SHA256ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_SHA512ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_SHAKE128ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_SHAKE256ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_SHA512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_SHAKE128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_SHAKE256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_SHA256ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_SHA512ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_SHAKE128ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_SHAKE256ph] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_SHA512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_SHAKE128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_SHAKE256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_with_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_with_SHA512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_with_SHAKE128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_with_SHAKE256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_with_SHA256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_with_SHA512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_with_SHAKE128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::xmss_mt_with_SHAKE256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::qTESLA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::qTESLA_Rnd1_I] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::qTESLA_Rnd1_III_size] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::qTESLA_Rnd1_III_speed] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::qTESLA_Rnd1_p_I] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::qTESLA_Rnd1_p_III] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::qTESLA_p_I] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::qTESLA_p_III] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_128s_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_128f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_128s_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_128f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_haraka_128s_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_haraka_128f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_192s_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_192f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_192s_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_192f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_haraka_192s_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_haraka_192f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_256s_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_256f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_256s_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_256f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_haraka_256s_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_haraka_256f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_128s_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_128f_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_128s_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_128f_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_haraka_128s_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_haraka_128f_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_192s_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_192f_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_192s_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_192f_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_haraka_192s_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_haraka_192f_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_256s_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_256f_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_256s_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_256f_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_haraka_256s_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_haraka_256f_r3_simple] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_interop] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_128f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_128s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_192f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_192s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_256f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha2_256s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_128f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_128s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_192f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_192s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_256f] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_256s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_shake_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha_256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sphincsPlus_sha_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnic] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnicl1fs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnicl1ur] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnicl3fs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnicl3ur] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnicl5fs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnicl5ur] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnic3l1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnic3l3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnic3l5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnicl1full] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnicl3full] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnicl5full] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnic_signature] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnic_with_sha512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnic_with_shake256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::picnic_with_sha3_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::falcon] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::falcon_512] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::falcon_1024] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::dilithium] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::dilithium2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::dilithium3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::dilithium5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::dilithium2_aes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::dilithium3_aes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::dilithium5_aes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::rainbow] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::rainbow_III_classic] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::rainbow_III_circumzenithal] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::rainbow_III_compressed] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::rainbow_V_classic] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::rainbow_V_circumzenithal] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::rainbow_V_compressed] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_exch] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::newHope] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_ext] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::linkedCertificate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::external_value] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bc_kem] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::pqc_kem_mceliece] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::mceliece348864_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::mceliece348864f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::mceliece460896_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::mceliece460896f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::mceliece6688128_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::mceliece6688128f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::mceliece6960119_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::mceliece6960119f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::mceliece8192128_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::mceliece8192128f_r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::pqc_kem_frodo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::frodokem640aes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::frodokem640shake] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::frodokem976aes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::frodokem976shake] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::frodokem1344aes] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::frodokem1344shake] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::pqc_kem_saber] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::lightsaberkem128r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::saberkem128r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::firesaberkem128r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::lightsaberkem192r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::saberkem192r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::firesaberkem192r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::lightsaberkem256r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::saberkem256r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::firesaberkem256r3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ulightsaberkemr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::usaberkemr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ufiresaberkemr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::lightsaberkem90sr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::saberkem90sr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::firesaberkem90sr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ulightsaberkem90sr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::usaberkem90sr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ufiresaberkem90sr3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::pqc_kem_ntru] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ntruhps2048509] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ntruhps2048677] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ntruhps4096821] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ntruhrss701] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ntruhps40961229] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ntruhrss1373] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::pqc_kem_ntruprime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::pqc_kem_ntrulprime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ntrulpr653] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ntrulpr761] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ntrulpr857] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ntrulpr953] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ntrulpr1013] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::ntrulpr1277] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::pqc_kem_sntruprime] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sntrup653] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sntrup761] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sntrup857] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sntrup953] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sntrup1013] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::sntrup1277] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::pqc_kem_bike] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bike128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bike192] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::bike256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::pqc_kem_hqc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::hqc128] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::hqc192] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers::hqc256] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.Anssi.AnssiObjectIdentifiers::FRP256v1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find Field References in Modules... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find Field References in Instructions... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Skip Fields... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 Loom/iHkVIcpt::MdL__9dW] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 Loom/iHkVIcpt::MdL__9dW] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object Loom/iHkVIcpt::UIIEOCpL] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object Loom/iHkVIcpt::UIIEOCpL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single Loom/16u4fQjx::4jbPCAMP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single Loom/16u4fQjx::4jbPCAMP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 Loom/16u4fQjx::2ArrGWrK] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 Loom/16u4fQjx::2ArrGWrK] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object Loom/16u4fQjx::ym9d72AZ] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object Loom/16u4fQjx::ym9d72AZ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] Loom/ebQxZhqF Loom/ebQxZhqF::9w5uNpHp] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] Loom/ebQxZhqF Loom/ebQxZhqF::9w5uNpHp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 Loom/ebQxZhqF::Sb_qiPAD] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 Loom/ebQxZhqF::Sb_qiPAD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 Loom::maxThreads] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 Loom::maxThreads] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] pXJcQ90q/OQvGXH2e::RKW5LFc_] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] pXJcQ90q/OQvGXH2e::RKW5LFc_] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] pXJcQ90q/OQvGXH2e::X9kZTJER] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] pXJcQ90q/OQvGXH2e::X9kZTJER] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 pXJcQ90q/OQvGXH2e::dkqs1yjG] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 pXJcQ90q/OQvGXH2e::dkqs1yjG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 pXJcQ90q/OQvGXH2e::iUBaLD7b] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 pXJcQ90q/OQvGXH2e::iUBaLD7b] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Boolean pXJcQ90q/OQvGXH2e::VFp2Q2uu] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Boolean pXJcQ90q/OQvGXH2e::VFp2Q2uu] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer/TimerManager/<>c UnityTimer.Timer/TimerManager/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer/TimerManager/<>c UnityTimer.Timer/TimerManager/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 UnityTimer.Timer/TimerManager/<>c::<>9__7_0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 UnityTimer.Timer/TimerManager/<>c::<>9__7_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.E6E02u_K/njyPR3dq::2TtVSOjB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.E6E02u_K ZrZYFo6bYXYM71YyLSDK.E6E02u_K/njyPR3dq::EAYYZmMk] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.E6E02u_K::SubBinjI] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.E6E02u_K::TRdlafMB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.E6E02u_K::nJ8Srbtq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.E6E02u_K::OOLJtglk] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.E6E02u_K::OxAX4P3z] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.E6E02u_K::QCr5r2ca] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.8SZrsi8s/6Q18rR3q::9jTwmOgk] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.8SZrsi8s ZrZYFo6bYXYM71YyLSDK.8SZrsi8s/6Q18rR3q::VANuW9ZM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::d9E42lir] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::TQTF4Foo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::mqGiSHVv] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::PkbAfhfP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::d05rgHib] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.8SZrsi8s::Xm0RtjpJ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::yZUPSgKq] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::yZUPSgKq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::M6HuMrj3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::M6HuMrj3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::FvL_lwGU] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::FvL_lwGU] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::TKpUtLaS] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/T9vr3fiM::TKpUtLaS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.E6E02u_K ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::bgM7ipnC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.upOI0mf9 ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/jsXLtakl::dZxm3UER] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.E6E02u_K ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim::7Eyt1TOV] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.upOI0mf9 ZrZYFo6bYXYM71YyLSDK.5LuHJ8mq/Mn0xPvim::gSO9N_4L] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.upOI0mf9/qz2l1RNN::pJie4K_y] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.upOI0mf9 ZrZYFo6bYXYM71YyLSDK.upOI0mf9/qz2l1RNN::FiKrOFqG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.upOI0mf9::HdNehVMu] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.upOI0mf9::s61TO7eV] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.upOI0mf9::UhomiEfx] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.upOI0mf9::hZ1LbCws] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.upOI0mf9::vr7Nj9B0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.upOI0mf9::Gk3eIHOX] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HvtfMocC::WbyXJ_6L] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HvtfMocC::WbyXJ_6L] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HvtfMocC::0OAoKyYH] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HvtfMocC::0OAoKyYH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HvtfMocC::UuHYV9Yb] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HvtfMocC::UuHYV9Yb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.DRzio_A9::AWPkuayL] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.DRzio_A9::AWPkuayL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/fI6piYVV::ixOzL7XI] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] qqd4hEXR ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/VV6wDWpl::PwQIIIRk] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/GUGsZ77k::yn2UAMqp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/O7UoSjG0::ZX9aKsbV] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1<4fsxCIxp> ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/Qm8aQ9BR::RcUSl_Z8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/RlUnbSg2::SmK0xhDi] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/RlUnbSg2::OxdbRH8L] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.IEnumerable`1<8WpUf774> ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/vL_jNMIC::cVtc1km7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.IEqualityComparer`1<8WpUf774> ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/vL_jNMIC::tmEXIjRH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.IEnumerable`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/J5H75OrP::6hRpZn3p] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`3 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/J5H75OrP::7HhgLZsv] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/J5H75OrP::wHDfsQJD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/gNy04JGT::hw7dFpl6] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/J5H75OrP ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/gNy04JGT::Bcth3RgN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] dF3S44z8 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/034fwuHi::oiQ_m_FH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/J5H75OrP ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/034fwuHi::ZmwTtY6F] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] mHsRR1Ei ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/dtDvXnWO::s2Dn2E0D] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/gNy04JGT ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/dtDvXnWO::7X9T0Clf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.IEnumerable`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/ad7V7I3p::_s3jAEFd] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] G3MqyH_l ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/37gMQk2Z::8o7WB3vY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/sSoj3FIT::PDLxVHnw] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/KGU21Dg_::6TE7tYc1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/b7Bk9fif::V5uBbmBj] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] i0CqBtfY ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/b7Bk9fif::McjxNGAb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/4DFBKF7j::F9nu_byD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] tSff0mR5 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/4DFBKF7j::4ikj7GMf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/DSr_oTPd::rVHhJb0r] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.GsNYLsCq/DSr_oTPd::xjdbaEEo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] SbEt0HwW ZrZYFo6bYXYM71YyLSDK.nucMYX4B/poBRGwZN::M3RkexX8] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] SbEt0HwW ZrZYFo6bYXYM71YyLSDK.nucMYX4B/poBRGwZN::M3RkexX8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.nucMYX4B/poBRGwZN::nTAGkuf3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.nucMYX4B/poBRGwZN::nTAGkuf3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.nucMYX4B/POgSuorQ::OkHARotY] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.nucMYX4B/POgSuorQ::OkHARotY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o::a3hjOlAo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o::3T0C8gdh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] w_jDc7JC ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o::pfdCWfWc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.nucMYX4B/y_bNM92o::76fvd3bF] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::nInUGw_0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::TuiXoX5n] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.nucMYX4B/pAR3dCPi::XmeAJNLb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B ZrZYFo6bYXYM71YyLSDK.nucMYX4B/otRvbtNw::7sHcE5Zp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.nucMYX4B/otRvbtNw::gOiSEKpc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.nucMYX4B/otRvbtNw::NUYJdAC6] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B ZrZYFo6bYXYM71YyLSDK.nucMYX4B/k7KxNmKK::P9ZRqBSo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.nucMYX4B/k7KxNmKK::Np4egZsv] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0::7J5AFQn7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1> ZrZYFo6bYXYM71YyLSDK.nucMYX4B/7XXovjq0::VFnbS5FY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nucMYX4B ZrZYFo6bYXYM71YyLSDK.nucMYX4B/fwPNh8_d::Jm2vhQn4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.nucMYX4B/fwPNh8_d::_JYxqpC2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1 ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::s6nm6Cfc] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1 ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::s6nm6Cfc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1> ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::fUVyblGS] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1> ZrZYFo6bYXYM71YyLSDK.CRmjcMm3/7EN3dHk1::fUVyblGS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::dPmxXv4z] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::dPmxXv4z] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::iMeLvSyw] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.RfaKAieg/W0YElXGs::iMeLvSyw] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF/6W0t37yC::umemPtRK] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF/6W0t37yC::7dXhk0Wl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF/6W0t37yC::e2HpgEP_] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF/6W0t37yC::SxVWVXoT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF/hQXj_CLW::sRNenKQW] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF/hQXj_CLW::38ehidVR] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF/hQXj_CLW::Is1CSCId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF/mjdxxCmc::f1NRqh0i] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.4HWlxixF/mjdxxCmc::OKpjf5Fs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61 ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::q7aNGA9E] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61 ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::q7aNGA9E] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::LdxVaLWH] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::LdxVaLWH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::7PnQKlt4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::7PnQKlt4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::x8LjYvYk] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/7uL04K61::x8LjYvYk] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/5TFmcxUH::XfpV9JG1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/5TFmcxUH::IXrJBtad] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.wvCZSuDC/5TFmcxUH::tFTTH_qm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.lACBvq4L ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::UserData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.lACBvq4L ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::UserData] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.lACBvq4L ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::UserData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.jmti0Apa ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::EvtData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.jmti0Apa ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::EvtData] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.jmti0Apa ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::EvtData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::TimeStamp] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::TimeStamp] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::TimeStamp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::Sign] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::Sign] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.r4Z_GJzZ::Sign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.jmti0Apa::Dwg1Md] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.jmti0Apa::Dwg1Md] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.jmti0Apa::Dwg1Md] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.jmti0Apa::AdName] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.jmti0Apa::AdName] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.jmti0Apa::AdName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.jmti0Apa::AdId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.jmti0Apa::AdId] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.jmti0Apa::AdId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.jmti0Apa::DwgA4id] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.jmti0Apa::DwgA4id] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.jmti0Apa::DwgA4id] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.lACBvq4L ZrZYFo6bYXYM71YyLSDK.T8c598KK::UserData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.lACBvq4L ZrZYFo6bYXYM71YyLSDK.T8c598KK::UserData] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.lACBvq4L ZrZYFo6bYXYM71YyLSDK.T8c598KK::UserData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.seFRNdhu ZrZYFo6bYXYM71YyLSDK.T8c598KK::EvtData] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.seFRNdhu ZrZYFo6bYXYM71YyLSDK.T8c598KK::EvtData] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.seFRNdhu ZrZYFo6bYXYM71YyLSDK.T8c598KK::EvtData] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T8c598KK::TimeStamp] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T8c598KK::TimeStamp] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T8c598KK::TimeStamp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T8c598KK::Sign] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T8c598KK::Sign] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T8c598KK::Sign] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AndroidId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AndroidId] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AndroidId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::PackageName] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::PackageName] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::PackageName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AppVersion] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AppVersion] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AppVersion] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AppVersionName] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AppVersionName] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AppVersionName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AndroidVersion] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AndroidVersion] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AndroidVersion] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AndroidVersionName] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AndroidVersionName] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AndroidVersionName] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::PhoneBrand] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::PhoneBrand] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::PhoneBrand] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::PhoneModel] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::PhoneModel] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::PhoneModel] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AdId] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AdId] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::AdId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::NetWorkType] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::NetWorkType] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::NetWorkType] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::UserID] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::UserID] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.lACBvq4L::UserID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Code] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Code] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Code] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param1] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param2] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param3] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param4] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param5] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param5] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param6] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param6] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param6] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param7] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param7] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param8] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param8] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.seFRNdhu::Param8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.bgZvZjhr/QaHsxOCI::h9_Dy3fy] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.bgZvZjhr ZrZYFo6bYXYM71YyLSDK.bgZvZjhr/QaHsxOCI::pgRCBusQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::SJuBuKNx] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::2_pANVyQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::uNhkilTu] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::HvjVRtTs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::PMp7WZ6D] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.bgZvZjhr::ACPEifaz] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.BPiI3e24/gk1F5Fs3::WrECcmoA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BPiI3e24 ZrZYFo6bYXYM71YyLSDK.BPiI3e24/gk1F5Fs3::Ro3XAU_V] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.BPiI3e24::oZOhee7U] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.BPiI3e24::091alBwM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.BPiI3e24::g8Di0Q_B] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.BPiI3e24::nQ1zybmq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.BPiI3e24::LkhtdqZo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.BPiI3e24::wifWxc4t] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::24Sd7051] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::24Sd7051] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::Bep6_4rV] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::Bep6_4rV] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::Lp7I0ZhY] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::Lp7I0ZhY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::opDj80TR] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::opDj80TR] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::HyWSw817] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::HyWSw817] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::1uxOTeYa] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::1uxOTeYa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::CUe0KFdW] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::CUe0KFdW] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::VY0l0uSW] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::VY0l0uSW] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::MIPcgHLg] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/WBENsGCQ::MIPcgHLg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Q413u951 ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/dCijzOFB::35YZYhXy] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BAr6LyvR ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UE29IwYu::gHI8ORd3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.bgZvZjhr ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/UAGCgsoz::HPMk19cS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.YERrislM ZrZYFo6bYXYM71YyLSDK.i_XdhVwA/yXpletMn::0xQKQJqD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.YERrislM/LjKBOCC2::eWrhy66W] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.YERrislM ZrZYFo6bYXYM71YyLSDK.YERrislM/LjKBOCC2::33JdiPDD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.YERrislM::TCormZXf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.YERrislM::FILkOHye] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.YERrislM::KXqq6s4m] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.YERrislM::bG7tl__O] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.YERrislM::cCdgIK_W] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.YERrislM::thO5efkV] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.YERrislM::nTrw6jtD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::AtV3akEn] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::AtV3akEn] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::21qoLrbM] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::21qoLrbM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::QfaLBB0n] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU/pYblUHW4::QfaLBB0n] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::OZ4c0yhw] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.N_x5UwgU::4lYymgr_] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Q413u951/9w5PFAbC::ZLdLk36R] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Q413u951 ZrZYFo6bYXYM71YyLSDK.Q413u951/9w5PFAbC::9vTKZLID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.Q413u951::Lz6c74iH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.Q413u951::VzbejATh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.Q413u951::K0nDlOcd] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.Q413u951::puog8D0s] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.Q413u951::knGpcVg5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.Q413u951::5YCnggnT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.BAr6LyvR/pUC92FDo::6rxQ7JVa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.BAr6LyvR ZrZYFo6bYXYM71YyLSDK.BAr6LyvR/pUC92FDo::0gInmKoF] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::kwm4h5Q6] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::lKuDhbRM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::ODOK6KYl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::_bOFr6Cw] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::lTsLYA1F] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::C2R812F2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.BAr6LyvR::Ro5ocxAJ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ABConfigData::GroupId] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ABConfigData::GroupId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ABConfigData::GId] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.ABConfigData::GId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.VariableData[] ZrZYFo6bYXYM71YyLSDK.ABConfigData::variableDatas] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.VariableData[] ZrZYFo6bYXYM71YyLSDK.ABConfigData::variableDatas] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::Key] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::Key] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::Json] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.VariableData::Json] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI::arpu] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI::arpu] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI::country] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI::country] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI::networkNameStr] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.Y_TMyDpI::networkNameStr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::networkNameStr] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::networkNameStr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::appID] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::appID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::videoID] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::videoID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::insID] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::insID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::nativeID] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::nativeID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::maxDisplay] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::maxDisplay] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::videoId1] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::videoId1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::videoId2] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::videoId2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::insId1] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::insId1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::insId2] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::insId2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::token] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WN_PNrjI::token] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.lQThqqVB::flRsQHRU] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BJKUwn1w::wk9S4AdV] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BJKUwn1w::wFCDsxvE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BJKUwn1w::DwBwFtVH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BJKUwn1w::3rQk_1KY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BJKUwn1w::InYPnRBa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BJKUwn1w::AzdDsIS8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BJKUwn1w::iJ1EMmRE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.BJKUwn1w::QL3IWNGh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::oWHwjAjr] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::oWHwjAjr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::9cwD5Cp3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::9cwD5Cp3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::qhvY5bTG] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::qhvY5bTG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::TOh4XeD9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::TOh4XeD9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::_TCV9O1E] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::_TCV9O1E] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::Lr1UEKkg] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::Lr1UEKkg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::BU1AQNO0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::BU1AQNO0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::wyw44752] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::wyw44752] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::CKt14MKr] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::CKt14MKr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::YOKMojL9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::YOKMojL9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::pdoopmKm] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::pdoopmKm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::4SLi5Kq8] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::4SLi5Kq8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::CnPoacv3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::CnPoacv3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::wQUhm6Ax] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/UKmlrJXG::wQUhm6Ax] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1> ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/oiO7W7Jo::yQKSMUt6] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1> ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/k1EU5ePD::GQq2MdIq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::E8n1GO2B] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::che_psWA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::ND6r3jym] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::vRWeoaIF] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/TZSfRDw2::wt3yOoJe] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/HlAc_tJc::fzIHjqfC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/__EE8nBa::KciUMpIM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/uMAvoXTh::dxCZHU83] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.6Bq4Lmrl/8o_URVEj::0y424f0g] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::GOPAY] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::GOPAY] Because of compatibility component: Obfuscator - Compatibility : Has the DoNotRenameAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::GOPAY] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::DANA] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::DANA] Because of compatibility component: Obfuscator - Compatibility : Has the DoNotRenameAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::DANA] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::PIX] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::PIX] Because of compatibility component: Obfuscator - Compatibility : Has the DoNotRenameAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::PIX] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::MERCADOPAGO] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::MERCADOPAGO] Because of compatibility component: Obfuscator - Compatibility : Has the DoNotRenameAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::MERCADOPAGO] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::PAGBANK] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::PAGBANK] Because of compatibility component: Obfuscator - Compatibility : Has the DoNotRenameAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode ZrZYFo6bYXYM71YyLSDK.PaymentTypeCode::PAGBANK] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::SecneId] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::SecneId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::Desc] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::Desc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::Amount] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::Amount] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::CountryCode] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::CountryCode] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::DailyLimit] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::DailyLimit] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::MaxLimit] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::MaxLimit] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::PaymentTypeCode] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawConfig::PaymentTypeCode] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::Id] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::Id] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::SecneId] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::SecneId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::Amount] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::Amount] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::PaymentTypeCode] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::PaymentTypeCode] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::Status] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::Status] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::Ts] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int64 ZrZYFo6bYXYM71YyLSDK.WithDrawOrder::Ts] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_ ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::D_tDWVEM] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_ ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::D_tDWVEM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::9MPrSAiZ] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.eVei42W9/Q6IJeh8_::9MPrSAiZ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.eVei42W9 ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::I89aL3Ub] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::bCF0Ec50] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.eVei42W9/pwKZIGhy::5OJW3xBp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.7v5hlFcS/BOTbggEV::iKdUzTkQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7v5hlFcS ZrZYFo6bYXYM71YyLSDK.7v5hlFcS/BOTbggEV::rXODc1SU] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::1mzcUC_N] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::nLkXp03i] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::aCdbutoq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::54zHHdqV] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::x6LlmcHR] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::wJnSUggV] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.7v5hlFcS::Ccm9FDZy] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::F_QK_sfe] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::F_QK_sfe] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::jVu04TeW] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::jVu04TeW] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::uFSHFogD] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::uFSHFogD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::oUL6P6KP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::oUL6P6KP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::EQjjJWjo] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::EQjjJWjo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::U0dEOirF] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::U0dEOirF] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::NGAiiqhu] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::NGAiiqhu] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::5V7D0TD6] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::5V7D0TD6] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::0XNz_dhH] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::0XNz_dhH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::URrj54rl] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/b35u1VCP::URrj54rl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/m9qJUCM9::Hkx3vgXF] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.UON1FKb6/m9qJUCM9::9Ym3RbTa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7v5hlFcS ZrZYFo6bYXYM71YyLSDK.UON1FKb6/JKPN6hMh::G_JuqPRP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.XFnGoY6x ZrZYFo6bYXYM71YyLSDK.UON1FKb6/XowJdPCC::yBzXrC8S] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JeQ601zk ZrZYFo6bYXYM71YyLSDK.UON1FKb6/KgZyWip3::2ADH85Bo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv ZrZYFo6bYXYM71YyLSDK.UON1FKb6/AG7jbNLd::LLy2NSTG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::oT3J3Tj7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/VxxQCGHP::QKFUD1g9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::r1wq6mp0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.UON1FKb6/Xb8kzFqn::0eumcjO9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.XFnGoY6x/5fncJy2p::vLa7S3wv] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.XFnGoY6x ZrZYFo6bYXYM71YyLSDK.XFnGoY6x/5fncJy2p::PhF7nPPP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::xNq54shi] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::UiuI1QTq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::VOy7SHyp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::qSAoXB4o] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::f_CZLBVA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::m0NFjVPO] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::U2RFtlBo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.XFnGoY6x::MbYX3uAI] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JeQ601zk/Limsf2gb::ciuSsCCz] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JeQ601zk ZrZYFo6bYXYM71YyLSDK.JeQ601zk/Limsf2gb::dtx5oEnR] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.JeQ601zk::OrytpiCw] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.JeQ601zk::7eNMpAhh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.JeQ601zk::mVd218H6] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.JeQ601zk::mfH2YfOW] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.JeQ601zk::WokQhIGk] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.JeQ601zk::QumDPg8r] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.JeQ601zk::lWt62IK3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv/V_tl2yTp::Evtp_bKb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv/V_tl2yTp::6xNNIL5V] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::oMPB9Mhx] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::vZ9ruLMu] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::2qLiVK5o] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::uImDzCzA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::hacM1lrK] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::rpsBpQ_4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::o18qEY4B] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.Yb9uzMhv::42cJrR8H] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::WIocOayY] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::WIocOayY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::Bnd6ib8q] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/tFyEnFpc::Bnd6ib8q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.0bh2cKMy ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::CdV0Ehox] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.p4hn_DV5 ZrZYFo6bYXYM71YyLSDK.xiBxAcFj/ZZomtJs7::aVb9th1F] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::g3IWtCcJ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::w4xDgOWm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::J7PG6Hc_] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::6_UCiOsU] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.OxsZC3BO::ydDGbI7w] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.0bh2cKMy/O85tBYld::rfXVV02t] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.0bh2cKMy ZrZYFo6bYXYM71YyLSDK.0bh2cKMy/O85tBYld::TU4pK9Yb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::2bmkaDEM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::XnFy80P5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::6nk5UtbG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::gO1ORmeN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::LKwiwnn8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.0bh2cKMy::Mi1dgyHp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.i25nl_jC::WGOSl64i] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.i25nl_jC::Ar5PoVoT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.i25nl_jC::2I2eQfiI] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.i25nl_jC::C5t8GueN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.i25nl_jC::1z3751wE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.i25nl_jC::7CAPNS57] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.p4hn_DV5/PHyaB2uQ::FyxuPr8A] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.p4hn_DV5 ZrZYFo6bYXYM71YyLSDK.p4hn_DV5/PHyaB2uQ::uT0ccPJ6] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::VU_Xmrer] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::CBJ67xGV] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::s8l7DSiE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::2KZ3qT1k] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::IySRHSUe] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::DIXcaJ3d] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.p4hn_DV5::mI9jOdcP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.WzVrEiL2/Y0xnl6iw::EZCjnNKZ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.WzVrEiL2 ZrZYFo6bYXYM71YyLSDK.WzVrEiL2/Y0xnl6iw::S8dYegF_] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::T4pf0gza] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::oMXeUSVy] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::83OyVOTe] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::UFLhNMuz] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::4GU4DNP1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.WzVrEiL2::gpS3dxu6] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.EkCGohlU/YICzfXaE::89KfC77D] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.EkCGohlU ZrZYFo6bYXYM71YyLSDK.EkCGohlU/YICzfXaE::wJ5TargS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.EkCGohlU::VyNUtcat] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.EkCGohlU::VxOkUGS8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.EkCGohlU::e4Bi2h4E] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.EkCGohlU::xV_OZSGi] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.EkCGohlU::K4xStCmz] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.EkCGohlU::GsN6CJxW] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::Mr3rlUrG] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::Mr3rlUrG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::ekeh_gjQ] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::ekeh_gjQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::nkVI4EDy] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::nkVI4EDy] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::lb_MZIB9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::lb_MZIB9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::tmqq9ai9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::tmqq9ai9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::Dojp3yF_] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::Dojp3yF_] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::90u0AaHX] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::90u0AaHX] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::1qbkz4im] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::1qbkz4im] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::qcjSpZbP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::qcjSpZbP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::sN7T3hNW] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::sN7T3hNW] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::IqRNj2A0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::IqRNj2A0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::zikNkHeH] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::zikNkHeH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::PR4WfO_h] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::PR4WfO_h] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::FsxKTP1P] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::FsxKTP1P] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::c58xDYZO] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::c58xDYZO] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/prD9UPYN ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::J0JunPZD] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/prD9UPYN ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::J0JunPZD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::J_rKRCB7] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/IJDHKlbA::J_rKRCB7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::mOBZt4Mm] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::mOBZt4Mm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::HpfCxajH] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::HpfCxajH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::E3IPNCkW] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::E3IPNCkW] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::72FHxBRH] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::72FHxBRH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::AGNuOLej] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::AGNuOLej] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::QL32pVvx] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::QL32pVvx] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::0ym27HVU] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::0ym27HVU] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::gejwSGrl] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::gejwSGrl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::1zQMEsnR] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::1zQMEsnR] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::gb5r6MHr] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::gb5r6MHr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::TdD07dlL] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::TdD07dlL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::a9nT5WIS] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::a9nT5WIS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::1TRgnVwr] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::1TRgnVwr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::4hlbOfKh] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QMqDMAWC::4hlbOfKh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::tMMgxO2D] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::tMMgxO2D] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::gybCxj7P] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::gybCxj7P] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::zqM66Zcu] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::zqM66Zcu] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::Pk0_E5uT] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::Pk0_E5uT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::Pcmwj0ws] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::Pcmwj0ws] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::GkNmuePz] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::GkNmuePz] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::Gv6ULZUT] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::Gv6ULZUT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::F7X0MDhY] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::F7X0MDhY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::uNrl2KjL] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::uNrl2KjL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::jTZwO8Zh] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::jTZwO8Zh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::eqJBYwnX] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::eqJBYwnX] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::4brgMWY8] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::4brgMWY8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::Xa7dFwGN] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::Xa7dFwGN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::5rZdaLeb] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::5rZdaLeb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::D72YXLNe] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::D72YXLNe] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::AI9EQjlD] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::AI9EQjlD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::lnt8foyh] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::lnt8foyh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::UwM6RC3q] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::UwM6RC3q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::E1M20skO] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::E1M20skO] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::s7A6eU_i] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::s7A6eU_i] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::yirce7Kf] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::yirce7Kf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::5oRlA1jG] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::5oRlA1jG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::VHN1tCCW] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::VHN1tCCW] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::2FLGrZ2H] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::2FLGrZ2H] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::8sLWSYAE] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::8sLWSYAE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::0euypTmh] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ::0euypTmh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/1rUQTUFh ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7::LRcApCpB] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/1rUQTUFh ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7::LRcApCpB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7::cRw1JwQe] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7::cRw1JwQe] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7::m8kOU4L4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7::m8kOU4L4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7::rdze_QK7] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7::rdze_QK7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7::pElwEAqr] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/QQkK43V7::pElwEAqr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/1rUQTUFh::f0swKiH1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/1rUQTUFh::f0swKiH1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/1rUQTUFh::B9w5c5NY] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/1rUQTUFh::B9w5c5NY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/1rUQTUFh::HkLq9xWz] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/1rUQTUFh::HkLq9xWz] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::kc4efiVs] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::kc4efiVs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::8zhmropU] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::8zhmropU] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/v4JwNnPG[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::gLWoYpC6] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/v4JwNnPG[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::gLWoYpC6] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::FN7Vvd8C] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::FN7Vvd8C] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::TIygNXi7] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/8YQce0dZ[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::TIygNXi7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/yofVfANG[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::BPMwy0PB] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/yofVfANG[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::BPMwy0PB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::gOynYxgh] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/XInDdRm9::gOynYxgh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/v4JwNnPG::OX2batnE] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/v4JwNnPG::OX2batnE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/v4JwNnPG::rdvIZlbi] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/v4JwNnPG::rdvIZlbi] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::WfwVzZ2w] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::WfwVzZ2w] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::StLM9fja] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::StLM9fja] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::5G0J3YdQ] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::5G0J3YdQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::Ky9xrkKU] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::Ky9xrkKU] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::cnw1Lmbi] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::cnw1Lmbi] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::yb1YVy4A] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::yb1YVy4A] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::gwGEPdaY] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/lfDM_LMV::gwGEPdaY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/yofVfANG::Q9OqsaFa] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/yofVfANG::Q9OqsaFa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/yofVfANG::QXjw5UJU] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/yofVfANG::QXjw5UJU] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/yofVfANG::x3YZZu_l] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/yofVfANG::x3YZZu_l] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM::event1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM::event1] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM::event1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM::s8rc7sZu] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM::s8rc7sZu] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM::YVnOvH5A] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/u2od1uqM::YVnOvH5A] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::lSwmonxO] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::lSwmonxO] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::k_HPdXr4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::k_HPdXr4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::XnwB_ufu] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::XnwB_ufu] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::Tmhzw5ch] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::Tmhzw5ch] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::X2psSvR2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::X2psSvR2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::yP1OlObH] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::yP1OlObH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::Ex_RddXN] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::Ex_RddXN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::ref1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::ref1] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::ref1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::gR_2KDKC] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::gR_2KDKC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::h3zSIBaX] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::h3zSIBaX] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::rxgwLCCN] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::rxgwLCCN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::XPUnGt8Q] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::XPUnGt8Q] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::5bC5dmNN] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::5bC5dmNN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::r4F3wIAG] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::r4F3wIAG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::ubR7AEJ6] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/TgkYwLD4::ubR7AEJ6] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::DgIwaFf3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::DgIwaFf3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::BaLHdil9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::BaLHdil9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::qYIGebP8] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::qYIGebP8] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::I3MrDNSP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::I3MrDNSP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::uoJ2n_qx] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::uoJ2n_qx] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::7mx4VH7e] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::7mx4VH7e] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::jb09o5g5] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::jb09o5g5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::lMzBl9sd] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::lMzBl9sd] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::yQPJZXIS] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::yQPJZXIS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::BKUktang] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::BKUktang] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::aJKjxKQo] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::aJKjxKQo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::V3nTlrY7] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::V3nTlrY7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::ytQNMZGc] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::ytQNMZGc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::lMCCeiT0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::lMCCeiT0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::J0exdFXa] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/Zhsbmfqd::J0exdFXa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB::nNQ6PNFg] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB::nNQ6PNFg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB::MUW37ju1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB::MUW37ju1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB::M0H25xPq] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB::M0H25xPq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB::OSK9fjGZ] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/okIEwRAB::OSK9fjGZ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::ZOnmvgkQ] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::ZOnmvgkQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::ZtVolHGg] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::ZtVolHGg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::6vnbfUPp] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::6vnbfUPp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::zjWvqG5B] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::zjWvqG5B] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::jZ5A9M9W] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::jZ5A9M9W] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::TVUYumny] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::TVUYumny] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::E_GEx8l1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::E_GEx8l1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::6YjJPbVM] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::6YjJPbVM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::oss1NzfL] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::oss1NzfL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::9jQRQkor] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::9jQRQkor] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::sbbCzVjX] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::sbbCzVjX] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::IymaArLe] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::IymaArLe] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::NWBFPYcd] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::NWBFPYcd] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::uob39_9r] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::uob39_9r] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::wjHcFljd] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::wjHcFljd] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::pthvMFao] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::pthvMFao] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::MXHkc9rE] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::MXHkc9rE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::Tv4yPDWh] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::Tv4yPDWh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::qnxQENmR] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::qnxQENmR] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::2v389h47] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::2v389h47] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::ZIQ3p8sk] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::ZIQ3p8sk] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::dytTa4VI] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::dytTa4VI] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::XGPdStYW] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::XGPdStYW] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::0af0fLQt] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::0af0fLQt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::lt2v1IVk] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::lt2v1IVk] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::Lo0Rdz4I] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::Lo0Rdz4I] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::1p216j98] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::1p216j98] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::30Sp9_r9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/npNbnSrk::30Sp9_r9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::QC9c_zEW] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::QC9c_zEW] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::0LLNdxrY] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::0LLNdxrY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::K_U1JDWj] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::K_U1JDWj] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::qiIA_g16] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::qiIA_g16] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::izgbKExS] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::izgbKExS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::ivc5K8eF] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::ivc5K8eF] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::bXNx8mff] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::bXNx8mff] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::ujWZFND4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::ujWZFND4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::aIeUrFIN] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::aIeUrFIN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::yM8pRk7U] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::yM8pRk7U] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::c441jAFG] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::c441jAFG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::hnpQRTFG] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::hnpQRTFG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::WaMJDlJB] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/74Q7qF5j::WaMJDlJB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/prD9UPYN::NC_U54tn] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/prD9UPYN::NC_U54tn] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/prD9UPYN::Yq0sDPXY] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.JZhPFqBA/prD9UPYN::Yq0sDPXY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::2wQNO_xr] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::2wQNO_xr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::u9utk1U3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::u9utk1U3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::hZEot4ia] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::hZEot4ia] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::bj1KOgwt] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::bj1KOgwt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::ku_5mpG_] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::ku_5mpG_] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::aQ9dTuqe] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/PUSUD3o5::aQ9dTuqe] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60::3X_5zy2U] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60::3X_5zy2U] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60::C6EqE4dV] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60::C6EqE4dV] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60::tjPvQQKD] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60::tjPvQQKD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60::Ea5CIrek] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/WUicgF60::Ea5CIrek] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::XNmizY8G] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::XNmizY8G] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::c6G6Re8U] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::c6G6Re8U] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::y9Msqrda] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::y9Msqrda] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::o00KtjZc] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::o00KtjZc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::rYBgmGMM] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::rYBgmGMM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::PBuKEQ3X] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::PBuKEQ3X] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::8gLoHO3A] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::8gLoHO3A] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::g4li08_l] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::g4li08_l] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::mClq0oU3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::mClq0oU3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::WsvY2h0V] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::WsvY2h0V] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::Qh3otK59] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::Qh3otK59] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::vA0wOuRH] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::vA0wOuRH] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::OJiXQ9f1] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::OJiXQ9f1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::8nXU2mFI] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::8nXU2mFI] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::IVqTd76W] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::IVqTd76W] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::bQKvRW8y] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::bQKvRW8y] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::60krt7nl] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::60krt7nl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::J66jvs7o] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::J66jvs7o] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::lFh8PP_i] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::lFh8PP_i] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::2pdygyb4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::2pdygyb4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::0dHGM1fK] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::0dHGM1fK] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::4SnE31au] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::4SnE31au] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::0M2Im7w9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::0M2Im7w9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::enb0iyRA] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::enb0iyRA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::bj094nFF] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::bj094nFF] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::iPxvT3bB] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/1uwnPEMG::iPxvT3bB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::vKCaiVde] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::vKCaiVde] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::Cna_wEsT] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::Cna_wEsT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::9T5sV2Xh] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::9T5sV2Xh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::PJKxEQ_n] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::PJKxEQ_n] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::upZRWHde] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::upZRWHde] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::o699wlbY] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::o699wlbY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::RF1iF_Ty] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/oIbbP0V5::RF1iF_Ty] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::0Tuw4lb3] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::0Tuw4lb3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::WZPqJdAS] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::WZPqJdAS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/O0GEEMjM ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::X02hMnKv] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/O0GEEMjM ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::X02hMnKv] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::j3SBDvgI] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::j3SBDvgI] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/kuMmHRz1 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::TgrhgewF] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/kuMmHRz1 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::TgrhgewF] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/DBMjWWze ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::L1Li07yD] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/DBMjWWze ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::L1Li07yD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::yf2dQkzQ] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::yf2dQkzQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::Kcd680G5] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/hYbGqSUO::Kcd680G5] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/O0GEEMjM::30NuoCJ2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/O0GEEMjM::30NuoCJ2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/O0GEEMjM::1fkx3rsG] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/O0GEEMjM::1fkx3rsG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/O0GEEMjM::YnOviMJg] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/O0GEEMjM::YnOviMJg] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N::5rIopGu0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N::5rIopGu0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N::N4SkYrqh] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N::N4SkYrqh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N::H6H3IQL4] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N::H6H3IQL4] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N::8braCidP] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N::8braCidP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N::_MHLlK6W] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/8PSonh2N::_MHLlK6W] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/kuMmHRz1::7ECVMkG7] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/kuMmHRz1::7ECVMkG7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/DBMjWWze::RNtZUxav] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/DBMjWWze::RNtZUxav] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/DBMjWWze::vcRZKJbb] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/DBMjWWze::vcRZKJbb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff::WkezN1Ef] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff::WkezN1Ef] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff::FH09of0B] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff::FH09of0B] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff::PgLU1auJ] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff::PgLU1auJ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff::xkHkwbyT] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/Bm8mcVff::xkHkwbyT] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo::events] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo::events] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo::events] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo::Waggv79H] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo::Waggv79H] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo::hR6ziuSl] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo::hR6ziuSl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo::Qjn2ibjm] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.7SYNY5fT/VqRppjIo::Qjn2ibjm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::ViM6Oa1b] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::ViM6Oa1b] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::WsVhiApC] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::WsVhiApC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::j_bmpgZb] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Comparison`1 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::j_bmpgZb] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::sjaE1b1h] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::sjaE1b1h] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::7m5IFu9x] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/eA_uCvIq::7m5IFu9x] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::kj7YhL01] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/mUE2fpF1::AF6eTEfd] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw ZrZYFo6bYXYM71YyLSDK.HRnh9Nmw/XBClyRiE::wtFDBuhP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.kkfCarln::yYT7c9eo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String[] ZrZYFo6bYXYM71YyLSDK.kkfCarln::2gyBkx97] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::1O0JfLkz] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::1O0JfLkz] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::5Mdvk4Nm] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::5Mdvk4Nm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::uHDvivDQ] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/EF0vlnu5::uHDvivDQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kCYnW4bQ::jTJo5QPu] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/ol8niX6J::rm4IHptE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.mQpuzb0S/kPZaIXU7::bf3IKyXS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK._fD4903q::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK._fD4903q::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK._fD4903q::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK._fD4903q ZrZYFo6bYXYM71YyLSDK._fD4903q::6Zi079Ee] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK._fD4903q ZrZYFo6bYXYM71YyLSDK._fD4903q::6Zi079Ee] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK._fD4903q ZrZYFo6bYXYM71YyLSDK._fD4903q::Xj1c0nD_] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK._fD4903q ZrZYFo6bYXYM71YyLSDK._fD4903q::Xj1c0nD_] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6ytri0_8::66mCS_Mz] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6ytri0_8::MNqfPvcM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.6ytri0_8::HTqXu9GB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/FlWv9Gto::5DZIZyKQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/wtrTgY6G::gEvQZGdo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ ZrZYFo6bYXYM71YyLSDK.nSMYt9QJ/hfqxmwwi::gSQ_DXpl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::2wRfgjBh] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::Zx4XoWwB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::lZ3JsOoU] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::rBFXhtNl] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::RDXxNnVL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::xiVEJ_ZD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::JKGxB9a_] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::uPgqeZN_] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::hRsOTnpF] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.yXtpQfvi::12VIgYnk] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3 ZrZYFo6bYXYM71YyLSDK.tV02MDi3/gw9oVc6X::n3RjiwOr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3 ZrZYFo6bYXYM71YyLSDK.tV02MDi3/K6HD9KRl::a05hgaIL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tV02MDi3/K6HD9KRl::sCNOQSqK] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tV02MDi3/K6HD9KRl::vj459pnV] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tV02MDi3/K6HD9KRl::pRSyxlgx] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tV02MDi3/K6HD9KRl::DQk4FxCx] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tV02MDi3/K6HD9KRl::FnDOXGu6] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tV02MDi3/K6HD9KRl::iiIDtllj] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tV02MDi3 ZrZYFo6bYXYM71YyLSDK.tV02MDi3/GQZ2TGE5::cIE9C3fM] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tV02MDi3/GQZ2TGE5::p0yrm304] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tV02MDi3/GQZ2TGE5::K_RRVp4N] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tV02MDi3/GQZ2TGE5::FyZnMAir] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.tV02MDi3/GQZ2TGE5::Fn7Htwyk] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tV02MDi3/GQZ2TGE5::59E1c9_e] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.tV02MDi3/GQZ2TGE5::ic6AMtyq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.9X_wOmur::VKAMCeu1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.9X_wOmur::UXSJspkB] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO/xz__giD6::Du_ph6nF] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO/xz__giD6::Du_ph6nF] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO/xz__giD6::LXhBHFLU] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.rKZJP9iO/xz__giD6::LXhBHFLU] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.DateTime ZrZYFo6bYXYM71YyLSDK.rKZJP9iO/xz__giD6::OWaXztv7] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.DateTime ZrZYFo6bYXYM71YyLSDK.rKZJP9iO/xz__giD6::OWaXztv7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl::LdTvm9LY] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/9k6BAsKl::LdTvm9LY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::WkaUEUsO] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::WkaUEUsO] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::Rk1fzUAu] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/l2rYS7pb::Rk1fzUAu] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::jAHkni55] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::jAHkni55] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::MinIoGxt] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/ZWhqJ83A::MinIoGxt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::7KbxHQp2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/Kov1m50J::p42ekpad] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::tOnWdIHL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Predicate`1 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/pBZjra2Y::NZHeB6SN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::NTSYsuD3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] US3tLAQf ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/StYO2lGW::iIjxtfec] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::1FZl64xO] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Object ZrZYFo6bYXYM71YyLSDK.tJ5Kzt8J/wHuPM9Yj::Rm1ST9lo] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::X6zcPon9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::X6zcPon9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::UwGrFElj] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::UwGrFElj] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::444swpST] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::444swpST] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::DDlFbv3l] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Byte[] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::DDlFbv3l] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::KvO46f39] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::KvO46f39] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::z745x2EY] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::z745x2EY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::NwE5RZQL] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::NwE5RZQL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::FTITFyD6] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::FTITFyD6] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::dqtB242R] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.Dictionary`2 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::dqtB242R] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Threading.CancellationToken ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::N6mgfp2b] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Threading.CancellationToken ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18::N6mgfp2b] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq::value__] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq::value__] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq::vS1JeF45] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq::vS1JeF45] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq::cpMaPZYz] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq::cpMaPZYz] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq::BNNtUqlc] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq::BNNtUqlc] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq::bxwU2Ydf] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq::bxwU2Ydf] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq::ACTQ0nbO] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/uKxDP0Mq::ACTQ0nbO] Because of the 'Obfuscate enum values' setting. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/dr3z0c4M::S7pzNnwY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/yXcC9c18 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool/dr3z0c4M::v_un4h4k] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::MaxConcurrentRequests] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::MaxConcurrentRequests] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::DefaultTimeout] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::DefaultTimeout] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::MaxRetryCount] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.HttpRequestTool::MaxRetryCount] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/4ii4W047::Zg7LsoQ2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/4ii4W047::baAqQ5ej] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/sbaBXlQT::LCseLC01] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.IEnumeratorTool/sbaBXlQT::utoGoOxe] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.I5kVKta4::cGhRBXv9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.I5kVKta4::UPHVJ2iA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.I5kVKta4::535cykr9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.I5kVKta4::UmNfsyzk] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.I5kVKta4::chJctF4U] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.I5kVKta4::bBIlKcCs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/Akl7fC46::WiufoHYz] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.IEnumerator ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/Akl7fC46::4AB0Igd7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/5WtIh70C::iubK9G3W] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Threading.Tasks.TaskCompletionSource`1 ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/5WtIh70C::pPEdsNUr] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.UnityMainThreadDispatcher/RPQ7pYcH::T2iHVqJE] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM::ubpLSUkj] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM::ubpLSUkj] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM::it8xbfh0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.wRO3ToY7/XjVHkTGM::it8xbfh0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.hopUZXhB::46mNsz0P] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::yNyoOl35] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.hopUZXhB::oh2eN_Bi] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.hopUZXhB::AFH5O451] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.kzgkCyk9::JrxYFxg3] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::JKj8BcRD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::AqMsJmct] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::dzVijZhI] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::TsC4fvhj] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.T0VBGHFZ::0nbH8o1V] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::lVQ8jlJY] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::BiBpbenf] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::8Gu1NDjw] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::gf3WRP5M] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::ooJjzgso] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::u1eWr_l_] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::N4x00nTs] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Double ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::Fvq39Rxe] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::HTPzgJZI] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.String ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::g4ZrhX2Y] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] MaxSdkBase/WaterfallInfo ZrZYFo6bYXYM71YyLSDK.iN5Xc6Mk::Ny0nVzNO] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Boolean ZrZYFo6bYXYM71YyLSDK.zZwcIEHV::keYRyGU2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Single ZrZYFo6bYXYM71YyLSDK.KkPul9Ab/WXmQTG8M::O8c2Y1cJ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.KkPul9Ab/WXmQTG8M::KC2LSiat] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::aLX6c0lL] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::AxvBWeen] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::LtdRb2AQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::jlhQhU8_] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::oluwnOqa] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.KkPul9Ab::yhWOGAnq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.HiqjHarS::21yWqtGF] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.HiqjHarS::ZJVUYdnA] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.HiqjHarS::cz_ygpXC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.HiqjHarS::McSOiFHm] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.HiqjHarS::IzV1Zy15] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.HiqjHarS::KnGpa7ny] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action ZrZYFo6bYXYM71YyLSDK.HiqjHarS::9SUmZP2K] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE::gfO_cdjQ] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE::gfO_cdjQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE::C5X353Tp] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Func`2 ZrZYFo6bYXYM71YyLSDK.j6C8atiF/yB13eRxE::C5X353Tp] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.j6C8atiF/hcOfyqGD::4X2p7RAq] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.j6C8atiF/hcOfyqGD::Z17O1fEP] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.KkPul9Ab ZrZYFo6bYXYM71YyLSDK.j6C8atiF/Cvn1XrhC::5chmBZz1] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.HiqjHarS ZrZYFo6bYXYM71YyLSDK.j6C8atiF/2HSjjmwK::GTpqlKQ7] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::<>9] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDKCONTROLLER/<>c::<>9] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::Tnm_TZhN] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::Tnm_TZhN] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::VeSaFkac] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::VeSaFkac] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2,System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::IadWI4ut] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2,System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::IadWI4ut] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2,System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::qUmCwqqJ] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2,System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::qUmCwqqJ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`4 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::L32BN_rn] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`4 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::L32BN_rn] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2,System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::7cnVUtYx] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2,System.Collections.Generic.List`1> ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::7cnVUtYx] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`3,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT> ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::SU5bQ5vj] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`3,System.Collections.Generic.List`1,ZrZYFo6bYXYM71YyLSDK.4nXCdYAT> ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::SU5bQ5vj] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::jw9CgFQG] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`2 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::jw9CgFQG] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`3 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::LFMI2YU0] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`3 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::LFMI2YU0] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::j27LhpBQ] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::j27LhpBQ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::Lc6Rwf0h] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::Lc6Rwf0h] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::Ijv0oVzJ] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Action`1 ZrZYFo6bYXYM71YyLSDK.ZrZYFo6bYXYM71YyLSDK_AD_COMPONENT/jcH1Avyy::Ijv0oVzJ] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find Field References in Modules... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find Field References in Instructions... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Skip Fields... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Byte[] jyj0EesQ/rUBTREjH::V03ifz4F] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Byte[] jyj0EesQ/rUBTREjH::V03ifz4F] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Byte[] jyj0EesQ/rUBTREjH::_eoKFIcC] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Byte[] jyj0EesQ/rUBTREjH::_eoKFIcC] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Int32 jyj0EesQ/rUBTREjH::vgBODkEz] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Int32 jyj0EesQ/rUBTREjH::vgBODkEz] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Int32 jyj0EesQ/rUBTREjH::j8doiXTc] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Int32 jyj0EesQ/rUBTREjH::j8doiXTc] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Boolean jyj0EesQ/rUBTREjH::BrE3p4wF] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Boolean jyj0EesQ/rUBTREjH::BrE3p4wF] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Action`2> SDK_IAP.Analytics::OnTrackEvent] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Boolean SDK_IAP.Hnpdo984::ZHF0kkMS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.ProductDefine::id] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.ProductDefine::id] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] UnityEngine.Purchasing.ProductType SDK_IAP.ProductDefine::type] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] UnityEngine.Purchasing.ProductType SDK_IAP.ProductDefine::type] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Collections.Generic.Dictionary`2 SDK_IAP.ProductDefine::storeSpecificIds] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Collections.Generic.Dictionary`2 SDK_IAP.ProductDefine::storeSpecificIds] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Boolean SDK_IAP.PurchaseResult::success] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.PurchaseResult::productId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.PurchaseResult::transactionId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.PurchaseResult::error] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Boolean SDK_IAP.RestoreResult::success] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.RestoreResult::restoredProductIds] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.RestoreResult::error] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.SubscriptionInfoLite::productId] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Boolean SDK_IAP.SubscriptionInfoLite::isSubscribed] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Boolean SDK_IAP.SubscriptionInfoLite::isExpired] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.DateTime SDK_IAP.SubscriptionInfoLite::expireDate] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Boolean SDK_IAP.SubscriptionInfoLite::isAutoRenewing] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.b4eGWFfo/ReceiptWrapper::Store] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.b4eGWFfo/ReceiptWrapper::Store] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.b4eGWFfo/ReceiptWrapper::TransactionID] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.b4eGWFfo/ReceiptWrapper::TransactionID] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.b4eGWFfo/ReceiptWrapper::Payload] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.b4eGWFfo/ReceiptWrapper::Payload] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.b4eGWFfo/GooglePayloadWrapper::json] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.b4eGWFfo/GooglePayloadWrapper::json] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.b4eGWFfo/GooglePayloadWrapper::signature] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.b4eGWFfo/GooglePayloadWrapper::signature] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] SDK_IAP.bxoh8bRe/vWFTXjiG SDK_IAP.bxoh8bRe/vWFTXjiG::1hOlZo_L] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] SDK_IAP.bxoh8bRe/vWFTXjiG SDK_IAP.bxoh8bRe/vWFTXjiG::1hOlZo_L] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Action`1 SDK_IAP.bxoh8bRe/vWFTXjiG::jVCeBMT2] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Action`1 SDK_IAP.bxoh8bRe/vWFTXjiG::jVCeBMT2] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.String SDK_IAP.bxoh8bRe/s4DKl0py::161RzE4h] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] SDK_IAP.bxoh8bRe SDK_IAP.bxoh8bRe/s4DKl0py::hLgkgB1U] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Action`1 SDK_IAP.bxoh8bRe/s4DKl0py::ikObOWJS] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Action`1 SDK_IAP.bxoh8bRe/s4DKl0py::7NfytV7W] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Int32 SDK_IAP.bxoh8bRe/puudMThz::YtzNL6Ra] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Int32 SDK_IAP.bxoh8bRe/puudMThz::YtzNL6Ra] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Runtime.CompilerServices.AsyncVoidMethodBuilder SDK_IAP.bxoh8bRe/puudMThz::gPC8N4YD] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Runtime.CompilerServices.AsyncVoidMethodBuilder SDK_IAP.bxoh8bRe/puudMThz::gPC8N4YD] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] SDK_IAP.bxoh8bRe SDK_IAP.bxoh8bRe/puudMThz::zolf0uVt] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] SDK_IAP.bxoh8bRe SDK_IAP.bxoh8bRe/puudMThz::zolf0uVt] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Action`1 SDK_IAP.bxoh8bRe/puudMThz::53ir8t0P] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Action`1 SDK_IAP.bxoh8bRe/puudMThz::53ir8t0P] Because of your defined Field obfuscation settings. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.bxoh8bRe/puudMThz::kO9OV2TX] Because of compatibility component: Unity - Compatibility : The field is public and in a serializeable class and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation of serializeable fields. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDK_IAP] System.Collections.Generic.List`1 SDK_IAP.bxoh8bRe/puudMThz::kO9OV2TX] Because of your defined Field obfuscation settings. [Info][OPS.OBF][OnAnalyse_Assemblies] Process component Property - Obfuscation [Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Find MemberReferences... @@ -30867,6 +78170,10 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[Assembly-CSharp] FairyGUI.Utils.XML FairyGUI.Utils.XMLList::Item(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[Assembly-CSharp] FairyGUI.DisplayObject FairyGUI.Container/DescendantsEnumerator::Current()] Property is in group that has external definition (is in some assembly that gets not obfuscated). [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[Assembly-CSharp] FairyGUI.DisplayObject FairyGUI.Container/DescendantsEnumerator::Current()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Skip Properties... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Find Member to skip... @@ -30884,6 +78191,10 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[spine-unity] System.Int32 Spine.Collections.OrderedDictionary`2/ValueCollection::Count()] Some other Property in the Property group getting skipped. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[spine-unity] System.Int32 Spine.Collections.OrderedDictionary`2::Count()] Property is in group that has external definition (is in some assembly that gets not obfuscated). [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[spine-unity] System.Int32 Spine.Collections.OrderedDictionary`2::Count()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Skip Properties... [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find Member to skip... @@ -30898,6 +78209,10 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Find Member to skip... [Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Skip Properties... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Skip Properties... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find Member to skip... @@ -30914,6 +78229,10 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[DOTween.Modules] System.Boolean DG.Tweening.DOTweenCYInstruction/WaitForPosition::keepWaiting()] Some other Property in the Property group getting skipped. [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[DOTween.Modules] System.Boolean DG.Tweening.DOTweenCYInstruction/WaitForStart::keepWaiting()] Property is in group that has external definition (is in some assembly that gets not obfuscated). [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[DOTween.Modules] System.Boolean DG.Tweening.DOTweenCYInstruction/WaitForStart::keepWaiting()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Skip Properties... [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Find Member to skip... @@ -30928,15 +78247,182 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Skip Properties... [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[endel.nativewebsocket] System.Boolean WaitForUpdate::keepWaiting()] Property is in group that has external definition (is in some assembly that gets not obfuscated). [Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[endel.nativewebsocket] System.Boolean WaitForUpdate::keepWaiting()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Properties... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Skip Properties... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] V Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Item(K)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] T Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::Item(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec::Item(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Pkcs.Pkcs12Entry::Item(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.RecipientInformation Org.BouncyCastle.Cms.RecipientInformationStore::Item(Org.BouncyCastle.Cms.RecipientID)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformation Org.BouncyCastle.Cms.SignerInformationStore::Item(Org.BouncyCastle.Cms.SignerID)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataList::Item(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignatureList::Item(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureList::Item(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1EncodableVector::Item(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1Sequence::Item(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1Set::Item(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attribute Org.BouncyCastle.Asn1.Cms.AttributeTable::Item(Org.BouncyCastle.Asn1.DerObjectIdentifier)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUtf8String Org.BouncyCastle.Asn1.Cmp.PkiFreeText::Item(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.BaseInputStream::CanRead()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.BaseInputStream::CanRead()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.BaseInputStream::CanSeek()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.BaseInputStream::CanSeek()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.BaseInputStream::CanWrite()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.BaseInputStream::CanWrite()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.IO.BaseInputStream::Length()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.IO.BaseInputStream::Length()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.IO.BaseInputStream::Position()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.IO.BaseInputStream::Position()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.BaseOutputStream::CanRead()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.BaseOutputStream::CanRead()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.BaseOutputStream::CanSeek()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.BaseOutputStream::CanSeek()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.BaseOutputStream::CanWrite()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.BaseOutputStream::CanWrite()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.IO.BaseOutputStream::Length()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.IO.BaseOutputStream::Length()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.IO.BaseOutputStream::Position()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.IO.BaseOutputStream::Position()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.FilterStream::CanRead()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.FilterStream::CanRead()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.FilterStream::CanSeek()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.FilterStream::CanSeek()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.FilterStream::CanWrite()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.IO.FilterStream::CanWrite()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.IO.FilterStream::Length()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.IO.FilterStream::Length()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.IO.FilterStream::Position()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.IO.FilterStream::Position()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::IsReadOnly()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::IsReadOnly()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::Count()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::Count()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyCollectionProxy`1::Count()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyCollectionProxy`1::Count()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::IsReadOnly()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::IsReadOnly()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Count()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Count()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Keys()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Keys()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Values()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Values()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::Count()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::Count()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::Keys()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::Keys()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::Values()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::Values()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::IsReadOnly()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::IsReadOnly()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::Count()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::Count()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyListProxy`1::Count()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlyListProxy`1::Count()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::IsReadOnly()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::IsReadOnly()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::Count()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::Count()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::Count()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1::Count()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsStream::CanRead()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsStream::CanRead()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsStream::CanSeek()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsStream::CanSeek()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsStream::CanWrite()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsStream::CanWrite()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsStream::Length()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsStream::Length()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsStream::Position()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.TlsStream::Position()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.CipherStream::CanRead()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.CipherStream::CanRead()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.CipherStream::CanSeek()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.CipherStream::CanSeek()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.CipherStream::CanWrite()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.CipherStream::CanWrite()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.CipherStream::Length()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.CipherStream::Length()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.CipherStream::Position()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.CipherStream::Position()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.DigestStream::CanRead()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.DigestStream::CanRead()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.DigestStream::CanSeek()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.DigestStream::CanSeek()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.DigestStream::CanWrite()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.DigestStream::CanWrite()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.DigestStream::Length()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.DigestStream::Length()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.DigestStream::Position()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.DigestStream::Position()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.MacStream::CanRead()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.MacStream::CanRead()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.MacStream::CanSeek()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.MacStream::CanSeek()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.MacStream::CanWrite()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.MacStream::CanWrite()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.MacStream::Length()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.MacStream::Length()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.MacStream::Position()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.MacStream::Position()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.SignerStream::CanRead()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.SignerStream::CanRead()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.SignerStream::CanSeek()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.SignerStream::CanSeek()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.SignerStream::CanWrite()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.SignerStream::CanWrite()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.SignerStream::Length()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.SignerStream::Length()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.SignerStream::Position()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.IO.SignerStream::Position()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1EncodableVector::Count()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1EncodableVector::Count()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Sequence::Count()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Sequence::Count()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Set::Count()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Set::Count()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlEntry Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration/RevokedCertificatesEnumerator::Current()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlEntry Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration/RevokedCertificatesEnumerator::Current()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cms.AttributeTable::Count()] Property is in group that has external definition (is in some assembly that gets not obfuscated). +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cms.AttributeTable::Count()] Some other Property in the Property group getting skipped. +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Skip Properties... +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[ZrZYFo6bYXYM71YyLSDK] 0ZUThFnX ZrZYFo6bYXYM71YyLSDK.GsNYLsCq::Item(System.String,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is 'Item' +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::Channels()] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Collections.Generic.List`1 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::k__BackingField] Belonging property gets skipped: Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::MeditationAutoInit()] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::k__BackingField] Belonging property gets skipped: Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Property [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::MustAfCallback()] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[ZrZYFo6bYXYM71YyLSDK] System.Int32 ZrZYFo6bYXYM71YyLSDK.Jok2RmfI::k__BackingField] Belonging property gets skipped: Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute. +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Skip Properties... [Info][OPS.OBF][OnAnalyse_Assemblies] Process component Event - Obfuscation [Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Find Member to skip... [Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Skip Events... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Skip Events... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Find Member to skip... [Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Skip Events... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Skip Events... [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find Member to skip... @@ -30949,10 +78435,18 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Find Member to skip... [Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Skip Events... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Skip Events... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find Member to skip... [Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Skip Events... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Skip Events... [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Analyse Member... [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [NativeGallery.Runtime] Find Member to skip... @@ -30965,6 +78459,22 @@ [Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find MemberReferences... [Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find Member to skip... [Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Skip Events... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Events... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [BouncyCastle.Cryptography] Skip Events... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Skip Events... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Analyse Member... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find MemberReferences... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Find Member to skip... +[Info][OPS.OBF][OnAnalyse_Assemblies] [SDK_IAP] Skip Events... [Info][OPS.OBF][OnAnalyse_Assemblies] Process component Attribute - Settings [Info][OPS.OBF][OnAnalyse_Assemblies] Process component Add Random Code [Info][OPS.OBF][OnAnalyse_Assemblies] Process component Method ControlFlow @@ -30985,36 +78495,60 @@ [Info][OPS.OBF][OnPostAnalyse_Assemblies] Process component Playable - Class - Obfuscation [Info][OPS.OBF][OnPostAnalyse_Assemblies] Process component Method - Obfuscation [Info][OPS.OBF][OnPostAnalyse_Assemblies] [Assembly-CSharp] Skip Methods... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [SDKConfig] Skip Methods... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [spine-unity] Skip Methods... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [BigoAds] Skip Methods... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [MaxSdk.Scripts] Skip Methods... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [IngameDebugConsole.Runtime] Skip Methods... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [AppsFlyer] Skip Methods... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [KwaiAds] Skip Methods... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [DOTween.Modules] Skip Methods... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [VosacoSDK] Skip Methods... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [NativeGallery.Runtime] Skip Methods... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Methods... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [endel.nativewebsocket] Skip Methods... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [WebView] Skip Methods... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [BouncyCastle.Cryptography] Skip Methods... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Skip Methods... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [SDK_IAP] Skip Methods... [Info][OPS.OBF][OnPostAnalyse_Assemblies] Process component Parameter - Obfuscation [Info][OPS.OBF][OnPostAnalyse_Assemblies] Process component Field - Obfuscation [Info][OPS.OBF][OnPostAnalyse_Assemblies] Process component Property - Obfuscation [Info][OPS.OBF][OnPostAnalyse_Assemblies] [Assembly-CSharp] Skip Properties... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [SDKConfig] Skip Properties... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [spine-unity] Skip Properties... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [BigoAds] Skip Properties... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [MaxSdk.Scripts] Skip Properties... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [IngameDebugConsole.Runtime] Skip Properties... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [AppsFlyer] Skip Properties... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [KwaiAds] Skip Properties... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [DOTween.Modules] Skip Properties... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [VosacoSDK] Skip Properties... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [NativeGallery.Runtime] Skip Properties... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Properties... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [endel.nativewebsocket] Skip Properties... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [WebView] Skip Properties... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [BouncyCastle.Cryptography] Skip Properties... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Skip Properties... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [SDK_IAP] Skip Properties... [Info][OPS.OBF][OnPostAnalyse_Assemblies] Process component Event - Obfuscation [Info][OPS.OBF][OnPostAnalyse_Assemblies] [Assembly-CSharp] Skip Events... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [SDKConfig] Skip Events... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [spine-unity] Skip Events... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [BigoAds] Skip Events... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [MaxSdk.Scripts] Skip Events... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [IngameDebugConsole.Runtime] Skip Events... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [AppsFlyer] Skip Events... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [KwaiAds] Skip Events... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [DOTween.Modules] Skip Events... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [VosacoSDK] Skip Events... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [NativeGallery.Runtime] Skip Events... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Events... [Info][OPS.OBF][OnPostAnalyse_Assemblies] [endel.nativewebsocket] Skip Events... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [WebView] Skip Events... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [BouncyCastle.Cryptography] Skip Events... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [ZrZYFo6bYXYM71YyLSDK] Skip Events... +[Info][OPS.OBF][OnPostAnalyse_Assemblies] [SDK_IAP] Skip Events... [Info][OPS.OBF][OnPostAnalyse_Assemblies] Process component Attribute - Settings [Info][OPS.OBF][OnPostAnalyse_Assemblies] Process component Add Random Code [Info][OPS.OBF][OnPostAnalyse_Assemblies] Process component Method ControlFlow @@ -31069,7 +78603,6 @@ [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] GiftType] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] VipDay] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] OpenBrowser] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] PayType] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] PurchasingManager] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] SaveingPotClass] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] SaveingPotTaskStatus] : @@ -32326,6 +79859,7 @@ [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_Log] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_PropertiesChecker] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[spine-unity] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[spine-unity] SharpJson.Lexer] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[spine-unity] SharpJson.JsonDecoder] : @@ -32455,6 +79989,8 @@ [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[spine-unity] Spine.Collections.OrderedDictionary`2] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[spine-unity] Spine.Collections.OrderedDictionaryDebugView`2] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[spine-unity] Spine.Collections.CollectionExtensions] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BigoAds] AdHelper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[MaxSdk.Scripts] MaxCmpService] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[MaxSdk.Scripts] MaxCmpError] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[MaxSdk.Scripts] MaxEvents] : @@ -32515,35 +80051,12 @@ [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] Money] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AFMiniJSON.Json] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.MediationNetwork] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.AdRevenueScheme] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.AFAdRevenueData] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.AFPurchaseType] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.AFPurchaseDetailsAndroid] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseDetailsIOS] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogStatus] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogResult] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.EmailCryptType] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.AppsFlyerAndroid] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.AppsFlyerConsent] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.AppsFlyerRequestEventArgs] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.DeepLinkEventsArgs] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.DeepLinkStatus] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.DeepLinkError] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSource] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSourceStoreKit2] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.UnityPurchaseRevenueBridgeProxy] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.Store] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.AppsFlyerAutoLogPurchaseRevenueOptions] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.StoreKitVersion] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.IAppsFlyerAndroidBridge] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.IAppsFlyerConversionData] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.IAppsFlyerIOSBridge] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.IAppsFlyerNativeBridge] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseValidation] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.IAppsFlyerUserInvite] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateAndLog] : -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateReceipt] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[KwaiAds] IKwaiAdListener] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[KwaiAds] KwaiAdsMgr] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[KwaiAds] KwaiLog] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[KwaiAds] KwaiInterAd] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[KwaiAds] KwaiVideoAd] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTween.Modules] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics] : @@ -32553,6 +80066,7 @@ [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[NativeGallery.Runtime] NativeGallery] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[NativeGallery.Runtime] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[NativeGallery.Runtime] NativeGalleryNamespace.NGMediaReceiveCallbackAndroid] : @@ -32580,12505 +80094,32154 @@ [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[endel.nativewebsocket] NativeWebSocket.WaitForBackgroundThread] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[endel.nativewebsocket] NativeWebSocket.WebSocket] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[endel.nativewebsocket] NativeWebSocket.WebSocketFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] ThisAssembly] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.AttributeCertificateHolder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.AttributeCertificateIssuer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.DeltaCertificateTool] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.IX509Extension] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.PemParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.PrincipalUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.SubjectPublicKeyInfoFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509AttrCertParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Attribute] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertificatePair] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertificateParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertPairParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Crl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CrlEntry] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CrlParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509ExtensionBase] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509KeyUsage] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509SignatureUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Utilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V1CertificateGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2CrlGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V3CertificateGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509AttrCertStoreSelector] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509CertPairStoreSelector] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509CertStoreSelector] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509CrlStoreSelector] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.ICheckingCertificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Extension.AuthorityKeyIdentifierStructure] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Extension.SubjectKeyIdentifierStructure] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Extension.X509ExtensionUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Arrays] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.BigIntegers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Bytes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Enums] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IEncodable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Integers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Longs] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.MemoableResetException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Objects] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Platform] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Shorts] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Strings] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Adler32] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Deflate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.InfBlocks] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.InfCodes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Inflate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.InfTree] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.JZlib] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.StaticTree] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Tree] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZInputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZInputStreamLeaveOpen] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZOutputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZOutputStreamLeaveOpen] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Net.IPAddress] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BaseInputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BaseOutputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BinaryReaders] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BinaryWriters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BufferedFilterStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.FilterStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.LimitedBuffer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.LimitedInputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.PushbackStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.StreamOverflowException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Streams] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.TeeInputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.TeeOutputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemGenerationException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemHeader] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObject] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObjectGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObjectParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemReader] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemWriter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Compression.Bzip2] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Compression.Zip] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Compression.ZLib] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.Base64] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.Base64Encoder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.BufferedDecoder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.BufferedEncoder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.Hex] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.HexEncoder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.HexTranslator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.IEncoder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.ITranslator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.UrlBase64] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.UrlBase64Encoder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Date.DateTimeUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.CollectionUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.EnumerableProxy`1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.ISelector`1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.IStore`1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.ReadOnlyCollectionProxy`1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.ReadOnlyListProxy`1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.ReadOnlySetProxy`1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.StoreImpl`1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Bzip2.BZip2Constants] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStreamLeaveOpen] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStreamLeaveOpen] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Bzip2.CRC] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.GenTimeAccuracy] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampRequest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampRequestGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampResponse] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampResponseGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampToken] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.Resolution] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampTokenGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TimeStampTokenInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TspAlgorithms] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TspException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TspUtil] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tsp.TspValidationException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.AbstractTlsClient] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.AbstractTlsContext] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.AbstractTlsKeyExchange] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.AbstractTlsKeyExchangeFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.AbstractTlsPeer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.AbstractTlsServer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.AlertDescription] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.AlertLevel] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.BasicTlsPskExternal] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.BasicTlsPskIdentity] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.BasicTlsSrpIdentity] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ByteQueue] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ByteQueueInputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ByteQueueOutputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CachedInformationType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertChainType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Certificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateCompressionAlgorithm] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateEntry] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateRequest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatus] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatusRequest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatusRequestItemV2] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatusType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateUrl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateVerify] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ChangeCipherSpec] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ChannelBinding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CipherSuite] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CipherType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ClientAuthenticationType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ClientCertificateType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ClientHello] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CombinedHash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CompressionMethod] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ConnectionEnd] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ContentType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DatagramReceiver] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DatagramSender] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DatagramTransport] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DefaultTlsClient] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DefaultTlsCredentialedSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DefaultTlsHeartbeat] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DefaultTlsKeyExchangeFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DefaultTlsServer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DefaultTlsSrpConfigVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DeferredHash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DigestInputBuffer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DigitallySigned] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsClientProtocol] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsEpoch] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsHandshakeRetransmit] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsProtocol] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsReassembler] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsRecordLayer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsReliableHandshake] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsReplayWindow] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsRequest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsServerProtocol] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsRecordFlags] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsRecordCallback] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsTransport] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ECCurveType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ECPointFormat] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.EncryptionAlgorithm] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ExporterLabel] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ExtensionType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HandshakeMessageInput] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HandshakeMessageOutput] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HandshakeType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HashAlgorithm] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HeartbeatExtension] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HeartbeatMessage] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HeartbeatMessageType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.HeartbeatMode] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.IdentifierType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.KeyExchangeAlgorithm] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.KeyShareEntry] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.KeyUpdateRequest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.MacAlgorithm] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.MaxFragmentLength] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.NamedGroup] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.NamedGroupRole] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.NameType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.NewSessionTicket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.OcspStatusRequest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.OfferedPsks] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.PrfAlgorithm] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.PskIdentity] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.PskKeyExchangeMode] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.PskTlsClient] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.PskTlsServer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.RecordFormat] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.RecordPreview] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.RecordStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SecurityParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ServerHello] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ServerName] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ServerNameList] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ServerOnlyTlsAuthentication] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ServerSrpParams] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SessionParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAlgorithm] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureScheme] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SimulatedTlsSrpIdentityManager] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SrpTlsClient] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SrpTlsServer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SrtpProtectionProfile] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Ssl3Utilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SupplementalDataEntry] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SupplementalDataType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Timeout] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsAuthentication] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsClient] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsClientContext] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsClientContextImpl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsClientProtocol] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCloseable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsContext] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedAgreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedDecryptor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentials] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsDHanonKeyExchange] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsDheKeyExchange] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsDHGroupVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsDHKeyExchange] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsDHUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsEccUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsECDHanonKeyExchange] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsECDheKeyExchange] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsECDHKeyExchange] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsExtensionsUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsFatalAlert] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsFatalAlertReceived] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsHandshakeHash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsHeartbeat] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchangeFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsNoCloseNotifyException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPeer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsProtocol] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPsk] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPskExternal] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPskIdentity] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPskIdentityManager] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPskKeyExchange] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsRsaKeyExchange] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsServer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsServerCertificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsServerCertificateImpl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsServerContext] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsServerContextImpl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsServerProtocol] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSession] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSessionImpl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpConfigVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpIdentity] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpIdentityManager] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpKeyExchange] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpLoginParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrpUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsSrtpUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsTimeoutException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TrustedAuthority] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.UrlAndHash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.UserMappingType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.UseSrtpData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.CryptoHashAlgorithm] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.CryptoSignatureAlgorithm] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHStandardGroups] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCipherExt] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Srp6Group] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Srp6StandardGroups] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Tls13Verifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsAgreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCertificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCertificateRole] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCrypto] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCryptoException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCryptoUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDecodeResult] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDHConfig] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsDHDomain] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsECConfig] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsECDomain] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsEncodeResult] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsEncryptor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHashSink] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHmac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsKemConfig] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsKemDomain] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsMac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsMacSink] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsNonceGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsNullNullCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrp6Client] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrp6Server] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrp6VerifierGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSrpConfig] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsStreamSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsStreamVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.LegacyTls13Verifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.PqcUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.RsaUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipherImpl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipherImpl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsImplUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteHmac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteMac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcChaCha20Poly1305] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedAgreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedDecryptor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcSsl3Hmac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTls13Verifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsAeadCipherImpl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsBlockCipherImpl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCcmImpl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDH] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDsaSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDsaVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDssSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDssVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDH] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDomain] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsa13Signer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsaSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsaVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsEd25519Signer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsEd448Signer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsHmac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLDsaSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKem] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsMLKemDomain] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsNonceGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaEncryptor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaPssSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaPssVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6Client] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6Server] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSrp6VerifierGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsStreamSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsStreamVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX25519] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX25519Domain] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX448] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcX448Domain] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Runtime.Intrinsics.Vector] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Runtime.Intrinsics.X86.Aes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Runtime.Intrinsics.X86.Avx2] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Runtime.Intrinsics.X86.Bmi1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Runtime.Intrinsics.X86.Bmi2] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Runtime.Intrinsics.X86.Pclmulqdq] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Runtime.Intrinsics.X86.Sse2] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Runtime.Intrinsics.X86.Sse41] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Runtime.Intrinsics.X86.Ssse3] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.IKemParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.IMessageSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPrivateKeyFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPrivateKeyInfoFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcSubjectPublicKeyInfoFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Utilities.SecretWithEncapsulationImpl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Fors] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS256Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaS512Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSXof] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HT] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.IndexedDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.NodeEntry] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.PK] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_FORS] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_XMSS] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SK] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.ISphincsPlusEngineProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Sha2EngineProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Shake256EngineProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSEngineProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.WotsPlus] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.Poly] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberKemExtractor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberKemGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Saber.Symmetric] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.KMatrices] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.KMatricesWithPointer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstants] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstantsL1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstantsL3] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstantsL5] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.Msg] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.Signature] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.Signature2] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.Tape] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.Tree] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.View] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruEncapsulation] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKemExtractor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKemGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruSampling] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.PolynomialPair] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Hps4096Polynomial] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HpsPolynomial] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Hrss1373Polynomial] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HrssPolynomial] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps2048509] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps2048677] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps40961229] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHps4096821] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHpsParameterSet] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrss1373] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrss701] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruHrssParameterSet] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.ParameterSets.NtruParameterSet] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.NtruOwcpa] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.OwcpaDecryptResult] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.OwcpaKeyPair] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemExtractor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimePrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimePublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemExtractor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimePrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimePublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Composer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Hss] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.ILmsContextBasedSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.ILmsContextBasedVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPrivateKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsPublicKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOtsSignature] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.Lms] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsContext] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMSigParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignedPubKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LMOts] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.SeedDerive] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.FastFourierTransform] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.GF2PolynomialCalculator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.GFCalculator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemExtractor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.ReedSolomon] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.Utils] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKEMExtractor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKEMGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoMatrixGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCodec] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconCommon] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconConversions] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFFT] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeygen] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconNist] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconRNG] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSmallPrime] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSmallPrimes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FalconVrfy] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.FprEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.SamplerZ] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Ntt] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Packing] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVec] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.PolyVecMatrix] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Reduce] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Rounding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.Benes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.Benes12] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.Benes13] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.ICmceEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKemExtractor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKemGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.CmcePublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.GF] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.GF12] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.GF13] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Cmce.Utils] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemExtractor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikePrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikePublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Bike.BikeUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.CmcePublicKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.PqcObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPrivateKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Asn1.SphincsPlusPublicKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.CertStatus] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixAttrCertChecker] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixAttrCertPathBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixAttrCertPathValidator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixBuilderParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPath] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathBuilderException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathBuilderResult] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathChecker] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathValidator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathValidatorException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathValidatorResult] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCrlUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixNameConstraintValidator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixNameConstraintValidatorException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixPolicyNode] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.ReasonsMask] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.Rfc3281CertPathUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.TrustAnchor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.AsymmetricKeyEntry] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.EncryptedPrivateKeyInfoFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12Entry] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12Store] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12StoreBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs12Utilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfoBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.PkcsException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.PkcsIOException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.PrivateKeyInfoFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.X509CertificateEntry] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.IPasswordFinder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.MiscPemGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemReader] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.PemWriter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.OpenSsl.Pkcs8Generator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.EncryptionException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.PasswordException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.AgreementUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.CipherUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DigestUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.DotNetUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.GeneralSecurityException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.GeneratorUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.InvalidKeyException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.InvalidParameterException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.JksStore] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.KemUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.KeyException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.MacUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.ParameterUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.PbeUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.PrivateKeyFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.PublicKeyFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecurityUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecurityUtilityException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SignatureException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SignerUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.WrapperUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.Certificates.CertificateEncodingException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.Certificates.CertificateException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.Certificates.CertificateExpiredException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.Certificates.CertificateNotYetValidException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.Certificates.CertificateParsingException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.Certificates.CrlException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.BasicOcspResp] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.BasicOcspRespGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.CertificateID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.CertificateStatus] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspReq] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspReqGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspResp] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OCSPRespGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspRespStatus] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.Req] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.RespData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.RespID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.RevokedStatus] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.SingleResp] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.UnknownStatus] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Mozilla.SignedPublicKeyAndChallenge] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Primes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Bits] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Interleave] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Mod] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Nat] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Nat128] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Nat160] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Nat192] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Nat224] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Nat256] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Nat320] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Nat384] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Nat448] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Nat512] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Raw.Nat576] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.FiniteFields] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.GenericPolynomialExtensionField] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.GF2Polynomial] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.IExtensionField] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.IFiniteField] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.IPolynomial] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.IPolynomialExtensionField] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.PrimeField] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractECLookupTable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECAlgorithms] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractFpCurve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.FpCurve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractF2mCurve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.F2mCurve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractFpFieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.FpFieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractF2mFieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.F2mFieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECLookupTable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPointBase] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractFpPoint] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.FpPoint] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractF2mPoint] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.F2mPoint] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPointMap] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.LongArray] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ScaleXNegateYPointMap] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ScaleXPointMap] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ScaleYNegateXPointMap] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ScaleYPointMap] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.SimpleLookupTable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Codec] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Scalar25519] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Scalar448] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.ScalarUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Wnaf] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc7748.X25519] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc7748.X25519Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc7748.X448] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc7748.X448Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.AbstractECMultiplier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.FixedPointCombMultiplier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.FixedPointPreCompInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.GlvMultiplier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.IPreCompCallback] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.PreCompInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ValidityPreCompInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WNafL2RMultiplier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WTauNafMultiplier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.WTauNafPreCompInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.ECEndomorphism] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.EndoPreCompInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.EndoUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.GlvEndomorphism] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.GlvTypeAEndomorphism] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.GlvTypeAParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.GlvTypeBEndomorphism] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.GlvTypeBParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT113FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT131FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT163FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT193FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT233FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT239FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT283FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT409FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT571FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Point] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.Tnaf] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Abc.ZTauElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Operators.CmsContentEncryptorBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Operators.CmsKeyTransRecipientInfoGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Operators.Utilities.DefaultDigestAlgorithmFinder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Operators.Utilities.DefaultMacAlgorithmFinder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Operators.Utilities.DefaultSignatureAlgorithmFinder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Operators.Utilities.IDigestAlgorithmFinder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Operators.Utilities.IMacAlgorithmFinder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Operators.Utilities.ISignatureAlgorithmFinder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AesUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.BufferedAeadBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.BufferedAeadCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.BufferedAsymmetricBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.BufferedBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.BufferedCipherBase] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.BufferedIesCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.BufferedStreamCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Check] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.CipherKeyGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.CryptoException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.CryptoServicesRegistrar] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.DataLengthException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IAlphabetMapper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IAsymmetricBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IAsymmetricCipherKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBasicAgreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockResult] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBufferedCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICharToByteConverter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherBuilderWithKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDecryptorBuilderProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDerivationFunction] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDerivationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigestFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDsa] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IEncapsulatedSecretExtractor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IEncapsulatedSecretGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IEntropySource] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IEntropySourceProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IKemDecapsulator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IKemEncapsulator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IKeyUnwrapper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IKeyWrapper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMacDerivationFunction] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMacFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.InvalidCipherTextException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IRawAgreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IRsa] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISecretWithEncapsulation] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISignatureFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISignerWithRecovery] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IStreamCalculator`1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IStreamCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IVerifierFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IVerifierFactoryProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IWrapper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IXof] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.KeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.MaxBytesExceededException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.OutputLengthException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.PasswordConverter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.PbeParametersGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.SimpleBlockResult] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.StreamBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.AlgorithmIdentifierFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.BasicAlphabetMapper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.CipherFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.CipherKeyGeneratorFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.DerOtherInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.DerUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.OpenSshPrivateKeyUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.OpenSshPublicKeyUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.Pack] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.SshBuffer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.SshBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Utilities.SshNamedCurves] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Tls.TlsRsaKeyExchange] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.DsaDigestSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.DsaSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.ECDsaSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.ECGost3410Signer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.ECNRSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.Ed25519ctxSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.Ed25519phSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.Ed25519Signer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.Ed448phSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.Ed448Signer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.GenericSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.Gost3410DigestSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.Gost3410Signer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.HashMLDsaSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.HMacDsaKCalculator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.IDsaEncoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.IDsaKCalculator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.IsoTrailers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.MLDsaSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.PlainDsaEncoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.PssSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.RandomDsaKCalculator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.RsaDigestSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.SlhDsaSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.SM2Signer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.StandardDsaEncoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Signers.X931Signer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.CryptoApiEntropySourceProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.CryptoApiRandomGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.DigestRandomGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.EntropyUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.IDrbgProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.IRandomGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.SP800SecureRandom] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.SP800SecureRandomBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.VmpcRandomGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.X931Rng] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.X931SecureRandom] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.X931SecureRandomBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.Drbg.DrbgUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.Drbg.HashSP800Drbg] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.Drbg.ISP80090Drbg] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.AeadParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Argon2Parameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Blake3Parameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DesEdeParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DesParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHValidationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaParameterGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECDomainParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECGost3410Parameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECNamedDomainParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Ed25519KeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Ed448KeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ElGamalKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ElGamalKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ElGamalParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ElGamalPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ElGamalPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.FpeParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Gost3410KeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Gost3410KeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Gost3410PrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Gost3410PublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Gost3410ValidationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.HkdfParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.IesParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.IesWithCipherParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Iso18033KdfParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KdfCounterParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KdfDoublePipelineIterationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KdfFeedbackParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KdfParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MgfParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaParameterSet] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemParameterSet] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MqvPrivateParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MqvPublicParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.NaccacheSternKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.NaccacheSternKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.NaccacheSternPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ParametersWithContext] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ParametersWithID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ParametersWithIV] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ParametersWithRandom] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ParametersWithSalt] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ParametersWithSBox] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.RC2Parameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.RC5Parameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.RsaBlindingParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.RsaKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SkeinParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaKeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ISphincsPlusEngineProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaParameterSet] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Sha2EngineProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Shake256EngineProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaPrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SlhDsaPublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePrivateParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePublicParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.TweakableBlockCipherParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.X25519KeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.X448KeyGenerationParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Paddings.IBlockCipherPadding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Paddings.ISO10126d2Padding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Paddings.ISO7816d4Padding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Paddings.Pkcs7Padding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Paddings.TbcPadding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Paddings.X923Padding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Paddings.ZeroBytePadding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.Asn1CipherBuilderWithKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.BufferedCipherWrapper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.Asn1DigestFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.Asn1KeyWrapper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.Asn1KeyUnwrapper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.KeyWrapperUtil] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.WrapperProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.RsaPkcs1Wrapper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.RsaPkcs1WrapperProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.RsaOaepWrapper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.RsaOaepWrapperProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.X509Utilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.Asn1SignatureFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.Asn1VerifierFactoryProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.DefaultDigestCalculator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.DefaultDigestResult] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.DefaultMacCalculator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.DefaultMacResult] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.DefaultSignatureCalculator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.DefaultSignatureResult] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.DefaultVerifierCalculator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.DefaultVerifierResult] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Operators.GenericKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.AsconAead128] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.CbcBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.CcmBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.CfbBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.CtsBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.EaxBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.EcbBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.GcmBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.GOfbBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.IAeadBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.IAeadCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.IBlockCipherMode] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.OcbBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.OfbBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.OpenPgpCfbBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.SicBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.Gcm.BasicGcmExponentiator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.Gcm.BasicGcmMultiplier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.Gcm.IGcmExponentiator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.Gcm.IGcmMultiplier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.Gcm.Tables1kGcmExponentiator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.Gcm.Tables4kGcmMultiplier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.Gcm.Tables64kGcmMultiplier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.Gcm.Tables8kGcmMultiplier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.CbcBlockCipherMac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.MacCfbBlockCipher] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.CfbBlockCipherMac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.CMac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.Dstu7564Mac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.Dstu7624Mac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.GMac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.Gost28147Mac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.HMac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.ISO9797Alg3Mac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.KMac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.Poly1305] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.SipHash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.SkeinMac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Macs.VmpcMac] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKemDecapsulator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKemEncapsulator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKem.Cbd] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKem.Ntt] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKem.Poly] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKem.Reduce] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IO.CipherStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IO.DigestSink] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IO.DigestStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IO.MacSink] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IO.MacStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IO.SignerSink] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IO.SignerStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.BaseKdfBytesGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.BCrypt] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.DesEdeKeyGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.DesKeyGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.DHBasicKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.DHKeyGeneratorHelper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.DHKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.DHParametersGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.DHParametersHelper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.DsaKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.ECKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Ed25519KeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Ed448KeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.ElGamalKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.ElGamalParametersGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Gost3410KeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Gost3410ParametersGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.HkdfBytesGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Kdf1BytesGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Kdf2BytesGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.KdfCounterBytesGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.KdfDoublePipelineIterationBytesGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.KdfFeedbackBytesGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Mgf1BytesGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.MLDsaKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.MLKemKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.NaccacheSternKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.OpenBsdBCrypt] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.OpenSslPbeParametersGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Pkcs5S1ParametersGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.Poly1305KeyGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.RsaBlindingFactorGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.RsaKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.SCrypt] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.SlhDsaKeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.X25519KeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Generators.X448KeyPairGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Fpe.FpeEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Fpe.FpeFf1Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Fpe.FpeFf3_1Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Fpe.SP80038G] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AesEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AesLightEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AesWrapEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AesWrapPadEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AriaEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AriaWrapEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AriaWrapPadEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.AsconEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.BlowfishEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.CamelliaEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.CamelliaWrapEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Cast5Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Cast6Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.ChaCha7539Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.ChaChaEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.DesEdeEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.DesEdeWrapEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.DesEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Dstu7624Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Dstu7624WrapEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.ElGamalEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Gost28147Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.HC128Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.HC256Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.IdeaEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.IesEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.IsaacEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.NaccacheSternEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.NoekeonEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.RC2Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.RC2WrapEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.RC4Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.RC532Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.RC564Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.RC6Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Rfc3211WrapEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Rfc3394WrapEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Rfc5649WrapEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.RijndaelEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.RsaBlindedEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.RsaBlindingEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.RsaCoreEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.RsaEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.Salsa20Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SeedEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SeedWrapEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SerpentEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SerpentEngineBase] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SkipjackEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SM2Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SM4Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.SparkleEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.TeaEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.ThreefishEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.TnepresEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.TwofishEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.VmpcEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.VmpcKsa3Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.XSalsa20Engine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Engines.XteaEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Encodings.OaepEncoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.CustomNamedCurves] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.EC.ECUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconCXof128] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconHash256] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconXof] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.AsconXof128] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Blake2bDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Blake2sDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Blake2xsDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Blake3Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.CShakeDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Dstu7564Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.GeneralDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Gost3411Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Gost3411_2012_256Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Gost3411_2012_512Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Haraka256Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Haraka512Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.HarakaBase] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.IsapDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.KeccakDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.LongDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.MD2Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.MD4Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.MD5Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.NonMemoableDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.NullDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.ParallelHash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Prehash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.RipeMD128Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.RipeMD160Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.RipeMD256Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.RipeMD320Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Sha1Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Sha224Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Sha256Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Sha384Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Sha3Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Sha512Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.Sha512tDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.ShakeDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.ShortenedDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SkeinDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SkeinEngine] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SM3Digest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SparkleDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.TigerDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.TupleHash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.XofUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.XoodyakDigest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.BasicAgreementWithKdf] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.DHAgreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.DHBasicAgreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.DHStandardGroups] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.ECDHBasicAgreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.ECDHCBasicAgreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.ECDHCWithKdfBasicAgreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.ECDHWithKdfBasicAgreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.ECMqvBasicAgreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.ECMqvWithKdfBasicAgreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.X25519Agreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.X448Agreement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.Srp.Srp6StandardGroups] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.Srp.Srp6VerifierGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.Kdf.ConcatenationKdfGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.Kdf.DHKdfParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.Kdf.DHKekGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.Kdf.ECDHKekGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeParticipant] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroup] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.JPake.JPakePrimeOrderGroups] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound1Payload] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound2Payload] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeRound3Payload] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.AuthenticatorControl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRepMessage] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRepMessageBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateReqMessages] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateReqMessagesBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessage] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateRequestMessageBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateResponse] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CertificateResponseBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.CrmfException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.DefaultPKMacPrimitivesProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.EncryptedValueBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.EncryptedValueParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.IControl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.IEncryptedValuePadder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.IPKMacPrimitivesProvider] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.PkiArchiveControl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.PkiArchiveControlBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.PKMacFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.PKMacBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.PKMacValueGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.PKMacValueVerifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.ProofOfPossessionSigningKeyBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Crmf.RegTokenControl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableGenerationException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableParameter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAttributeTableGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAuthenticatedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAuthenticatedDataParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAuthenticatedGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAuthEnvelopedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAuthEnvelopedGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsCompressedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsCompressedDataGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsCompressedDataParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsCompressedDataStreamGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsContentInfoParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedDataParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedHelper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsPbeKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsProcessable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsProcessableByteArray] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsProcessableFile] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsProcessableInputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsReadable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSecureReadable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedDataGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedDataParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.DefaultSignatureAlgorithmIdentifierFinder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.DefaultDigestAlgorithmIdentifierFinder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsSignedHelper] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsStreamException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsTypedStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.DefaultAuthenticatedAttributeTableGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.DefaultSignedAttributeTableGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.DigestAlgorithmsBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.KekRecipientInfoGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.KekRecipientInformation] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.KeyAgreeRecipientInformation] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.KeyTransRecipientInformation] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.OriginatorID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.OriginatorInfoGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.OriginatorInformation] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.PasswordRecipientInfoGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.PasswordRecipientInformation] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.Pkcs5Scheme2PbeKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.Pkcs5Scheme2Utf8PbeKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.Pkcs7ProcessableObject] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.RecipientID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.RecipientInfoGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.RecipientInformation] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.RecipientInformationStore] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInfoGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInfoGeneratorBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformation] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInformationStore] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SimpleAttributeTableGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.CertificateConfirmationContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.CertificateConfirmationContentBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.CertificateStatus] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.CmpException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.CmpUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.GeneralPkiMessage] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessage] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.RevocationDetails] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.RevocationDetailsBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.AeadAlgorithmTag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.AeadEncDataPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.ArmoredInputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.ArmoredOutputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.BcpgInputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.BcpgObject] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.BcpgOutputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.CompressedDataPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.CompressionAlgorithmTag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.ContainedPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Crc24] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.DsaPublicBcpgKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.DsaSecretBcpgKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.ECDsaPublicBcpgKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.ECPublicBcpgKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.ECSecretBcpgKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.EdDsaPublicBcpgKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.EdSecretBcpgKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.ElGamalPublicBcpgKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.ElGamalSecretBcpgKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.ExperimentalPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.HashAlgorithmTag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.IBcpgKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.InputStreamPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.IUserDataPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.LiteralDataPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.MarkerPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.ModDetectionCodePacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.MPInteger] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OnePassSignaturePacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Packet] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PacketTag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyEncSessionPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicKeyPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.PublicSubkeyPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RsaPublicBcpgKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RsaSecretBcpgKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.S2k] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SecretKeyPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SecretSubkeyPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignaturePacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketsParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacketTag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationKeyTag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReason] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.RevocationReasonTag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.StreamUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricEncDataPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricEncIntegrityPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SymmetricKeyEncSessionPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.TrustPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.UnsupportedPacketVersionException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.UserAttributePacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.UserAttributeSubpacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.UserAttributeSubpacketsParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.UserAttributeSubpacketTag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.UserIdPacket] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.EdDsaSigner] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.IStreamGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedDataGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpDataValidationException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataList] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpExperimental] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpKdfParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyFlags] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRing] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRingGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyValidationException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpMarker] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpObject] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpObjectFactory] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignatureList] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPad] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPbeEncryptedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyEncryptedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureList] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVector] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpUserAttributeSubpacketVectorGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpV3SignatureGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.Rfc6637Utilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.SXprUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.WrappedGeneratorStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.EmbeddedSignature] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.Exportable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.Features] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.IntendedRecipientFingerprint] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.IssuerFingerprint] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.IssuerKeyId] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.KeyExpirationTime] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.KeyFlags] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.NotationData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.PolicyUrl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.PreferredAlgorithms] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.PrimaryUserId] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.RegularExpression] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.Revocable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.SignatureCreationTime] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.SignatureExpirationTime] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.SignatureTarget] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.SignerUserId] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.TrustSignature] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Sig.Utilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.Attr.ImageAttrib] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1BitStringParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1EncodableVector] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Exception] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1GeneralizedTime] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Generator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1InputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Null] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1ObjectDescriptor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetStringParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OutputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1ParsingException] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1RelativeOid] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SequenceParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1SetParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1StreamParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Tag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObjectParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Tags] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Type] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1UniversalType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1UniversalTypes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1UtcTime] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Utilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerBitString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerBitStringParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerOctetString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerOctetStringGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerOctetStringParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequence] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequenceGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSequenceParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSet] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSetGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerSetParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerTaggedObject] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BerTaggedObjectParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.ConstructedBitStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.ConstructedDerEncoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.ConstructedDLEncoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.ConstructedILEncoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.ConstructedOctetStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DefiniteLengthInputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBmpString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBoolean] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEnumerated] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerExternal] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerExternalParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGeneralizedTime] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGeneralString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerGraphicString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerIA5String] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerNull] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerNumericString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerOctetString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerOctetStringParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerOutputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerPrintableString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequenceGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequenceParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSet] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSetGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSetParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerStringBase] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerT61String] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerTaggedObject] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUniversalString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUtcTime] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerUtf8String] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVideotexString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerVisibleString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLBitString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLBitStringParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLExternal] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLOutputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSequence] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLSet] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLTaggedObject] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DLTaggedObjectParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Choice] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Convertible] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1Encoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IAsn1String] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IndefiniteLengthInputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.LazyAsn1InputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.LimitedInputStream] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.OidTokenizer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.PrimitiveDerEncoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.PrimitiveDerEncodingSuffixed] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.PrimitiveEncoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.PrimitiveEncodingSuffixed] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TaggedDerEncoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TaggedDLEncoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TaggedILEncoding] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHDomainParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHPublicKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.DHValidationParms] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.ECNamedCurveTable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.KeySpecificInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.OtherInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962NamedCurves] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X962Parameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9Curve] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECPoint] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9FieldElement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9FieldID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9IntegerConverter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AccessDescription] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AltSignatureAlgorithm] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AltSignatureValue] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttCertIssuer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttCertValidityPeriod] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeX509] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeCertificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeCertificateInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AttributeTable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AuthorityKeyIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.BasicConstraints] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificateList] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificatePair] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertificatePolicies] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CertPolicyID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlDistPoint] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlNumber] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlReason] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DeltaCertificateDescriptor] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DigestInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DisplayText] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPoint] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DistributionPointName] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.DsaParameter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.EdiPartyName] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ExtendedKeyUsage] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Extension] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralNames] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralSubtree] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Holder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IetfAttrSyntax] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuerSerial] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyPurposeID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.KeyUsage] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.NameConstraints] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.NoticeReference] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ObjectDigestInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.OtherName] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyInformation] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyMappings] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyQualifierID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyQualifierInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PrivateKeyUsagePeriod] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.ReasonFlags] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Rfc5280Asn1Utilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.RoleSyntax] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.RsaPublicKeyStructure] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectAltPublicKeyInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectDirectoryAttributes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Target] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TargetInformation] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Targets] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateStructure] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.CrlEntry] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.TbsCertificateList] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.UserNotice] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.V1TbsCertificateGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.V2AttributeCertificateInfoGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.V2Form] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.V3TbsCertificateGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Validity] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Attributes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509CertificateStructure] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509DefaultEntryConverter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extension] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Name] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509NameEntryConverter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509NameTokenizer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509ObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SigI.NameOrPseudonym] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SigI.PersonalData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SigI.SigIObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.BiometricData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.EtsiQCObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.Iso4217CurrencyCode] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.MonetaryValue] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.QCStatement] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.Rfc3739QCObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.SemanticsInformation] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Qualified.TypeOfBiometricData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.DirectoryString] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.Rdn] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X500.Style.IetfUtilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Utilities.Asn1Dump] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.UA.UAObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.Accuracy] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampChain] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStampSequence] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.CryptoInfos] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.EncryptionInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.EvidenceRecord] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.MessageImprint] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.PartialHashtree] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TimeStampReq] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TimeStampResp] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TstInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Smime.SmimeAttributes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Smime.SmimeCapabilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Smime.SmimeCapabilitiesAttribute] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Smime.SmimeCapability] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Smime.SmimeCapabilityVector] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Smime.SmimeEncryptionKeyPreferenceAttribute] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.ECPrivateKeyStructure] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecNamedCurves] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Sec.SecObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Rosstandart.RosstandartObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.AttributePkcs] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertBag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertificationRequest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.ContentInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CrlBag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.DHParameter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptionScheme] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.IssuerAndSerialNumber] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.KeyDerivationFunc] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.MacData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PbeParameter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PbeS2Parameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pbkdf2Params] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pbmac1Params] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pfx] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.Pkcs12PbeParams] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PkcsObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsaesOaepParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsaPrivateKeyStructure] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.SafeBag] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.SignedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.SignerInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Oiw.ElGamalParameter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Oiw.OiwObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.BasicOcspResponse] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertStatus] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CrlID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.OcspObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.OcspRequest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.OcspResponse] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.OcspResponseStatus] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.Request] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponderID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponseBytes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ResponseData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.RevokedInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.ServiceLocator] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.Signature] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.SingleResponse] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.TbsRequest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ntt.NttObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Nsri.NsriObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Nist.KMacWithShake128Params] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Nist.KMacWithShake256Params] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Nist.NistNamedCurves] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Nist.NistObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Mozilla.PublicKeyAndChallenge] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Mozilla.SignedPublicKeyAndChallenge] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Misc.IdeaCbcPar] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Misc.MiscObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Misc.NetscapeCertType] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Misc.NetscapeRevocationUrl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Misc.VerisignCzagExtension] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Microsoft.MicrosoftObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Kisa.KisaObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.IsisMttObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.AdditionalInformationSyntax] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.Admissions] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.AdmissionSyntax] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.MonetaryLimit] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.NamingAuthority] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.ProfessionInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.X509.Restriction] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.CertHash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.IsisMtt.Ocsp.RequestedCertificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Isara.IsaraObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.CscaMasterList] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.DataGroupHash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.IcaoObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.LdsSecurityObject] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.LdsVersionInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Iana.IanaObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Gnu.GnuObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.GM.GMNamedCurves] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.GM.GMObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.ContentHints] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.ContentIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.EssCertID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.EssCertIDv2] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.SigningCertificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ess.SigningCertificateV2] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CertificateValues] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CommitmentTypeIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CommitmentTypeIndication] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CommitmentTypeQualifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CompleteCertificateRefs] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CompleteRevocationRefs] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlListID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlOcspRef] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.CrlValidatedID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.EsfAttributes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspListID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OcspResponsesID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherCertID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherHashAlgAndValue] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherRevRefs] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherRevVals] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.OtherSigningCertificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.RevocationValues] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignaturePolicyId] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignaturePolicyIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignerAttribute] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SignerLocation] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Esf.SigPolicyQualifierInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.EdEC.EdECObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Eac.EacObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.CryptoProObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost28147Parameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost3410NamedParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.CryptoPro.Gost3410PublicKeyAlgParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cryptlib.CryptlibObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.AttributeTypeAndValue] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertId] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertReqMessages] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertReqMsg] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertRequest] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.Controls] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CrmfObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncKeyWithID] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedValue] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.OptionalValidity] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PkiPublicationInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PKMacValue] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoPrivKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoSigningKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.PopoSigningKeyInput] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.ProofOfPossession] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.Rfc4211Asn1Utilities] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.SinglePubInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.SubsequentMessage] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attribute] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attributes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AttributeTableExtensions] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AuthenticatedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AuthenticatedDataParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.AuthEnvelopedDataParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CcmParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CmsAlgorithmProtection] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CmsAttributes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CmsObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CompressedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.CompressedDataParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfoParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedContentInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedContentInfoParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EncryptedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EnvelopedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.EnvelopedDataParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Evidence] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.GcmParameters] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.IssuerAndSerialNumber] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KekIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KekRecipientInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KemRecipientInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyAgreeRecipientInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KeyTransRecipientInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.MetaData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherKeyAttribute] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherRecipientInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OtherRevocationInfoFormat] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.PasswordRecipientInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientEncryptedKey] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.RecipientKeyIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ScvpReqRes] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignedDataParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerIdentifier] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.SignerInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Time] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampAndCrl] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampedData] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampedDataParser] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.TimeStampTokenEvidence] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Ecc.MQVuserKeyingMaterial] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CAKeyUpdAnnContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertAnnContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertConfirmContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertifiedKeyPair] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertOrEncCert] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertRepMessage] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertReqTemplateContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertResponse] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CertStatus] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.Challenge] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpCertificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CmpObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlAnnContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlSource] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.CrlStatus] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.DhbmParameter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.ErrorMsgContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.GenMsgContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.GenRepContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KemBMParameter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KemCiphertextInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KemOtherInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.KeyRecRepContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.NestedMessageContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.OobCert] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.OobCertHash] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PbmParameter] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiBody] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiConfirmContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFailureInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiFreeText] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeader] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiMessage] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiMessages] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatus] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusEncodable] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PollRepContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PollReqContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PopoDecKeyChallContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PopoDecKeyRespContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.ProtectedPart] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevAnnContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevDetails] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevRepContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevRepContentBuilder] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RevReqContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.RootCaKeyUpdateContent] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Bsi.BsiObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BC.BCObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.BC.LinkedCertificate] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Anssi.AnssiObjectIdentifiers] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[ZrZYFo6bYXYM71YyLSDK] m5tn1KmT] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[ZrZYFo6bYXYM71YyLSDK] Loom] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[ZrZYFo6bYXYM71YyLSDK] pXJcQ90q] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.Timer] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[ZrZYFo6bYXYM71YyLSDK] UnityTimer.TimerExtensions] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[SDK_IAP] jyj0EesQ] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[SDK_IAP] SDK_IAP.iiYPpatD] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[SDK_IAP] SDK_IAP.Hnpdo984] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[SDK_IAP] SDK_IAP.P4S4xyJ1] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[SDK_IAP] SDK_IAP.5JLe07NR] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[SDK_IAP] SDK_IAP.b4eGWFfo] : +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[SDK_IAP] SDK_IAP.bxoh8bRe] : [Info][OPS.OBF][OnFindMemberNames_Assemblies] Process component Class - Obfuscation -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] <>f__AnonymousType0`11] : h`11 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] <>f__AnonymousType1`1] : j`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] <>f__AnonymousType2`2] : k`2 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] Microsoft.CodeAnalysis.EmbeddedAttribute] : m -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] System.Runtime.CompilerServices.NullableAttribute] : n -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] System.Runtime.CompilerServices.NullableContextAttribute] : o -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/DownloadTask] : p -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/MaterialPool] : q -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass0_0] : ba -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass32_0] : bb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass33_0] : bc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass34_0] : bd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass39_0] : be -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass42_0] : bf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass42_1] : bh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass44_0] : bi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass4_0] : bj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass4_1] : bk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__26] : bl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__43] : bm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__2] : bn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__8] : bo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__41] : bp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__27] : bq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__23] : br -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__24] : bs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__25] : bt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__31] : bu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__29] : bv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__30] : bw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper] : bx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataMgr/<>c__DisplayClass3_0`1] : by`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataMgr] : bz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ConsoleProDebug] : ca -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] CommonExpand] : cc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FXPool`1] : cd`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MD5Kit] : ce -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoPlayerPool] : cf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeManager/<>c] : cg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeManager/<>c__DisplayClass15_0] : ci -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeManager/<>c__DisplayClass17_0] : cj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeManager/<>c__DisplayClass2_0] : ck -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeManager/<>c__DisplayClass3_0] : cl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeManager] : cm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] EventTrackMapping] : cn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeData] : co -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] orderState] : cp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] orderData] : cq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BIEvent] : cr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatSendClass] : cs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatetClass] : ct -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatHelper/<>c] : cu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatHelper/<>c__DisplayClass5_0] : cv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatHelper/<>c__DisplayClass5_1] : cw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatHelper/d__5] : cx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatItem] : cy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatText] : cz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ReplyItem] : da -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ReplyContent] : db -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatType] : dc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] CreatAnimalCard/<>c] : dd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] CreatAnimalCard/<>c__DisplayClass13_0] : de -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] CreatAnimalCard/<>c__DisplayClass13_1] : df -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataKeys] : dg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataMsg] : dh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AppMsg] : di -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MainThreadMsg] : dj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] LoveLegendRoot/<>c] : dk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayManager/<>c] : dl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayManager/<>c__DisplayClass14_0] : dm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayManager/<>c__DisplayClass14_1] : dn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayManager/<>c__DisplayClass5_0] : do -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayManager/d__11] : dp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayManager] : dq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] maxOrder] : dr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ApplePayClass] : ds -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayClass] : dt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] PayerData] : du -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MemoryManager] : dv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SettleUp] : dw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] PlayLog] : dx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] Card_item] : dy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SuccessData] : dz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] rewardState] : ea -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GiftData] : eb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GiftType] : ec -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VipDay] : ed -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] OpenBrowser] : ee -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] PayType] : ef -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] PurchasingManager/<>c] : eg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass9_0] : eh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] PurchasingManager] : ei -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SaveingPotClass] : ej -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SaveingPotTaskStatus] : ek -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SaveingPotHelper] : el -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] RewardSystem/<>c__DisplayClass10_0] : em -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] RewardSystem/<>c__DisplayClass10_1] : en -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] RewardSystem] : eo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] Base64Kit] : ep -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SerializeUtil/<>c] : eq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SerializeUtil] : er -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] Language] : es -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ADEventTrack/Property] : et -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ADEventTrack] : eu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] HallBehaviorTrack/Property] : ev -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] HallBehaviorTrack] : ew -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ADTrack/Property] : ex -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ADTrack] : ey -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] WwBehaviorTrack/Property] : ez -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] WwBehaviorTrack] : fa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoBehaviorTrack/Property] : fb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoBehaviorTrack] : fc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ThreeDaysGiftEventTrack/Property] : fd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ThreeDaysGiftEventTrack] : fe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AfPurchaseTrack/Property] : ff -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AfPurchaseTrack] : fg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoLoadTask] : fh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoLoadScheduler/<>c__DisplayClass3_0] : fi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoLoadScheduler/<>c__DisplayClass5_0] : fj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoLoadScheduler/d__5] : fk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoLoadScheduler] : fl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GLoaderExtensions] : fm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GMTool/<>c__DisplayClass22_0] : fn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GUIType] : fo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GMToolItem] : fp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] Keychain] : fq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ConnectionMode] : fr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Serializable] : fs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3NonSerializable] : ft -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3AutoSave/<>c] : fu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3AutoSaveMgr/LoadEvent] : fv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3AutoSaveMgr/SaveEvent] : fw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3AutoSaveMgr/<>c] : fy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/Location] : fz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/Directory] : ga -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/EncryptionType] : gb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/CompressionType] : gc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/Format] : gd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/ReferenceMode] : ge -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/ImageType] : gf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3] : gg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3File] : gh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Spreadsheet/Index] : gi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Spreadsheet] : gj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Reader/ES3ReaderPropertyEnumerator/d__2] : gk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Reader/ES3ReaderPropertyEnumerator] : gl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Reader/ES3ReaderRawEnumerator/d__2] : gm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Reader/ES3ReaderRawEnumerator] : gn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Reader] : go -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3XMLReader] : gq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3SlotManager/<>c] : gr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Ref] : gs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__53] : gt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__44] : gu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__45] : gv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__61] : gw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__70] : gx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__60] : gy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__62] : gz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__20] : ha -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__33] : hb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud] : hc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Writer] : hd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3XMLWriter] : he -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GoogleResponseData] : hf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GooglePayCheckInfo] : hg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/ProductConfig] : hh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/TimeAwareRetryPolicy] : hi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/SubscriptionInfo] : hj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c] : hk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass100_0] : hl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass101_0] : hm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass102_0] : hn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass61_0] : ho -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass61_1] : hp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass72_0] : hq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass86_0] : hr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass92_0] : hs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass95_0] : ht -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass97_0] : hu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass99_0] : hv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__56] : hw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__86] : hx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__97] : hy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__75] : hz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__111] : ia -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__83] : ib -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__73] : ic -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__64] : ie -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__55] : if -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__77] : ig -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__84] : ih -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__114] : ii -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__94] : ij -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__110] : ik -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__82] : il -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__117] : im -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__95] : in -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__85] : io -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__81] : ip -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__96] : iq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__72] : ir -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ResponseData] : is -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] Body] : it -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] WebSocketData] : iu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] WebSocketTools] : iv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : iw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : ix -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] UNSDK.SdkConfigMgr/<>c] : iy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] UNSDK.AssetTools] : iz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ES3Prefab] : ja -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ES3PrefabInternal] : jb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES32DArrayType] : jc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES33DArrayType] : jd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ArrayType] : je -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3CollectionType] : jf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ConcurrentDictionaryType] : jg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3DictionaryType] : jh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3HashSetType] : ji -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ListType] : jj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3NativeArrayType/<>c] : jk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3NativeArrayType] : jl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3QueueType] : jm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3StackType/<>c] : jn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3StackType] : jo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3TupleType] : jp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ArrayList] : jq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3UserType_ArrayListArray] : jr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ComponentType] : js -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ObjectType] : jt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ScriptableObjectType] : ju -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type] : jv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3PropertiesAttribute] : jw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3UnityObjectType] : jx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BigInteger] : jy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BigIntegerArray] : jz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Type] : ka -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_bool] : kb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_boolArray] : kc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_byte] : kd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_byteArray] : ke -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_char] : kf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_charArray] : kg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_DateTime] : kh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_DateTimeArray] : ki -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_decimal] : kj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_decimalArray] : kk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_double] : kl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_doubleArray] : km -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_enum] : kn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ES3Ref] : ko -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ES3RefArray] : kp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ES3RefDictionary] : kq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_float] : kr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_floatArray] : ks -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_int] : kt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_intArray] : ku -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_IntPtr] : kv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_IntPtrArray] : kw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_long] : kx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_longArray] : ky -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_sbyte] : kz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_sbyteArray] : la -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_short] : lb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_shortArray] : lc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_string] : ld -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_StringArray] : le -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_uint] : lf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_uintArray] : lg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_UIntPtr] : lh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_UIntPtrArray] : li -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ulong] : lj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ulongArray] : lk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ushort] : ll -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ushortArray] : lm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ReflectedComponentType] : ln -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ReflectedObjectType] : lo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ReflectedScriptableObjectType] : lp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ReflectedType] : lq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ReflectedUnityObjectType] : lr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ReflectedValueType] : ls -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BoxCollider] : lt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BoxCollider2D] : lu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Camera] : lv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_CapsuleCollider] : lw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_EventSystem] : lx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Image] : ly -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ImageArray] : lz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MeshCollider] : ma -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MeshColliderArray] : mb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MeshFilter] : mc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MeshFilterArray] : md -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MeshRenderer] : me -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MeshRendererArray] : mf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ParticleSystem] : mg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_PolygonCollider2D] : mh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_PolygonCollider2DArray] : mi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RawImage] : mj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RawImageArray] : mk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Rigidbody] : ml -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3UserType_RigidbodyArray] : mm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SphereCollider] : mn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Text] : mo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Transform] : mp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_AnimationCurve] : mq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_AudioClip] : mr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_AudioClipArray] : ms -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BoneWeight] : mt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BoneWeightArray] : mu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Bounds] : mv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BoundsArray] : mw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Burst] : mx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BurstArray] : my -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_CollisionModule] : mz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Color] : na -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ColorArray] : nb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Color32] : nc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Color32Array] : nd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ColorBySpeedModule] : ne -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ColorOverLifetimeModule] : nf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_EmissionModule] : ng -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ExternalForcesModule] : nh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Flare] : ni -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_FlareArray] : nj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Font] : nk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_FontArray] : nl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ForceOverLifetimeModule] : nm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GameObject/<>c] : nn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GameObject/<>c__DisplayClass8_0] : no -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GameObject] : np -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GameObjectArray] : nq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Gradient] : nr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GradientAlphaKey] : ns -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GradientAlphaKeyArray] : nt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GradientColorKey] : nu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GradientColorKeyArray] : nv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Guid] : nw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GuidArray] : nx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_InheritVelocityModule] : ny -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Keyframe] : nz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_KeyframeArray] : oa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_LayerMask] : ob -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Light] : oc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_LightsModule] : od -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_LimitVelocityOverLifetimeModule] : oe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MainModule] : of -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Material] : og -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MaterialArray] : oh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Matrix4x4] : oi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Matrix4x4Array] : oj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Mesh] : ok -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MinMaxCurve] : ol -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MinMaxGradient] : om -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_NoiseModule] : on -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_PhysicMaterial] : oo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_PhysicMaterialArray] : op -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_PhysicsMaterial2D] : oq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_PhysicsMaterial2DArray] : or -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Quaternion] : os -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_QuaternionArray] : ot -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Rect] : ou -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RectTransform] : ov -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RenderTexture] : ow -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RenderTextureArray] : ox -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RotationBySpeedModule] : oy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RotationOverLifetimeModule] : oz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Shader] : pa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ShaderArray] : pb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ShapeModule] : pc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SizeBySpeedModule] : pd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SizeOverLifetimeModule] : pe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SkinnedMeshRenderer] : pf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SkinnedMeshRendererArray] : pg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Sprite] : ph -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SpriteRenderer] : pi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SpriteRendererArray] : pj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SubEmittersModule] : pk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Texture] : pl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_TextureArray] : pm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Texture2D] : pn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Texture2DArray] : po -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_TextureSheetAnimationModule] : pp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_TrailModule] : pq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_TriggerModule] : pr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector2] : ps -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector2Array] : pt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector2Int] : pu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector2IntArray] : pv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector3] : pw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector3Array] : pz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector3Int] : qa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector3IntArray] : qb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector4] : qc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector4Array] : qd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_VelocityOverLifetimeModule] : qe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Debug] : qf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Hash] : qg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.EncryptionAlgorithm] : qh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.AESEncryptionAlgorithm] : qi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.UnbufferedCryptoStream] : qj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Data] : qk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3IO/ES3FileMode] : ql -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3IO] : qm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3ReferenceMgrBase/<>c] : qn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3ReferenceMgrBase/<>c__DisplayClass32_0] : qo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3ReferenceMgrBase/<>c__DisplayClass33_0] : qp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Reflection/ES3ReflectedMember] : qq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Reflection/ES3ReflectedMethod] : qr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Reflection/<>c] : qs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Reflection/<>c__DisplayClass27_0] : qt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Reflection/<>c__DisplayClass46_0] : qu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Reflection] : qv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3SerializableDictionary`2/<>c] : qw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3JSONReader] : qx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3FileMode] : qy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3FileStream] : qz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3PlayerPrefsStream] : ra -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3ResourcesStream] : rb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Stream] : rc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Member] : rd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3TypeMgr] : re -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3WebClass/d__19] : rf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3WebClass] : rg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3SpecialByte] : rh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Binary] : ri -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3CacheWriter] : rj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3JSONWriter] : rk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.H5RefreshTimes] : rl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.H5SendClass] : rm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginModel] : rn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.OrderModel] : ro -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.PayOutUserInfoData] : rp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.PayerData] : rq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.OrderData] : rr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.OrderState] : rs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RequestLoginData] : rt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RequestTokenData] : ru -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RequestResultData] : rv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RequestSavePlayData] : rw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RequestStageData] : rx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RespDebugData] : ry -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RespLoginFunnelData] : rz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.TrackData] : sa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetKit/<>c] : sb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetKit/<>c__DisplayClass3_0] : sc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetKit/<>c__DisplayClass4_0] : sd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.ErrorLogKit/<>c__DisplayClass5_0] : se -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.ErrorLogKit] : sf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.HeartbeatKit/d__7] : sg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginKit/<>c__DisplayClass10_0] : sh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginKit/<>c__DisplayClass9_0] : si -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginKit/d__12] : sj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginKit/d__11] : sl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginKit/d__10] : sm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetGmTool/<>c] : sn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.TrackEvent] : so -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.TrackKit/<>c__DisplayClass3_0] : sp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.TrackKit/d__4] : sq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.TrackKit] : sr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginFunnelEventType] : ss -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.TrackProperty] : st -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass0_0] : su -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass2_0] : sv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass3_0] : sw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass4_0`1] : sx`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass5_0`1] : sy`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass6_0`1] : sz`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass7_0`1] : ta`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass8_0] : tb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi] : tc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.ConnectionStatus] : td -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetChecker/<>c] : te -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetChecker/d__21] : tf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetChecker/d__22] : tg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetChecker/d__23] : th -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetChecker/d__24] : ti -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetChecker/d__16] : tj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/<>c] : tk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/<>c__DisplayClass14_0`1] : tl`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/<>c__DisplayClass16_0`1] : tm`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/<>c__DisplayClass16_1`1] : tn`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/d__14`1] : tp`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/d__16`1] : tq`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/d__17`1] : tr`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.ServerClock] : tt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/ReauthenticateDelegate] : tu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/RefreshTokenDelegate] : tv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/<>c__DisplayClass23_0] : tw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/<>c__DisplayClass25_0] : tx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/<>c__DisplayClass26_0] : ty -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/d__23] : tz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/d__26] : ua -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/d__25] : ub -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/d__24] : uc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCoreModel] : ud -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.ResponseData`1] : ue`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.RequestTokenData] : uf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.WebSocketEvent] : ug -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.WebSocketService/d__23] : uh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.WebSocketService/d__10] : uj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.WebSocketService/d__8] : uk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.WebSocketService/d__6] : ul -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.WebSocketService/d__28] : um -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownData] : un -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownTextState] : uo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownDataMgr] : up -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownConvert/<>c] : uq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownConvert/<>c__DisplayClass1_0] : ur -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownConvert] : us -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownKit/<>c__DisplayClass6_0] : ut -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownKit/d__2] : uu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayData] : uw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GoogleCheckData] : ux -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayCancelInfo] : uy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GoogleSubscribeData] : uz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GoogleSubscribeDataHistory] : va -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayBackType] : vb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass20_0] : vc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass21_0] : vd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass22_0] : ve -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass23_0] : vf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass28_0] : vg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass39_0] : vh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass46_0] : vi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/d__19] : vj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/d__38] : vk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/d__30] : vl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayNet/<>c__DisplayClass0_0`1] : vm`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayNet/<>c__DisplayClass1_0`1] : vn`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayNet/<>c__DisplayClass2_0`1] : vp`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayNet/<>c__DisplayClass3_0`1] : vq`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayNet/<>c__DisplayClass4_0`1] : vr`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayNet] : vs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.PayProductConfig] : vt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.DataStorage.DataKeyInfo] : vu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.DataStorage.DataKeyDic] : vv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.DataStorage.DataManager/<>c] : vw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.DataStorage.DataManager/d__13] : vx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.DataStorage.DataStorage`1] : vy`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigDataManager] : vz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigFileManager/<>c__DisplayClass14_0] : wa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigFileManager/<>c__DisplayClass15_0] : wb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigFileManager/<>c__DisplayClass16_0] : wc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigFileManager/<>c__DisplayClass17_0] : wd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigFileManager] : we -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigLoaderState] : wf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigInitOptions] : wg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.FileNetworkManager/<>c] : wh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.FileNetworkManager/d__8] : wi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.FileNetworkManager/d__9] : wj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.FileNetworkManager/d__11] : wk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigKeyAttribute] : wl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigParser/<>c] : wm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigParser] : wn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ParseConfigOptions] : wo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.ConfigManager] : wp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Interface.IWeighted] : wq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.Base64Helper] : wr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.CommonUtils] : ws -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.Cryptor] : wt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.DeviceHelper] : wu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.Log] : wv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.ModuleLogger] : ww -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.LogColors] : wx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.MD5Helper] : wy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.ModuleVersion] : wz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.RandomHelper/<>c__1`1] : xa`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.RandomHelper] : xb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.SerializeHelper/<>c] : xc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.SerializeHelper] : xd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.TimeHelper] : xe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.ArrayExtensions] : xf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.EnumExtensions] : xg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.ListExtensions] : xh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.ObjectExtensions] : xi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.ObjectExtensionsTest/Color] : xj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.ObjectExtensionsTest/Person] : xk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.ObjectExtensionsTest] : xl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.StringExtensions] : xm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FutureCore.Base64EncodeUtil] : xn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MiniJSON.Json/Parser/TOKEN] : xo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MiniJSON.Json/Parser] : xp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MiniJSON.Json/Serializer] : xq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MiniJSON.Json] : xr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BlendMode] : xs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BlendModeUtils/BlendFactor] : xt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BlendModeUtils] : xu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Container/DescendantsEnumerator] : xv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Container] : xw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.DisplayObject/PaintingInfo] : xx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.DisplayObject/Flags] : xz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.DisplayObject] : ya -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GoWrapper/RendererInfo] : yb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GoWrapper/<>c] : yc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GoWrapper] : yd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ColliderHitTest] : ye -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.HitTestContext] : yf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.HitTestMode] : yg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IHitTest] : yh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.MeshColliderHitTest] : yi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PixelHitTestData] : yj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PixelHitTest] : yk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RectHitTest] : yl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ShapeHitTest] : ym -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Image] : yn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.MaterialFlags] : yo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.MaterialManager/MaterialRef] : yp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.MaterialManager] : yq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.CompositeMesh] : yr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EllipseMesh] : ys -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FillMesh] : yt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.LineMesh] : yu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IMeshFactory] : yv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PlaneMesh] : yw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PolygonMesh] : yx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RectMesh] : yy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RegularPolygonMesh] : yz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RoundedRectMesh] : za -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.StraightLineMesh] : zb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.VertexBuffer] : zc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.MovieClip/Frame] : zd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.MovieClip] : ze -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.NAudioClip] : zf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.NGraphics/VertexMatrix] : zg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.NGraphics/StencilEraser] : zh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.NGraphics] : zi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.DestroyMethod] : zj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.NTexture] : zk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ShaderConfig/GetFunction] : zl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ShaderConfig] : zm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Shape] : zn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Stage/CursorDef] : zo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Stage/<>c] : zp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Stage] : zq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TouchInfo] : zr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Stats] : zs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BaseFont] : zt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BitmapFont/BMGlyph] : zu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BitmapFont] : zv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.DynamicFont] : zw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Emoji] : zx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FontManager] : zy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IKeyboard] : zz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.InputTextField] : baa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextInputHistory] : bab -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RichTextField] : bac -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RTLSupport/CharState] : bad -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RTLSupport/DirectionType] : bae -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RTLSupport] : baf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.SelectionShape] : bag -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextField/LineInfo] : bah -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextField/LineCharInfo] : bai -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextField/CharPosition] : baj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextField] : bak -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextFormat/SpecialStyle] : bal -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextFormat] : bam -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TouchScreenKeyboard] : ban -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TypingEffect/d__19] : bao -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TypingEffect] : bap -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UpdateContext/ClipInfo] : baq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UpdateContext] : bar -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EventBridge] : bas -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EventContext] : bat -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EventCallback0] : bau -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EventCallback1] : bav -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EventDispatcher] : baw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EventListener] : bax -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IEventDispatcher] : bay -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.InputEvent] : baz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BlurFilter] : bba -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ColorFilter] : bbb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IFilter] : bbc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.LongPressGesture] : bbd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PinchGesture] : bbe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RotationGesture] : bbf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.SwipeGesture] : bbg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EaseManager/Bounce] : bbh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EaseManager] : bbi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EaseType] : bbj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.CustomEase/<>c] : bbk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.CustomEase] : bbl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GPathPoint/CurveType] : bbm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GPathPoint] : bbn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GPath/Segment] : bbo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GPath] : bbp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTween] : bbq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTweenCallback] : bbr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTweenCallback1] : bbs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ITweenListener] : bbt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTweener] : bbu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TweenManager] : bbv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TweenPropType] : bbw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TweenPropTypeUtils] : bbx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TweenValue] : bby -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ChangePageAction] : bbz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ControllerAction/ActionType] : bca -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ControllerAction] : bcb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PlayTransitionAction] : bcc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.AsyncCreationHelper/DisplayListItem] : bcd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.AsyncCreationHelper/<_CreateObject>d__1] : bce -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.AsyncCreationHelper] : bcf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Controller] : bcg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.DragDropManager] : bch -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EMRenderTarget] : bci -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EMRenderSupport] : bcj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PackageItemType] : bck -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ObjectType] : bcl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.AlignType] : bcm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.VertAlignType] : bcn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.OverflowType] : bco -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FillType] : bcp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.AutoSizeType] : bcq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ScrollType] : bcr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ScrollBarDisplayType] : bcs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RelationType] : bct -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ListLayoutType] : bcu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ListSelectionMode] : bcv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ProgressTitleType] : bcw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ButtonMode] : bcx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TransitionActionType] : bcy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GroupLayoutType] : bcz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ChildrenRenderOrder] : bda -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PopupDirection] : bdb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FlipType] : bdc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FillMethod] : bdd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.OriginHorizontal] : bde -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.OriginVertical] : bdf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Origin90] : bdg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Origin180] : bdh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Origin360] : bdi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FocusRule] : bdj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GButton/<>c__DisplayClass72_0] : bdk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GButton] : bdl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GComboBox] : bdm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GComponent/<>c__DisplayClass129_0] : bdn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GComponent] : bdo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearAnimationValue] : bdp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearAnimation] : bdq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearBase] : bdr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearTweenConfig] : bds -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearColorValue] : bdt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearColor] : bdu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearDisplay] : bdv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearDisplay2] : bdw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearFontSize] : bdx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearIcon] : bdy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearLookValue] : bdz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearLook] : bea -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearSizeValue] : beb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearSize] : bec -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearText] : bed -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearXYValue] : bee -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearXY] : bef -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IAnimationGear] : beg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IColorGear] : beh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ITextColorGear] : bei -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GGraph] : bej -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GGroup] : bek -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GImage] : bel -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GLabel/<>c__DisplayClass26_0] : bem -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GLabel] : ben -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ListItemRenderer] : beo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ListItemProvider] : bep -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GList/ItemInfo] : beq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GList] : ber -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GLoader] : bes -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GLoader3D] : bet -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GMovieClip] : beu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GObject] : bev -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GObjectPool/InitCallbackDelegate] : bew -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GObjectPool] : bex -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GProgressBar/<>c__DisplayClass37_0] : bey -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GProgressBar] : bez -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GRichTextField] : bfa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GRoot] : bfb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GScrollBar] : bfc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GSlider] : bfd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTextField] : bfe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTextInput] : bff -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTree/TreeNodeRenderDelegate] : bfg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTree/TreeNodeWillExpandDelegate] : bfh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTree] : bfi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTreeNode] : bfj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UILoadCallback] : bfk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IUISource] : bfl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Margin] : bfm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PackageItem] : bfn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PopupMenu] : bfo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RelationDef] : bfp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RelationItem] : bfq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Relations] : bfr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ScrollPane] : bfs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PlayCompleteCallback] : bft -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TransitionHook] : bfu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Transition/<>c__DisplayClass78_0] : bfv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Transition] : bfw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TransitionItem] : bfx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TweenConfig] : bfy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue_Visible] : bfz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue_Animation] : bga -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue_Sound] : bgb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue_Transition] : bgc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue_Shake] : bgd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue_Text] : bge -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue] : bgf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TranslationHelper] : bgg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TreeNode] : bgh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TreeView/TreeNodeCreateCellDelegate] : bgi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TreeView/TreeNodeRenderDelegate] : bgj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TreeView/TreeNodeWillExpandDelegate] : bgk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TreeView] : bgl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIConfig/ConfigKey] : bgm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIConfig/ConfigValue] : bgn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIConfig/SoundLoader] : bgo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIContentScaler/ScaleMode] : bgp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIContentScaler/ScreenMatchMode] : bgq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIObjectFactory/GComponentCreator] : bgr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIObjectFactory/GLoaderCreator] : bgs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIObjectFactory/<>c__DisplayClass4_0] : bgt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIObjectFactory/<>c__DisplayClass6_0] : bgu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIObjectFactory] : bgv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage/LoadResource] : bgw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage/LoadResourceAsync] : bgx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage/CreateObjectCallback] : bgy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage/AtlasSprite] : bgz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage/<>c] : bha -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage/<>c__DisplayClass93_0] : bhb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage] : bhc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FitScreen] : bhd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Window] : bhe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TimerCallback] : bhf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Timers] : bhg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Anymous_T] : bhh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.ByteBuffer] : bhi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlButton] : bhj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlElementType] : bhk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlElement] : bhl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlImage] : bhm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlInput] : bhn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlLink] : bho -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlPageContext] : bhp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlParseOptions] : bhq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlParser/TextFormat2] : bhr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlParser] : bhs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlSelect] : bht -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.IHtmlObject] : bhu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.IHtmlPageContext] : bhv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.ToolSet] : bhw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.UBBParser/TagHandler] : bhx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.UBBParser] : bhy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XML] : bhz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XMLTagType] : bia -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XMLIterator] : bib -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XMLList/Enumerator] : bic -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XMLList/<>c__DisplayClass14_0] : bid -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XMLList] : bie -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XMLUtils] : bif -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.ZipReader/ZipEntry] : big -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.ZipReader] : bih -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Toast_23.com_net_tips] : bii -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Toast_23.com_tips] : bij -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Toast_23.com_unclok_tips] : bik -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Toast_23.com_word] : bil -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Toast_23.ZM_Toast_23Binder] : bim -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Novice_21.com_guide] : bin -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Novice_21.ZM_Novice_21Binder] : bio -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Loading_25.com_loading] : bip -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Loading_25.com_pb] : biq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Loading_25.ZM_Loading_25Binder] : bir -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Img_02.com_loadingBg] : bis -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Img_02.ZM_Img_02Binder] : bit -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Fx_502.com_FX] : biu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Fx_502.ZM_Fx_502Binder] : biv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Vip.btn_subscirbe] : biw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Vip.btn_vipType] : bix -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Vip.com_vip] : biy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Vip.item_viplist] : biz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Vip.LG_VipBinder] : bja -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.btn_sub] : bjb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.com_chatUnlock] : bjc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.com_LiveUnlock] : bjd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.com_scAlbumLock] : bje -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.com_SubUnlock] : bjf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.com_unlockView] : bjg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.LG_UnlockBinder] : bjh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.btn_unlock] : bji -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.btn_unlock_ad] : bjj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.com_pic] : bjk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.com_pic_in] : bjl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.com_scAlbumPreview] : bjm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.com_scAlbums] : bjn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.com_secretDetail] : bjo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.item_scAlbumPreview] : bjp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.item_scalnums] : bjq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.LG_secretAlbumsBinder] : bjr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_LuckyGift.com_lucky] : bjs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_LuckyGift.com_pic] : bjt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_LuckyGift.LG_LuckyGiftBinder] : bju -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_live.btn_ad] : bjv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_live.com_live] : bjw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_live.com_liveDetail] : bjx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_live.item_live] : bjy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_live.LG_liveBinder] : bjz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_live.live_mask] : bka -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.btn_level] : bkb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.btn_unlock] : bkc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.com_newend] : bkd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.com_pic] : bke -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.com_unlockLevel] : bkf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.com_unlockLevelNew] : bkg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.item_unlockLevel] : bkh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.LG_EndBinder] : bki -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_albums] : bkj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_chat] : bkk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_claim] : bkl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_claim_1] : bkm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_claim_2] : bkn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_green] : bko -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_live] : bkp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_secret] : bkq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_task] : bkr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_task_pass] : bks -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_task_times] : bkt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_unlock] : bku -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_vip] : bkv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.com_loaderMask] : bkw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.com_loaderMask_circlle] : bkx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.com_loaderMask_circlle2] : bky -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.item_wheel] : bkz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.LG_CommonBinder] : bla -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.progress_end] : blb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.progress_live] : blc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.wheel] : bld -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.wheel_] : ble -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_albums.com_albums] : blf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_albums.com_albumsDetail] : blg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_albums.com_pic] : blh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_albums.item_albums] : bli -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_albums.item_albumsDetails] : blj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_albums.LG_albumsBinder] : blk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.btn_chooseItem] : bll -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.chat_head] : blm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.com_chat] : bln -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.com_chatChoose] : blo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.com_ChatNumber] : blp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.item_chatImage] : blq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.item_chatText_left] : blr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.item_chatText_right] : bls -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.LG_AIchatBinder] : blt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.G016_WB.btn_fly] : blu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.G016_WB.btn_icon] : blv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.G016_WB.btn_type] : blw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.G016_WB.com_webtop] : blx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.G016_WB.com_webview] : bly -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.G016_WB.G016_WBBinder] : blz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_jilu.bkg_jiluBinder] : bma -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_jilu.com_jilu] : bmb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_jilu.com_panel] : bmc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_jilu.com_record_item] : bmd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.btn_close] : bme -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.btn_go1] : bmf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.com_coin] : bmg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.btn_go] : bmh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.com_disc] : bmi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.com_wheel] : bmj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.ZM_Turntable_11Binder] : bmk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.btn_claim] : bml -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.btn_com] : bmm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.btn_task_tab] : bmn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.com_taskView] : bmo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.com_task_item] : bmp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.com_task_reward] : bmq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.ZM_Tasks_13Binder] : bmr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.btn_mail] : bms -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.btn_main] : bmt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.btn_options] : bmu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.btn_sign] : bmv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.com_bottom_panel] : bmw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.com_main_tab] : bmx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.ZM_Tab_19Binder] : bmy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_store_17.btn_buy] : bmz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_store_17.btn_close] : bna -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_store_17.btn_watchAd1] : bnb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_store_17.buygold_item] : bnc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_store_17.com_buygold] : bnd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_store_17.ZM_store_17Binder] : bne -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Sign_06.btn_sign] : bnf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Sign_06.btn_sign7] : bng -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Sign_06.com_sign_in] : bnh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Sign_06.ZM_Sign_06Binder] : bni -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_back_home] : bnj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_edit] : bnk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_item_head] : bnl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_menu] : bnm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_music_on_off] : bnn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_sound_on_off] : bno -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_green] : bnp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_language] : bnq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_music] : bnr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_sound] : bns -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.com_edit_name] : bnt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.com_language] : bnu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.com_person] : bnv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.com_setting] : bnw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.ZM_Setting_07Binder] : bnx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Reward_10.com_reward] : bny -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Reward_10.ZM_Reward_10Binder] : bnz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Prop_09.btn_goldBuy] : boa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Prop_09.com_choose] : bob -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Prop_09.com_prop] : boc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Prop_09.ZM_Prop_09Binder] : bod -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Privacy_24.com_privacy] : boe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Privacy_24.com_text] : bof -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Privacy_24.ZM_Privacy_24Binder] : bog -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.btn_close] : boh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.com_item_award] : boi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.com_pass_item] : boj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.progress_pass] : bok -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.btn_max_buy] : bol -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.btn_recive_gift] : bom -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.com_passunlock] : bon -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.com_pass_view] : boo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.com_pic] : bop -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.ZM_Pass_14Binder] : boq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pack_16.btn_close1] : bor -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pack_16.btn_close] : bos -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pack_16.com_passunlock] : bot -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pack_16.pack_panel] : bou -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pack_16.com_adcoming] : bov -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pack_16.ZM_Pack_16Binder] : bow -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_NetIdle_22.com_Netidle] : box -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_NetIdle_22.com_loading] : boy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_NetIdle_22.ZM_NetIdle_22Binder] : boz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Login_05.btn_space] : bpa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Login_05.com_login_page] : bpb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Login_05.com_login_privacy] : bpc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Login_05.ZM_Login_05Binder] : bpd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.btn_get] : bpe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.com_first_award] : bpf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.com_hall] : bpg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.btn_hall_head] : bph -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.btn_item_play] : bpi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.btn_level_play] : bpj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.btn_play] : bpk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.btn_task_pass] : bpl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.com_map] : bpm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.com_payloading] : bpn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.head] : bpo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.ZM_Lobby_03Binder] : bpp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.btn_add] : bpq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.btn_exit] : bpr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.btn_look_ad] : bps -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.btn_prop] : bpt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.btn_set] : bpu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.com_rewardbox] : bpv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.btn_battle] : bpw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.com_game] : bpx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.com_game_menu] : bpy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.com_open] : bpz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.com_state] : bqa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.ZM_Game_04Binder] : bqb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_GameResult_08.com_end] : bqc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_GameResult_08.ch_broad] : bqd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_GameResult_08.com_success_ch] : bqe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_GameResult_08.ZM_GameResult_08Binder] : bqf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_EMail_20.com_mail] : bqg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_EMail_20.mail_item] : bqh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_EMail_20.ZM_EMail_20Binder] : bqi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_buy1] : bqj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_curr] : bqk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_failpack] : bql -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_green1] : bqm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_noads] : bqn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_null] : bqo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_thanks] : bqp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_threeday] : bqq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_watchAd] : bqr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.com_gold] : bqs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_claim] : bqt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_claim3] : bqu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_claim4] : bqv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_head] : bqw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_max_buy] : bqx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_restore] : bqy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_shop] : bqz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.com_broadcast_new] : bra -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.com_gold2] : brb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.com_tips] : brc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.head] : brd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.ZM_Common_01Binder] : bre -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Coins_101.com_coins] : brf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Coins_101.com_coin] : brg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Coins_101.com_coinFly] : brh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Coins_101.ZM_Coins_101Binder] : bri -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.btn_buy_one] : brj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.com_addView] : brk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.btn_get] : brl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.btn_power_up] : brm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.com_addView_new] : brn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.com_addView_off] : bro -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.com_goldreward] : brp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.com_title] : brq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.ZM_AddCell_12Binder] : brr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.btn_close_three] : brs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.btn_watchAd] : brt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.com_item] : bru -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.com_three_days] : brv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.broadcast_top] : brw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.broadcast_topitem] : brx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.item_reward] : bry -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.threeDaysGiftBinder] : brz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_reward_new.com_reward_moveout] : bsa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_reward_new.com_reward_refresh] : bsb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_reward_new.com_reward_undo] : bsc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_reward_new.bkg_reward_newBinder] : bsd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_reward_new.com_reward_coin] : bse -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_reward_new.com_reward_mul] : bsf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PlayerPrefsConst] : bsg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AdTaskData] : bsh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AdTaskState] : bsi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.InviteData] : bsj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.InviteMakeupStatus] : bsk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.InviteMakeUpHistory] : bsl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.InviteRecordOrigin] : bsm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.InviteRecord] : bsn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.KeyValue] : bso -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MakeupTaskData] : bsp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MakeupTaskStatus] : bsq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UrlData] : bsr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CtrlMsg] : bss -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameMsg] : bst -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetworkMsg] : bsu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UICtrlMsg] : bsv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ADTask] : bsw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ApplePay] : bsx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BackgroundImage] : bsy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.des_key] : bsz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BoardModel] : bta -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Board] : btb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.StackedModel] : btc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Stacked] : btd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Durationtasks] : bte -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TurnOffRewards] : btf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LevelAttemptsModel] : btg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LevelAttempts] : bth -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ExchangeRate] : bti -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameConfigModel] : btj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameBoard] : btk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LargerewardNum] : btl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LevelUnlock] : btm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LevelUnlock_A] : btn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Live] : bto -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Live_A] : btp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FreeImageLibrary] : btq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ADImageLibrary] : btr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SpecialImageLibrary] : bts -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VIPImageLibrary] : btt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FreeImageLibrary_A] : btu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ADImageLibrary_A] : btv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SpecialImageLibrary_A] : btw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VIPImageLibrary_A] : btx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MakeupModel/<>c__DisplayClass0_0] : bty -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MakeupModel] : btz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Makeup] : bua -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MakeupModel_2/<>c__DisplayClass0_0] : bub -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MakeupModel_2] : buc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Makeup_2] : bud -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OnlineRewards] : bue -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassingTask] : buf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Passportrewards] : bug -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Paidcoins] : buh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Multigift] : bui -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardNum] : buj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Paidgift] : buk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbums] : bul -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbums_A] : bum -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignDailyReward] : bun -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SmallrewardNum] : buo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Turntable] : bup -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VipClub] : buq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardDisplayType] : bur -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardOrigin] : bus -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardCondition] : but -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardSingleData] : buu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardData/<>c] : buv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardData/<>c__DisplayClass9_0] : buw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardData] : bux -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardDisplayData] : buy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RespAdEventData] : buz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RespAdRevenueEventData] : bva -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RespGameTimeEventData] : bvb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ResGameConfigData] : bvc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RespDebugData] : bvd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RespLoginFunnelData] : bve -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RequestLoginData] : bvf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ResquestTokenData] : bvg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ResponseData] : bvh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RequestSavePlayData] : bvi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RequestSendEventH5Info] : bvj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ResponseSendEventH5Info] : bvk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AESForFileKit] : bvl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AssetDataBaseKit] : bvm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CommonHelper/<>c__DisplayClass10_0] : bvn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CommonHelper/<>c__DisplayClass23_0] : bvo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CommonHelper] : bvp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DownloadKit/d__6] : bvq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DownloadKit/d__4] : bvr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DownloadKit/d__3] : bvs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DownloadKit] : bvt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper/<>c] : bvu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper/<>c__DisplayClass106_0] : bvv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper/<>c__DisplayClass11_0] : bvw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper/<>c__DisplayClass12_0] : bvx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper/<>c__DisplayClass35_0] : bvy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper/<>c__DisplayClass9_0] : bvz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper] : bwa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ILoadAsset] : bwb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LegendFileKit/<>c] : bwc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LegendFileKit/<>c__DisplayClass10_0] : bwd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LegendFileKit/<>c__DisplayClass7_0] : bwe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LegendFileKit/<>c__DisplayClass8_0] : bwf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LegendFileKit] : bwg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadKit/<>c__DisplayClass12_0] : bwh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadKit/<>c__DisplayClass15_0] : bwi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadKit/<>c__DisplayClass8_0`1] : bwj`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadKit] : bwk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXManager/<>c__DisplayClass12_0`1] : bwl`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXManager/<>c__DisplayClass13_0] : bwm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Fx_Type] : bwn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallManager/<>c] : bwo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CountDownType] : bwp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CountDownKit] : bwq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GLoaderPool] : bwr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LegendConstant] : bws -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/<>c__DisplayClass19_0] : bwt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/<>c__DisplayClass27_0] : bwu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__24] : bwv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__28] : bww -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__18] : bwx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__19] : bwy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__23] : bwz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__22] : bxa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__21] : bxb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VideoTask] : bxc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CoverTask] : bxd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoMemoryManager/d__5] : bxe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoMemoryManager] : bxf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.onLoaded] : bxg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendInfo/<>c__DisplayClass23_0] : bxh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendInfo/<>c__DisplayClass28_0] : bxi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendInfo] : bxj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass11_0`1] : bxk`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass14_0] : bxl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass14_1] : bxm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass15_0] : bxn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass16_0] : bxo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass17_0] : bxp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass33_0] : bxq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass36_0`1] : bxr`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/d__15] : bxs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/d__8] : bxt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/d__11`1] : bxu`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/d__9] : bxv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/d__17] : bxw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit] : bxx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendState] : bxy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass4_0] : bxz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass5_0] : bya -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass6_0] : byb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass7_0] : byc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass7_1] : byd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass7_2] : bye -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass7_3] : byf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass7_4] : byg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass7_5] : byh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/d__5] : byi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/d__4] : byj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager] : byk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VideoPlayerHandover/<>c] : byl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VideoPlayerHandover/<>c__DisplayClass3_0] : bym -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VideoPlayerHandover] : byn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.App/<>c] : byo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.App] : byp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AsyncDealData/DealMethod] : byq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AsyncDealData] : byr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CrazyAsyKit] : bys -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseScene] : byt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseSystem] : byu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BIManager/d__13] : byv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CloudDataSaver/<>c__DisplayClass0_0] : byw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CloudDataSaver] : byx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreferencesDataReadyCtrl] : byy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AnimConst] : byz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AppConst] : bza -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AppObjConst] : bzb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AudioConst] : bzc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CameraConst] : bzd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FolderNames] : bze -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LayerMaskConst] : bzf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrefsConst] : bzg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrefsKeyConst] : bzh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ScreenConst] : bzi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UILayerConst] : bzj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VectorConst] : bzk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.YieldConst] : bzl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChangeValue`1] : bzm`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseDispatcher`3] : bzn`3 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseMainThreadDispatcher`3/MainThreadMsgClass] : bzo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AppDispatcher] : bzp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CtrlDispatcher] : bzq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DataDispatcher] : bzr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameDispatcher] : bzs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ModelDispatcher] : bzt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetworkDispatcher] : bzu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreferencesDispatcher`1] : bzv`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UICtrlDispatcher] : bzw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.StringExtend] : bzx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameObjectExtend] : bzy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainScene/<>c] : bzz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainScene/<>c__DisplayClass6_0] : caa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainScene] : cab -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseInterfaceManager`1] : cac`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.InterfaceManager] : cad -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CameraManager] : cae -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MonthType] : caf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DateTimeManager] : cag -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameIManager] : cah -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ModuleManager] : cai -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SceneManager] : caj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ManagerOfManager] : cak -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AudioManager/<>c] : cal -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AudioManager/<>c__DisplayClass25_0] : cam -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SceneSwitchManager/LoadCallBack] : can -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SceneSwitchManager/d__4] : cao -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SceneSwitchManager/d__5] : cap -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TimerTimeType] : caq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UISequenceInfo] : car -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIParentInfo] : cas -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIMgrConst] : cat -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c] : cau -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass20_0] : cav -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass21_0] : caw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass26_0] : cax -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass30_0] : cay -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass32_0] : caz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass42_0] : cba -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass43_0] : cbb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass61_0] : cbc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CtrlConst] : cbd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ModelConst] : cbe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ModuleManagerRegister] : cbf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIConst] : cbg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UICtrlConst] : cbh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AdcomingCtrl] : cbi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AdcomingModel] : cbj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AdcomingUI] : cbk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AdcomingUICtrl] : cbl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewCtrl] : cbm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewModel] : cbn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewUI/<>c__DisplayClass12_0] : cbo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewUI] : cbp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewUICtrl] : cbq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddviewnewCtrl] : cbr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddviewnewModel] : cbs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c] : cbt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c__DisplayClass10_0] : cbu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c__DisplayClass10_1] : cbv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI] : cbw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddviewnewUICtrl] : cbx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewoffCtrl] : cby -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewoffModel] : cbz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI/<>c__DisplayClass10_0] : cca -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI] : ccb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewoffUICtrl] : ccc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumDetailCtrl] : ccd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumDetailModel] : cce -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumDetailUI/<>c__DisplayClass19_0] : ccf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumDetailUI/<>c__DisplayClass19_1] : ccg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumDetailUI] : cch -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumDetailUICtrl] : cci -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlubumCtrl] : ccj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlubumModel] : cck -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlubumUI/<>c] : ccl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlubumUI/<>c__DisplayClass25_0] : ccm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlubumUI] : ccn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlubumUICtrl] : cco -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuyPropCtrl] : ccp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuyPropModel] : ccq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuyPropUI/<>c] : ccr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuyPropUI] : ccs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuyPropUICtrl] : cct -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatCtrl] : ccu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatModel] : ccv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUI/<>c] : ccw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUI] : ccx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUICtrl] : ccy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatChooseCtrl] : ccz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatChooseModel] : cda -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatChooseUI] : cdb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatChooseUICtrl] : cdc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatNumberCtrl] : cdd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatNumberModel] : cde -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatNumberUI/<>c__DisplayClass14_0] : cdf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatNumberUI] : cdg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatNumberUICtrl] : cdh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUnlockCtrl] : cdi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUnlockModel] : cdj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUnlockUI] : cdk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUnlockUICtrl] : cdl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChoosePropCtrl] : cdm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChoosePropModel] : cdn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChoosePropUI/<>c] : cdo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChoosePropUI/<>c__DisplayClass15_0] : cdp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChoosePropUI] : cdq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChoosePropUICtrl] : cdr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardCtrl] : cds -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardModel] : cdt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardUI/<>c] : cdu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardUI/<>c__DisplayClass17_0] : cdv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardUI/<>c__DisplayClass18_0] : cdw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardUI] : cdx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardUICtrl] : cdy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndCtrl] : cdz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndModel] : cea -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndUI/<>c__DisplayClass6_0] : ceb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndUI/<>c__DisplayClass6_1] : cec -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndUI/<>c__DisplayClass6_2] : ced -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndUI/<>c__DisplayClass7_0] : cee -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndUI] : cef -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FxPlayData] : ceg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndUICtrl] : ceh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameLoginCtrl] : cei -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameLoginModel] : cej -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameLoginUI] : cek -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameLoginUICtrl] : cel -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameMenuCtrl] : cem -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameMenuModel] : cen -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameMenuUI/<>c__DisplayClass12_0] : ceo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameMenuUI] : cep -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameMenuUICtrl] : ceq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultCtrl] : cer -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultModel] : ces -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultUI/<>c] : cet -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultUI/<>c__DisplayClass14_0] : ceu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultUI/<>c__DisplayClass15_0] : cev -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultUI] : cew -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultUICtrl] : cex -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GetTaskRewardCtrl] : cey -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GetTaskRewardModel] : cez -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GetTaskRewardUI/<>c] : cfa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GetTaskRewardUI] : cfb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GetTaskRewardUICtrl] : cfc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GoldRewardCtrl] : cfd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GoldRewardModel] : cfe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GoldRewardUI/<>c] : cff -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GoldRewardUI/<>c__DisplayClass15_0] : cfg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GoldRewardUI] : cfh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GoldRewardUICtrl] : cfi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GuideViewCtrl] : cfj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GuideViewModel] : cfk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GuideViewUI] : cfl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GuideViewUICtrl] : cfm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallCtrl] : cfn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallModel] : cfo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallUI/<>c] : cfp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallUI] : cfq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallUICtrl/<>c] : cfr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallUICtrl] : cfs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.JoastCtrl] : cft -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.JoastData] : cfu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.JoastModel] : cfv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.JoastUI/<>c__DisplayClass8_0] : cfw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.JoastUI] : cfx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.JoastUICtrl] : cfy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LanguageViewCtrl] : cfz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LanguageViewModel] : cga -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LanguageViewUI/<>c__DisplayClass18_0] : cgb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LanguageViewUI] : cgc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LanguageViewUICtrl] : cgd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveCtrl] : cge -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveModel] : cgf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUI/<>c__DisplayClass19_0] : cgg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUI/<>c__DisplayClass20_0] : cgh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUI] : cgi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveData] : cgj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUICtrl] : cgk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailCtrl] : cgl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailModel] : cgm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailUI/<>c__DisplayClass16_0] : cgn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailUI/<>c__DisplayClass16_1] : cgo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailUI/<>c__DisplayClass7_0] : cgp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailUI] : cgq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailUICtrl] : cgr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUnlockCtrl] : cgs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUnlockModel] : cgt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUnlockUI] : cgu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUnlockUICtrl] : cgv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadingCtrl] : cgw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadingModel] : cgx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadingUI/d__12] : cgy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadingUI] : cgz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadingUICtrl] : cha -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackCtrl] : chb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackModel] : chc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackUI/<>c] : chd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackUI/<>c__DisplayClass16_0] : che -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackUI/<>c__DisplayClass16_1] : chf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackUI/<>c__DisplayClass21_0] : chg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackUI] : chh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackUICtrl] : chi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MailViewCtrl] : chj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MailViewModel] : chk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MailViewUI] : chl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MailViewUICtrl] : chm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainTabCtrl] : chn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainTabModel] : cho -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainTabUI] : chp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainTabUICtrl] : chq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MenuCtrl] : chr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MenuModel] : chs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MenuUI/<>c] : cht -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MenuUI] : chu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MenuUICtrl] : chv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetLoadingCtrl] : chw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetLoadingModel] : chx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetLoadingUI] : chy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetLoadingUICtrl] : chz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetworkErrorTipsCtrl] : cia -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetworkErrorTipsModel] : cib -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetworkErrorTipsUI] : cic -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetworkErrorTipsUICtrl] : cid -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndCtrl] : cie -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndModel] : cif -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUI/<>c] : cig -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUI/<>c__DisplayClass14_0] : cih -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUI/<>c__DisplayClass17_0] : cii -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUI/<>c__DisplayClass17_1] : cij -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUI/<>c__DisplayClass17_2] : cik -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUI] : cil -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUICtrl] : cim -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskCtrl] : cin -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskModel] : cio -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskUI/<>c] : cip -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskUI/<>c__DisplayClass28_0] : ciq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskUI/<>c__DisplayClass29_0] : cir -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskUI/<>c__DisplayClass31_0] : cis -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskUI] : cit -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ScrollItemData] : ciu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskUICtrl] : civ -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenBgCtrl] : ciw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenBgModel] : cix -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenBgUI] : ciy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenBgUICtrl] : ciz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenGameCtrl] : cja -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenGameModel] : cjb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenGameUI/<>c__DisplayClass8_0] : cjc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenGameUI] : cjd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenGameUICtrl] : cje -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassunlockCtrl] : cjf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassunlockModel] : cjg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassunlockUI/<>c__DisplayClass10_0] : cjh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassunlockUI] : cji -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassunlockUICtrl] : cjj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewCtrl] : cjk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewModel] : cjl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewUI/<>c] : cjm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewUI/<>c__DisplayClass28_0] : cjn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewUI/<>c__DisplayClass31_0] : cjo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewUI] : cjp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewUICtrl] : cjq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PayloadingCtrl] : cjr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PayloadingModel] : cjs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PayloadingUI] : cjt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PayloadingUICtrl] : cju -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PersonViewCtrl] : cjv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PersonViewModel] : cjw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PersonalUI/<>c__DisplayClass17_0] : cjx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PersonalUI] : cjy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PersonViewUICtrl] : cjz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayCtrl] : cka -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayModel] : ckb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c] : ckc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass58_0] : ckd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass64_0] : cke -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass71_0] : ckf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass85_0] : ckg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass85_1] : ckh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass96_0] : cki -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass96_1] : ckj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass96_2] : ckk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass96_3] : ckl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass96_4] : ckm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass96_5] : ckn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI] : cko -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUICtrl] : ckp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrivacyCtrl] : ckq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrivacyModel] : ckr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrivacyUI/<>c] : cks -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrivacyUI] : ckt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrivacyUICtrl] : cku -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RecordViewCtrl] : ckv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RecordViewModel] : ckw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RecordViewUI/d__20] : ckx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RecordViewUI] : cky -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GObjectMoveFunc/<>c__DisplayClass0_0] : ckz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GObjectMoveFunc] : cla -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RecordViewUICtrl] : clb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardCtrl] : clc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardModel] : cld -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardUI/<>c] : cle -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardUI] : clf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardUICtrl] : clg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniCtrl] : clh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniModel] : cli -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniData] : clj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniUI/<>c__DisplayClass20_0] : clk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniUI/<>c__DisplayClass20_1] : cll -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniUI] : clm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniUICtrl] : cln -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardboxCtrl] : clo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardboxModel] : clp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardboxUI/<>c] : clq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardboxUI] : clr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardboxUICtrl] : cls -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardMulNewCtrl] : clt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardMulNewModel] : clu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardMulNewUI/<>c] : clv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardMulNewUI] : clw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardMulNewUICtrl] : clx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ScAlbumLockCtrl] : cly -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ScAlbumLockModel] : clz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ScAlbumLockUI] : cma -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ScAlbumLockUICtrl] : cmb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsCtrl] : cmc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsModel] : cme -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsUI/<>c__DisplayClass26_0] : cmf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsUI/<>c__DisplayClass27_0] : cmg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsUI] : cmh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumPreviewData] : cmi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockPayType] : cmj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsUICtrl] : cmk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextCtrl] : cml -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextModel] : cmm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextUI/<>c] : cmn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextUI/<>c__DisplayClass19_0] : cmo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextUI/<>c__DisplayClass21_0] : cmp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextUI] : cmq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DetailData] : cmr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextUICtrl] : cms -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretDetailCtrl] : cmt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretDetailModel] : cmu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretDetailUI/<>c__DisplayClass16_0] : cmv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretDetailUI] : cmw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretDetailUICtrl] : cmx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockCtrl] : cmy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockModel] : cmz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockUI/<>c__DisplayClass15_0] : cna -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockUI/<>c__DisplayClass15_1] : cnb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockUI/<>c__DisplayClass15_2] : cnc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockUI] : cnd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockUICtrl] : cne -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldCtrl] : cnf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldModel] : cng -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldUI/<>c] : cnh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldUI/<>c__DisplayClass15_0] : cni -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldUI/<>c__DisplayClass21_0] : cnj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldUI] : cnk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldUICtrl] : cnl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewCtrl] : cnm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewModel] : cnn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUI/<>c] : cno -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUI/<>c__DisplayClass17_0] : cnp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUI/<>c__DisplayClass17_1] : cnq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUI/<>c__DisplayClass17_2] : cnr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUI/<>c__DisplayClass19_0] : cns -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUI] : cnt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUICtrl] : cnu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SubUnlockCtrl] : cnv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SubUnlockModel] : cnw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SubUnlockUI/<>c__DisplayClass16_0] : cnx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SubUnlockUI] : cny -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SubUnlockUICtrl] : cnz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftCtrl] : coa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftModel] : cob -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftUI/<>c] : coc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftUI/<>c__DisplayClass18_0] : cod -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftUI/<>c__DisplayClass18_1] : coe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftUI/<>c__DisplayClass9_0] : cof -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftUI] : cog -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftUICtrl] : coh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TipsViewCtrl] : coi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TipsViewModel] : coj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TipsViewUI/<>c__DisplayClass12_0] : cok -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TipsViewUI] : com -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TipsViewUICtrl] : con -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelCtrl] : coo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelModel] : cop -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelUI] : coq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelUICtrl] : cor -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelNewCtrl] : cos -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelNewModel] : cot -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelNewUI/<>c__DisplayClass15_0] : cou -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelNewUI/<>c__DisplayClass16_0] : cov -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelNewUI] : cow -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Levelunlock] : cox -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelNewUICtrl] : coy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockTipsCtrl] : coz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockTipsModel] : cpa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockTipsUI] : cpb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockTipsUICtrl] : cpc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VipClubViewCtrl] : cpd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VipClubViewModel] : cpe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VipClubViewUI/<>c] : cpf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VipClubViewUI] : cpg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VipClubViewUICtrl] : cph -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.H5Ctrl] : cpi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.H5Model] : cpj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.H5UI/<>c__DisplayClass25_0] : cpk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.H5UI/<>c__DisplayClass32_0] : cpl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.H5UI] : cpm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.H5UICtrl] : cpn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WheelViewCtrl] : cpo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WheelViewModel] : cpp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WheelViewUI/<>c__DisplayClass31_0] : cpq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WheelViewUI/<>c__DisplayClass32_0] : cpr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WheelViewUI] : cps -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WheelViewUICtrl] : cpt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseCtrl] : cpu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseUICtrl] : cpv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseModel] : cpw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseUI] : cpx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SubUI] : cpy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIInfoConst] : cpz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIInfo] : cqa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UILayerType] : cqb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIGComType] : cqc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GObjectPool] : cqd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GObjectsPool] : cqe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ListPool`1] : cqf`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ObjectPool`1] : cqg`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AppManagerRegister] : cqh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ManagerRegister] : cqi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SceneManagerRegister] : cqj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManagerRegister] : cqk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SaveData] : cql -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Saveobject] : cqm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ISingleton] : cqn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Singleton`1] : cqo`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SuperApplication/<>c] : cqp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SuperApplication/d__18] : cqq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ConsumeSystem] : cqr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ConsumeVal] : cqs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameDataSystem] : cqt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WindowSystem/<>c] : cqu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WindowSystem/<>c__DisplayClass9_0] : cqv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WindowSystem] : cqw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ConfigSystem/<>c] : cqx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ConfigSystem] : cqy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoginSystem/<>c] : cqz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoginSystem] : cra -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PlayDataSystem/<>c] : crb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PlayDataSystem] : crd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Throttle] : cre -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.EventKit] : crf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GeneralKit] : crg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TaskSequence/<>c__DisplayClass7_0] : crh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TaskSequence] : cri -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TaskProcedure] : crj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NormalTimer/TimerTask] : crk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NormalTimer/TimerMode] : crl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NormalTimer/<>c] : crm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TimerTask] : crn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Timer/<>c] : cro -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TimerHelper] : crp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnitConvertUtil] : crq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DOTweenHelper] : crr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FGUIHelper] : crs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PlayerPrefsKit] : crt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Rescrypt] : cru -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c] : crv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass25_0] : crw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass26_0] : crx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MaxADKit/d__21] : cry -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MaxADKit] : crz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.IDynamicSuperProperties] : csa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsEvent/Type] : csb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsEvent] : csc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.TDFirstEvent] : csd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.TDUpdatableEvent] : cse -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.TDOverWritableEvent] : csf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.AUTO_TRACK_EVENTS] : csg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsAPI/Token] : csh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsAPI/TATimeZone] : csi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsAPI/TAMode] : csj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsAPI/NetworkType] : csk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Wrapper.DataEyeAnalyticsWrapper] : csl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_Log] : csm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON/Parser/TOKEN] : csn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON/Parser] : cso -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON/Serializer] : csp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON] : csq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_PropertiesChecker] : csr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : css -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : cst -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] SharpJson.Lexer/Token] : csu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] SharpJson.Lexer] : csv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] SharpJson.JsonDecoder] : csw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Animation] : csx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Timeline] : csy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.MixBlend] : csz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.MixDirection] : cta -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TimelineType] : ctb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IBoneTimeline] : ctc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ISlotTimeline] : ctd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.CurveTimeline] : cte -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.RotateTimeline] : ctf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TranslateTimeline] : ctg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ScaleTimeline] : cth -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ShearTimeline] : cti -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ColorTimeline] : ctj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TwoColorTimeline] : ctk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AttachmentTimeline] : ctl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.DeformTimeline] : ctm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventTimeline] : ctn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.DrawOrderTimeline] : cto -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IkConstraintTimeline] : ctp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformConstraintTimeline] : ctq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintPositionTimeline] : ctr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintSpacingTimeline] : cts -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintMixTimeline] : ctt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationState/TrackEntryDelegate] : ctu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationState/TrackEntryEventDelegate] : ctv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationState] : ctw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TrackEntry] : ctx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventQueue/EventQueueEntry] : cty -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventQueue/EventType] : ctz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventQueue] : cua -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Pool`1/IPoolable] : cub -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Pool`1] : cuc`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationStateData/AnimationPair] : cud -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationStateData/AnimationPairComparer] : cue -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationStateData] : cuf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Atlas] : cug -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Format] : cuh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TextureFilter] : cui -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TextureWrap] : cuj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AtlasPage] : cuk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AtlasRegion] : cul -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TextureLoader] : cum -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AtlasAttachmentLoader] : cun -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Attachment] : cuo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IHasRendererObject] : cup -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AttachmentLoader] : cuq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AttachmentType] : cur -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.BoundingBoxAttachment] : cus -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ClippingAttachment] : cut -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.MeshAttachment] : cuu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathAttachment] : cuv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PointAttachment] : cuw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.RegionAttachment] : cux -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.VertexAttachment] : cuy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.BlendMode] : cuz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Bone] : cva -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.BoneData] : cvb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformMode] : cvc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ConstraintData] : cvd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Event] : cve -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventData] : cvf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ExposedList`1/Enumerator] : cvg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ExposedList`1] : cvh`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IkConstraint] : cvi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IkConstraintData] : cvj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IUpdatable] : cvk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Json] : cvl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.MathUtils] : cvm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IInterpolation] : cvn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Pow] : cvo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PowOut] : cvp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraint] : cvq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintData] : cvr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PositionMode] : cvs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SpacingMode] : cvt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.RotateMode] : cvu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skeleton] : cvv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBinary/Vertices] : cvw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBinary/SkeletonInput] : cvx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBinary] : cvy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBounds] : cvz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Polygon] : cwa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonClipping] : cwb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonData] : cwc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonJson/LinkedMesh] : cwd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonJson] : cwe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skin/SkinEntry] : cwf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skin/SkinEntryComparer] : cwg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skin] : cwh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Slot] : cwi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SlotData] : cwj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformConstraint] : cwk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformConstraintData] : cwl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Triangulator] : cwm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.BoneMatrix] : cwn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SpineSkeletonExtensions] : cwo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.BlendModeMaterials/ReplacementMaterial] : cwp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.RegionlessAttachmentLoader] : cwq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility/SourceType] : cwr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility/VersionInfo] : cws -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility/CompatibilityProblemInfo] : cwt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility] : cwu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MaterialsTextureLoader] : cwv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineSpriteAtlasAsset/SavedRegionInfo] : cww -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.BoneFollower/AxisOrientation] : cwx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRootMotionBase/RootMotionInfo] : cwy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonGraphic/SkeletonRendererDelegate] : cwz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/OnClipAppliedDelegate] : cxa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/MixMode] : cxb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/ClipInfos] : cxc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/AnimationClipEqualityComparer] : cxd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/IntEqualityComparer] : cxe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator] : cxf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRenderer/SpriteMaskInteractionMaterials] : cxg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRenderer/InstructionDelegate] : cxh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRenderer/SkeletonRendererDelegate] : cxi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRenderer/<>c__DisplayClass75_0] : cxj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonGraphicCustomMaterials/AtlasMaterialOverride] : cxk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonGraphicCustomMaterials/AtlasTextureOverride] : cxl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRendererCustomMaterials/SlotMaterialOverride] : cxm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRendererCustomMaterials/AtlasMaterialOverride] : cxn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonPartsRenderer/SkeletonPartsRendererDelegate] : cxo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonUtility/SkeletonUtilityDelegate] : cxp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonUtilityBone/Mode] : cxq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonUtilityBone/UpdatePhase] : cxr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.UpdateMode] : cxs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.UpdateBonesDelegate] : cxt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.ISkeletonAnimation] : cxu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IHasSkeletonDataAsset] : cxv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.ISkeletonComponent] : cxw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IAnimationStateComponent] : cxx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IHasSkeletonRenderer] : cxy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IHasSkeletonComponent] : cxz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.DoubleBuffered`1] : cya`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshGeneratorDelegate] : cyb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshGeneratorBuffers] : cyc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshGenerator/Settings] : cyd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshGenerator] : cye -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshRendererBuffers/SmartMesh] : cyf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshRendererBuffers] : cyg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRendererInstruction] : cyh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineMesh] : cyi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SubmeshInstruction] : cyj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.BlendModeMaterialsAsset/AtlasMaterialCache] : cyk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAttributeBase] : cyl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineBone] : cym -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineSlot] : cyn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAnimation] : cyo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineEvent] : cyp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineIkConstraint] : cyq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineTransformConstraint] : cyr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpinePathConstraint] : cys -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineSkin] : cyt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAttachment/Hierarchy] : cyu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAttachment] : cyv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAtlasRegion] : cyw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonExtensions] : cyx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimation/AnimationEventTypes] : cyy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimation] : cyz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimationComplete] : cza -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimationEnd] : czb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineEvent] : czc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineTrackEntryEnd] : czd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AnimationTools.TimelineExtensions] : cze -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.AtlasUtilities/IntAndAtlasRegionKey] : czf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.AttachmentCloneExtensions] : czg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.AttachmentRegionExtensions] : czh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.SkinUtilities] : czi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.Deprecated.SlotBlendModes/MaterialTexturePair] : czj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.Deprecated.SlotBlendModes/MaterialWithRefcount] : czk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.Deprecated.SlotBlendModes/SlotMaterialTextureTuple] : czl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2/KeyCollection] : czm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2/ValueCollection] : czn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2/d__34] : czo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2] : czp`2 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionaryDebugView`2] : czq`2 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.CollectionExtensions] : czr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxCmpService] : czs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxCmpError/ErrorCode] : czt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxCmpError] : czu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxEvents/AppLovin] : czv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxEvents] : czw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdk] : czx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkAndroid/BackgroundCallbackProxy] : czy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkAndroid] : czz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/ConsentFlowUserGeography] : daa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/InitializationStatus] : dab -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/AdViewPosition] : dac -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/AdViewConfiguration] : dad -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/SdkConfiguration] : dae -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/Reward] : daf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/ErrorCode] : dag -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/MaxAdLoadState] : dah -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/AdInfo] : dai -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/WaterfallInfo/<>c] : daj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/WaterfallInfo] : dak -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/NetworkResponseInfo/<>c] : dal -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/NetworkResponseInfo] : dam -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/MediatedNetworkInfo] : dan -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/ErrorInfo] : dao -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/SafeAreaInsets] : dap -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/BannerPosition] : daq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/ConsentDialogState] : dar -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase] : das -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AdPositionExtenstion] : dat -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/Interstitial] : dau -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/AppOpen] : dav -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/Rewarded] : daw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/Banner] : dax -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/MRec] : daz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass15_0`1] : dba`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass16_0`2] : dbb`2 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass17_0`3] : dbc`3 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks] : dbd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkiOS/ALUnityBackgroundCallback] : dbe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkiOS] : dbf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkLogger] : dbg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkUtils/VersionComparisonResult] : dbh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkUtils/<>c__DisplayClass27_0] : dbi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkUtils] : dbj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSegmentCollection/MaxSegmentCollectionBuilder] : dbk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : dbl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dbm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.ThirdParty.MiniJson.Json/Parser/TOKEN] : dbn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.ThirdParty.MiniJson.Json/Parser] : dbo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.ThirdParty.MiniJson.Json/Serializer] : dbp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.ThirdParty.MiniJson.Json] : dbq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor/MaxAction] : dbr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor/<>c__DisplayClass6_0] : dbs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.WebRequestType] : dbt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.WebRequestConfig] : dbu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.WebResponse] : dbv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c] : dbw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c__DisplayClass5_0] : dbx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c__DisplayClass6_0] : dby -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/d__5] : dbz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/d__8] : dca -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest] : dcb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequestExtension/d__0] : dcc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequestExtension] : dcd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : dce -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dcf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogLogcatListener] : dcg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleAttribute] : dch -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleCustomTypeParserAttribute] : dci -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleMethodAttribute] : dcj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.CircularBuffer`1] : dck`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DynamicCircularBuffer`1] : dcl`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleMethodInfo] : dcm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogConsole/ParseFunction] : dcn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogConsole/CommandExecutedDelegate] : dco -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogConsole/<>c] : dcp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogEntry] : dcq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.QueuedDebugLogEntry] : dcr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogEntryTimestamp] : dcs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogEntryContentEqualityComparer] : dct -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogFilter] : dcu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.PopupVisibility] : dcv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogPopup/d__25] : dcw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] Microsoft.CodeAnalysis.EmbeddedAttribute] : dcx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] System.Runtime.CompilerServices.NullableAttribute] : dcy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] System.Runtime.CompilerServices.NullableContextAttribute] : dcz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFInAppEvents] : dda -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] InAppPurchaseValidationResult] : ddb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ProductPurchase] : ddc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ValidationFailureData] : ddd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionValidationResult] : dde -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionPurchase] : ddf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] CanceledStateContext] : ddg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ExternalAccountIdentifiers] : ddh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionPurchaseLineItem] : ddi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] PausedStateContext] : ddj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscribeWithGoogleInfo] : ddk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] TestPurchase] : ddl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] DeveloperInitiatedCancellation] : ddm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ReplacementCancellation] : ddn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SystemInitiatedCancellation] : ddo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] UserInitiatedCancellation] : ddp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AutoRenewingPlan] : ddq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] DeferredItemReplacement] : ddr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] OfferDetails] : dds -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] PrepaidPlan] : ddt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] CancelSurveyResult] : ddu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionItemPriceChangeDetails] : ddv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] Money] : ddw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : ddx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : ddy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json/Parser/TOKEN] : ddz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json/Parser] : dea -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json/Serializer] : deb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json] : dec -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.MediationNetwork] : ded -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.AdRevenueScheme] : dee -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.AFAdRevenueData] : deg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.AFPurchaseType] : deh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.AFPurchaseDetailsAndroid] : dei -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseDetailsIOS] : dej -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogStatus] : dek -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogResult] : del -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.AppsFlyer/unityCallBack] : dem -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.EmailCryptType] : den -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.AppsFlyerAndroid] : deo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.AppsFlyerConsent] : dep -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.AppsFlyerRequestEventArgs] : deq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.DeepLinkEventsArgs] : der -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.DeepLinkStatus] : des -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.DeepLinkError] : det -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSource] : deu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSourceStoreKit2] : dev -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.UnityPurchaseRevenueBridgeProxy] : dew -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.Store] : dex -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.AppsFlyerAutoLogPurchaseRevenueOptions] : dey -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.StoreKitVersion] : dez -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.IAppsFlyerAndroidBridge] : dfa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.IAppsFlyerConversionData] : dfb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.IAppsFlyerIOSBridge] : dfc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.IAppsFlyerNativeBridge] : dfd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseValidation] : dfe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.IAppsFlyerUserInvite] : dff -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateAndLog] : dfg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateReceipt] : dfh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : dfi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dfj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio/<>c__DisplayClass0_0] : dfk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio/<>c__DisplayClass1_0] : dfl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio/<>c__DisplayClass2_0] : dfm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio] : dfn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass0_0] : dfo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass10_0] : dfp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass1_0] : dfq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass2_0] : dfr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass3_0] : dfs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass4_0] : dft -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass5_0] : dfu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass6_0] : dfv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass7_0] : dfw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass8_0] : dfx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass9_0] : dfy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics] : dfz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass0_0] : dga -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass1_0] : dgb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass2_0] : dgc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass3_0] : dgd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass4_0] : dge -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass5_0] : dgf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass6_0] : dgg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D] : dgh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite/<>c__DisplayClass0_0] : dgi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite/<>c__DisplayClass1_0] : dgj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite/<>c__DisplayClass3_0] : dgk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite] : dgl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/Utils] : dgm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass0_0] : dgn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass10_0] : dgo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass11_0] : dgp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass12_0] : dgq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass13_0] : dgr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass14_0] : dgs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass15_0] : dgt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass16_0] : dgu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass17_0] : dgv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass18_0] : dgw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass19_0] : dgx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass1_0] : dgy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass20_0] : dgz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass21_0] : dha -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass22_0] : dhb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass23_0] : dhc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass24_0] : dhd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass25_0] : dhe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass26_0] : dhf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass27_0] : dhg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass28_0] : dhh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass29_0] : dhi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass2_0] : dhj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass30_0] : dhk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass31_0] : dhl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass32_0] : dhm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass33_0] : dhn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass34_0] : dho -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass35_0] : dhp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass36_0] : dhq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass37_0] : dhr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass38_0] : dhs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass39_0] : dht -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass3_0] : dhu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass40_0] : dhv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass4_0] : dhw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass5_0] : dhx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass7_0] : dhy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass8_0] : dhz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass9_0] : dia -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI] : dib -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/<>c__DisplayClass8_0] : dic -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/<>c__DisplayClass9_0] : did -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/d__10] : die -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/d__13] : dif -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/d__12] : dig -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/d__14] : dih -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/d__11] : dii -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/d__15] : dij -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion] : dik -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForCompletion] : dil -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForRewind] : dim -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForKill] : din -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForElapsedLoops] : dio -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForPosition] : dip -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForStart] : diq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction] : dir -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils/Physics] : dis -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils] : dit -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/ImageProperties] : diu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/VideoProperties] : div -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/PermissionType] : diw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/Permission] : dix -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/MediaType] : diy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/ImageOrientation] : diz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/PermissionCallback] : dja -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/MediaSaveCallback] : djb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/MediaPickCallback] : djc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/MediaPickMultipleCallback] : djd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass25_0] : dje -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass48_0] : djf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass49_0] : djg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass52_0] : djh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass53_0] : dji -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass56_0`1] : djj`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass58_0] : djk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass60_0] : djl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/d__60] : djm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/d__58] : djn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/d__56`1] : djo`1 -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery] : djp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : djq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : djr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGalleryNamespace.NGMediaReceiveCallbackAndroid/<>c__DisplayClass4_0] : djs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGalleryNamespace.NGMediaReceiveCallbackAndroid/<>c__DisplayClass5_0] : djt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGalleryNamespace.NGMediaReceiveCallbackAndroid] : dju -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGalleryNamespace.NGPermissionCallbackAndroid/<>c__DisplayClass3_0] : djv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGalleryNamespace.NGPermissionCallbackAndroid] : djw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : djx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : djy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenAnimation/AnimationType] : djz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenAnimation/TargetType] : dka -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenAnimationExtensions] : dkb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenProShortcuts/<>c__DisplayClass1_0] : dkc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenProShortcuts/<>c__DisplayClass2_0] : dkd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenProShortcuts] : dke -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.TMPSkewSpanMode] : dkf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass0_0] : dkg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass10_0] : dkh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass1_0] : dki -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass2_0] : dkj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass4_0] : dkk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass5_0] : dkl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass6_0] : dkm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass7_0] : dkn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass8_0] : dko -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass9_0] : dkp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText] : dkq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/CharVertices] : dkr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/CharTransform] : dks -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass32_0] : dkt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass33_0] : dku -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass34_0] : dkv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass35_0] : dkw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass37_0] : dkx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass38_0] : dky -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass39_0] : dkz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass41_0] : dla -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass43_0] : dlb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass44_0] : dlc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass46_0] : dld -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator] : dle -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] MainThreadUtil/<>c__DisplayClass9_0] : dlf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] WaitForUpdate/MainThreadAwaiter] : dlg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] WaitForUpdate/d__4] : dlh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] WaitForUpdate] : dli -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : dlj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dlk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketOpenEventHandler] : dll -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketMessageEventHandler] : dlm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketErrorEventHandler] : dln -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketCloseEventHandler] : dlo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketCloseCode] : dlp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketState] : dlq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.IWebSocket] : dlr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketHelpers] : dls -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketException] : dlt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketUnexpectedException] : dlu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketInvalidArgumentException] : dlv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketInvalidStateException] : dlw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WaitForBackgroundThread/<>c] : dlx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WaitForBackgroundThread] : dly -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket/d__37] : dlz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket/d__27] : dma -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket/d__33] : dmb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket/d__36] : dmc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket/d__32] : dmd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket] : dme -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketFactory] : dmf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] <>f__AnonymousType0`11] : o`11 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] <>f__AnonymousType1`1] : ba`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] <>f__AnonymousType2`2] : be`2 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] Microsoft.CodeAnalysis.EmbeddedAttribute] : bf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] System.Runtime.CompilerServices.NullableAttribute] : bh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] System.Runtime.CompilerServices.NullableContextAttribute] : bi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/DownloadTask] : bj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/MaterialPool] : bk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass0_0] : bm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass32_0] : bn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass33_0] : bo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass34_0] : bp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass39_0] : bq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass42_0] : br +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass42_1] : bs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass44_0] : bt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass4_0] : bu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/<>c__DisplayClass4_1] : bv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__26] : bw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__43] : bx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__2] : by +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__8] : bz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__41] : ca +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__27] : cc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__23] : cd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__24] : ce +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__25] : cf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__31] : cg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__29] : ci +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper/d__30] : cj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] TextureHelper] : ck +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataMgr/<>c__DisplayClass3_0`1] : cl`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataMgr] : cm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ConsoleProDebug] : cn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] CommonExpand] : co +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FXPool`1] : cp`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MD5Kit] : cq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoPlayerPool] : cr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeManager/<>c] : cs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeManager/<>c__DisplayClass15_0] : ct +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeManager/<>c__DisplayClass17_0] : cu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeManager/<>c__DisplayClass2_0] : cv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeManager/<>c__DisplayClass3_0] : cw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeManager] : cx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] EventTrackMapping] : cy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AdExchangeData] : cz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] orderState] : da +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] orderData] : db +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BIEvent] : dc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatSendClass] : de +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatetClass] : df +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatHelper/<>c] : dg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatHelper/<>c__DisplayClass5_0] : di +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatHelper/<>c__DisplayClass5_1] : dj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatHelper/d__5] : dk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatItem] : dl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatText] : dm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ReplyItem] : dn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ReplyContent] : do +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChatType] : dp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] CreatAnimalCard/<>c] : dq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] CreatAnimalCard/<>c__DisplayClass13_0] : dr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] CreatAnimalCard/<>c__DisplayClass13_1] : ds +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataKeys] : dt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataMsg] : du +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AppMsg] : dv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MainThreadMsg] : dw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] LoveLegendRoot/<>c] : dx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayManager/<>c] : dy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayManager/<>c__DisplayClass14_0] : dz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayManager/<>c__DisplayClass14_1] : ea +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayManager/<>c__DisplayClass5_0] : eb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayManager/d__11] : ec +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayManager] : ed +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] maxOrder] : ee +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ApplePayClass] : ef +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MaxPayClass] : eg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] PayerData] : eh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MemoryManager] : ei +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SettleUp] : ej +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] PlayLog] : ek +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] Card_item] : el +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SuccessData] : em +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] rewardState] : en +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GiftData] : eo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GiftType] : ep +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VipDay] : eq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] OpenBrowser] : er +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] PurchasingManager/<>c] : es +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] PurchasingManager] : et +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SaveingPotClass] : eu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SaveingPotTaskStatus] : ev +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SaveingPotHelper] : ew +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] RewardSystem/<>c__DisplayClass10_0] : ex +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] RewardSystem/<>c__DisplayClass10_1] : ey +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] RewardSystem] : ez +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] Base64Kit] : fa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SerializeUtil/<>c] : fb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SerializeUtil] : fc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] Language] : fd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ADEventTrack/Property] : fe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ADEventTrack] : ff +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] HallBehaviorTrack/Property] : fg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] HallBehaviorTrack] : fh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ADTrack/Property] : fi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ADTrack] : fj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] WwBehaviorTrack/Property] : fk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] WwBehaviorTrack] : fl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoBehaviorTrack/Property] : fm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoBehaviorTrack] : fn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ThreeDaysGiftEventTrack/Property] : fo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ThreeDaysGiftEventTrack] : fp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AfPurchaseTrack/Property] : fq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] AfPurchaseTrack] : fr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoLoadTask] : fs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoLoadScheduler/<>c__DisplayClass3_0] : ft +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoLoadScheduler/<>c__DisplayClass5_0] : fu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoLoadScheduler/d__5] : fv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] VideoLoadScheduler] : fy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GLoaderExtensions] : fz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GMTool/<>c__DisplayClass22_0] : ga +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GUIType] : gb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GMToolItem] : gc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] Keychain] : gd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ConnectionMode] : ge +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Serializable] : gg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3NonSerializable] : gh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3AutoSave/<>c] : gi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3AutoSaveMgr/LoadEvent] : gj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3AutoSaveMgr/SaveEvent] : gk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3AutoSaveMgr/<>c] : gl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/Location] : gm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/Directory] : gn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/EncryptionType] : go +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/CompressionType] : gq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/Format] : gr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/ReferenceMode] : gs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3/ImageType] : gt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3] : gu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3File] : gv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Spreadsheet/Index] : gw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Spreadsheet] : gx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Reader/ES3ReaderPropertyEnumerator/d__2] : gy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Reader/ES3ReaderPropertyEnumerator] : gz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Reader/ES3ReaderRawEnumerator/d__2] : ha +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Reader/ES3ReaderRawEnumerator] : hb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Reader] : hc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3XMLReader] : hd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3SlotManager/<>c] : he +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Ref] : hf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__53] : hg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__44] : hi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__45] : hj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__61] : hk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__70] : hl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__60] : hm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__62] : ho +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__20] : hp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud/d__33] : hq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Cloud] : hr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Writer] : hs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3XMLWriter] : ht +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GoogleResponseData] : hu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] GooglePayCheckInfo] : hv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/ProductConfig] : hx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/TimeAwareRetryPolicy] : hy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/SubscriptionInfo] : hz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c] : ia +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass100_0] : ib +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass101_0] : ic +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass102_0] : ie +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass61_0] : if +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass61_1] : ig +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass72_0] : ih +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass86_0] : ii +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass92_0] : ij +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass95_0] : ik +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass97_0] : il +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass99_0] : im +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__56] : in +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__86] : io +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__97] : ip +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__75] : iq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__111] : ir +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__83] : is +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__73] : it +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__64] : iu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__55] : iw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__77] : ix +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__84] : iy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__114] : iz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__94] : ja +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__110] : jb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__82] : jc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__117] : jd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__95] : je +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__85] : jf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__81] : jg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__96] : jh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] IAPManagerV5/d__72] : ji +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ResponseData] : jj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] Body] : jk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] WebSocketData] : jl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] WebSocketTools] : jm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ZrZYFo6bYXYM71YyLSDKDemo/<>c] : jn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : jo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : jp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SDK_IAP.IAPDemoUsage/<>c] : jq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] UNSDK.SdkConfigMgr/<>c] : jr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] UNSDK.AssetTools] : js +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ES3Prefab] : jt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ES3PrefabInternal] : ju +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES32DArrayType] : jv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES33DArrayType] : jw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ArrayType] : jx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3CollectionType] : jy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ConcurrentDictionaryType] : jz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3DictionaryType] : ka +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3HashSetType] : kb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ListType] : kc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3NativeArrayType/<>c] : kd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3NativeArrayType] : kf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3QueueType] : kg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3StackType/<>c] : kh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3StackType] : kj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3TupleType] : kk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ArrayList] : kl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3UserType_ArrayListArray] : km +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ComponentType] : kn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ObjectType] : ko +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ScriptableObjectType] : kp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type] : kq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3PropertiesAttribute] : kr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3UnityObjectType] : kt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BigInteger] : ku +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BigIntegerArray] : kv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Type] : kx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_bool] : ky +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_boolArray] : kz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_byte] : la +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_byteArray] : lb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_char] : lc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_charArray] : ld +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_DateTime] : le +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_DateTimeArray] : lf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_decimal] : lg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_decimalArray] : lh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_double] : li +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_doubleArray] : lj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_enum] : lk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ES3Ref] : lm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ES3RefArray] : ln +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ES3RefDictionary] : lo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_float] : lp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_floatArray] : lq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_int] : lr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_intArray] : ls +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_IntPtr] : lt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_IntPtrArray] : lu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_long] : lv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_longArray] : lw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_sbyte] : lx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_sbyteArray] : ly +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_short] : lz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_shortArray] : ma +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_string] : mb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_StringArray] : mc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_uint] : md +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_uintArray] : me +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_UIntPtr] : mf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_UIntPtrArray] : mg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ulong] : mh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ulongArray] : mi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ushort] : mj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ushortArray] : mk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ReflectedComponentType] : ml +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ReflectedObjectType] : mm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ReflectedScriptableObjectType] : mn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ReflectedType] : mo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ReflectedUnityObjectType] : mp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3ReflectedValueType] : mq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BoxCollider] : mr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BoxCollider2D] : ms +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Camera] : mt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_CapsuleCollider] : mu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_EventSystem] : mv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Image] : mw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ImageArray] : mx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MeshCollider] : my +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MeshColliderArray] : mz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MeshFilter] : na +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MeshFilterArray] : nb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MeshRenderer] : nd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MeshRendererArray] : ne +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ParticleSystem] : nf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_PolygonCollider2D] : ng +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_PolygonCollider2DArray] : nh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RawImage] : ni +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RawImageArray] : nj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Rigidbody] : nk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3UserType_RigidbodyArray] : nl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SphereCollider] : nm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Text] : nn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Transform] : no +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_AnimationCurve] : np +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_AudioClip] : nq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_AudioClipArray] : ns +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BoneWeight] : nt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BoneWeightArray] : nu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Bounds] : nv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BoundsArray] : nw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Burst] : nx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_BurstArray] : ny +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_CollisionModule] : nz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Color] : oa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ColorArray] : ob +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Color32] : oc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Color32Array] : od +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ColorBySpeedModule] : oe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ColorOverLifetimeModule] : of +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_EmissionModule] : og +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ExternalForcesModule] : oh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Flare] : oi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_FlareArray] : oj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Font] : ok +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_FontArray] : ol +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ForceOverLifetimeModule] : om +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GameObject/<>c] : on +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GameObject/<>c__DisplayClass8_0] : oo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GameObject] : op +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GameObjectArray] : oq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Gradient] : or +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GradientAlphaKey] : os +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GradientAlphaKeyArray] : ot +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GradientColorKey] : ou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GradientColorKeyArray] : ov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Guid] : ow +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_GuidArray] : ox +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_InheritVelocityModule] : oy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Keyframe] : oz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_KeyframeArray] : pa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_LayerMask] : pb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Light] : pc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_LightsModule] : pd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_LimitVelocityOverLifetimeModule] : pe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MainModule] : pf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Material] : pg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MaterialArray] : ph +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Matrix4x4] : pi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Matrix4x4Array] : pj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Mesh] : pl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MinMaxCurve] : pm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_MinMaxGradient] : pn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_NoiseModule] : po +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_PhysicMaterial] : pp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_PhysicMaterialArray] : pq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_PhysicsMaterial2D] : pr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_PhysicsMaterial2DArray] : ps +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Quaternion] : pt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_QuaternionArray] : pu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Rect] : pv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RectTransform] : pw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RenderTexture] : pz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RenderTextureArray] : qa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RotationBySpeedModule] : qb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_RotationOverLifetimeModule] : qc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Shader] : qd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ShaderArray] : qe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_ShapeModule] : qf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SizeBySpeedModule] : qg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SizeOverLifetimeModule] : qh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SkinnedMeshRenderer] : qi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SkinnedMeshRendererArray] : qj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Sprite] : qk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SpriteRenderer] : ql +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SpriteRendererArray] : qm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_SubEmittersModule] : qn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Texture] : qo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_TextureArray] : qp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Texture2D] : qq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Texture2DArray] : qr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_TextureSheetAnimationModule] : qs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_TrailModule] : qt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_TriggerModule] : qu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector2] : qv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector2Array] : qw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector2Int] : qx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector2IntArray] : qy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector3] : qz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector3Array] : ra +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector3Int] : rb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector3IntArray] : rc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector4] : rd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_Vector4Array] : re +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Types.ES3Type_VelocityOverLifetimeModule] : rf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Debug] : rg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Hash] : rh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.EncryptionAlgorithm] : ri +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.AESEncryptionAlgorithm] : rj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.UnbufferedCryptoStream] : rl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Data] : rm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3IO/ES3FileMode] : rn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3IO] : ro +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3ReferenceMgrBase/<>c] : rp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3ReferenceMgrBase/<>c__DisplayClass32_0] : rq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3ReferenceMgrBase/<>c__DisplayClass33_0] : rr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Reflection/ES3ReflectedMember] : rs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Reflection/ES3ReflectedMethod] : rt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Reflection/<>c] : ru +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Reflection/<>c__DisplayClass27_0] : rv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Reflection/<>c__DisplayClass46_0] : rw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Reflection] : rx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3SerializableDictionary`2/<>c] : ry +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3JSONReader] : rz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3FileMode] : sa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3FileStream] : sb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3PlayerPrefsStream] : sc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3ResourcesStream] : se +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Stream] : sf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Member] : sg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3TypeMgr] : sh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3WebClass/d__19] : si +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3WebClass] : sj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3SpecialByte] : sl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3Binary] : sm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3CacheWriter] : sn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ES3Internal.ES3JSONWriter] : so +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.H5RefreshTimes] : sp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.H5SendClass] : sq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginModel] : ss +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.OrderModel] : st +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.PayOutUserInfoData] : su +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.PayerData] : sv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.OrderData] : sw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.OrderState] : sx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RequestLoginData] : sy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RequestTokenData] : sz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RequestResultData] : ta +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RequestSavePlayData] : tc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RequestStageData] : td +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RespDebugData] : te +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.RespLoginFunnelData] : tf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.TrackData] : tg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetKit/<>c] : th +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetKit/<>c__DisplayClass3_0] : ti +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetKit/<>c__DisplayClass4_0] : tj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.ErrorLogKit/<>c__DisplayClass5_0] : tk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.ErrorLogKit] : tl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.HeartbeatKit/d__7] : tm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginKit/<>c__DisplayClass10_0] : tn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginKit/<>c__DisplayClass9_0] : tp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginKit/d__12] : tq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginKit/d__11] : tr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginKit/d__10] : tu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetGmTool/<>c] : tv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.TrackEvent] : tw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.TrackKit/<>c__DisplayClass3_0] : tx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.TrackKit/d__4] : ty +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.TrackKit] : tz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.LoginFunnelEventType] : ua +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.TrackProperty] : ub +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass0_0] : uc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass2_0] : ud +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass3_0] : ue +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass4_0`1] : uf`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass5_0`1] : ug`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass6_0`1] : uh`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass7_0`1] : uj`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi/<>c__DisplayClass8_0] : uk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.NetKit.NetApi] : ul +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.ConnectionStatus] : um +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetChecker/<>c] : un +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetChecker/d__21] : uo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetChecker/d__22] : up +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetChecker/d__23] : uq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetChecker/d__24] : ur +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetChecker/d__16] : us +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/<>c] : ut +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/<>c__DisplayClass14_0`1] : uu`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/<>c__DisplayClass16_0`1] : uw`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/<>c__DisplayClass16_1`1] : ux`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/d__14`1] : uy`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/d__16`1] : uz`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCore`1/d__17`1] : va`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.ServerClock] : vb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/ReauthenticateDelegate] : vc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/RefreshTokenDelegate] : vd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/<>c__DisplayClass23_0] : ve +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/<>c__DisplayClass25_0] : vf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/<>c__DisplayClass26_0] : vg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/d__23] : vh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/d__26] : vi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/d__25] : vj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.TokenManager/d__24] : vk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.NetCoreModel] : vl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.ResponseData`1] : vm`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.RequestTokenData] : vn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.WebSocketEvent] : vp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.WebSocketService/d__23] : vq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.WebSocketService/d__10] : vr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.WebSocketService/d__8] : vs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.WebSocketService/d__6] : vt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Net.WebSocketService/d__28] : vu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownData] : vv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownTextState] : vw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownDataMgr] : vx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownConvert/<>c] : vy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownConvert/<>c__DisplayClass1_0] : vz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownConvert] : wa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownKit/<>c__DisplayClass6_0] : wb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.MarkdownKit.MarkdownKit/d__2] : wc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayData] : wd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GoogleCheckData] : wf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayCancelInfo] : wg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GoogleSubscribeData] : wh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GoogleSubscribeDataHistory] : wi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayBackType] : wj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass20_0] : wk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass21_0] : wl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass22_0] : wm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass23_0] : wn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass28_0] : wo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass39_0] : wp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/<>c__DisplayClass46_0] : wq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/d__19] : ws +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/d__38] : wt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayManager/d__30] : wu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayNet/<>c__DisplayClass0_0`1] : wv`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayNet/<>c__DisplayClass1_0`1] : ww`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayNet/<>c__DisplayClass2_0`1] : wx`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayNet/<>c__DisplayClass3_0`1] : wy`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayNet/<>c__DisplayClass4_0`1] : wz`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayNet] : xa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.GooglePay.PayProductConfig] : xb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.DataStorage.DataKeyInfo] : xc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.DataStorage.DataKeyDic] : xd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.DataStorage.DataManager/<>c] : xe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.DataStorage.DataManager/d__13] : xf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.DataStorage.DataStorage`1] : xg`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigDataManager] : xh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigFileManager/<>c__DisplayClass14_0] : xi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigFileManager/<>c__DisplayClass15_0] : xj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigFileManager/<>c__DisplayClass16_0] : xk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigFileManager/<>c__DisplayClass17_0] : xl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigFileManager] : xm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigLoaderState] : xn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigInitOptions] : xo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.FileNetworkManager/<>c] : xp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.FileNetworkManager/d__8] : xq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.FileNetworkManager/d__9] : xr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.FileNetworkManager/d__11] : xs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigKeyAttribute] : xt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigParser/<>c] : xu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigParser] : xv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.ConfigLoader.ParseConfigOptions] : xw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.ConfigManager] : xx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Interface.IWeighted] : xz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.Base64Helper] : ya +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.CommonUtils] : yb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.Cryptor] : yc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.DeviceHelper] : yd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.Log] : ye +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.ModuleLogger] : yf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.LogColors] : yg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.MD5Helper] : yh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.ModuleVersion] : yi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.RandomHelper/<>c__1`1] : yj`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.RandomHelper] : yk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.SerializeHelper/<>c] : yl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.SerializeHelper] : ym +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Helper.TimeHelper] : yn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.ArrayExtensions] : yo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.EnumExtensions] : yp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.ListExtensions] : yq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.ObjectExtensions] : yr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.ObjectExtensionsTest/Color] : ys +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.ObjectExtensionsTest/Person] : yt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.ObjectExtensionsTest] : yu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] SGModule.Common.Extensions.StringExtensions] : yv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FutureCore.Base64EncodeUtil] : yw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MiniJSON.Json/Parser/TOKEN] : yx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MiniJSON.Json/Parser] : yy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MiniJSON.Json/Serializer] : yz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] MiniJSON.Json] : za +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BlendMode] : zb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BlendModeUtils/BlendFactor] : zc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BlendModeUtils] : zd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Container/DescendantsEnumerator] : ze +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Container] : zf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.DisplayObject/PaintingInfo] : zg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.DisplayObject/Flags] : zh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.DisplayObject] : zi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GoWrapper/RendererInfo] : zj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GoWrapper/<>c] : zk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GoWrapper] : zl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ColliderHitTest] : zm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.HitTestContext] : zn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.HitTestMode] : zo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IHitTest] : zp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.MeshColliderHitTest] : zq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PixelHitTestData] : zr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PixelHitTest] : zs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RectHitTest] : zt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ShapeHitTest] : zu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Image] : zv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.MaterialFlags] : zw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.MaterialManager/MaterialRef] : zx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.MaterialManager] : zy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.CompositeMesh] : zz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EllipseMesh] : baa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FillMesh] : bab +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.LineMesh] : bac +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IMeshFactory] : bad +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PlaneMesh] : bae +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PolygonMesh] : baf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RectMesh] : bag +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RegularPolygonMesh] : bah +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RoundedRectMesh] : bai +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.StraightLineMesh] : baj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.VertexBuffer] : bak +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.MovieClip/Frame] : bal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.MovieClip] : bam +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.NAudioClip] : ban +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.NGraphics/VertexMatrix] : bao +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.NGraphics/StencilEraser] : bap +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.NGraphics] : baq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.DestroyMethod] : bar +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.NTexture] : bas +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ShaderConfig/GetFunction] : bat +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ShaderConfig] : bau +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Shape] : bav +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Stage/CursorDef] : baw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Stage/<>c] : bax +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Stage] : bay +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TouchInfo] : baz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Stats] : bba +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BaseFont] : bbb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BitmapFont/BMGlyph] : bbc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BitmapFont] : bbd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.DynamicFont] : bbe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Emoji] : bbf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FontManager] : bbg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IKeyboard] : bbh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.InputTextField] : bbi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextInputHistory] : bbj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RichTextField] : bbk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RTLSupport/CharState] : bbl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RTLSupport/DirectionType] : bbm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RTLSupport] : bbn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.SelectionShape] : bbo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextField/LineInfo] : bbp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextField/LineCharInfo] : bbq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextField/CharPosition] : bbr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextField] : bbs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextFormat/SpecialStyle] : bbt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TextFormat] : bbu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TouchScreenKeyboard] : bbv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TypingEffect/d__19] : bbw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TypingEffect] : bbx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UpdateContext/ClipInfo] : bby +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UpdateContext] : bbz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EventBridge] : bca +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EventContext] : bcb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EventCallback0] : bcc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EventCallback1] : bcd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EventDispatcher] : bce +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EventListener] : bcf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IEventDispatcher] : bcg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.InputEvent] : bch +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.BlurFilter] : bci +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ColorFilter] : bcj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IFilter] : bck +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.LongPressGesture] : bcl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PinchGesture] : bcm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RotationGesture] : bcn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.SwipeGesture] : bco +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EaseManager/Bounce] : bcp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EaseManager] : bcq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EaseType] : bcr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.CustomEase/<>c] : bcs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.CustomEase] : bct +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GPathPoint/CurveType] : bcu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GPathPoint] : bcv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GPath/Segment] : bcw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GPath] : bcx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTween] : bcy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTweenCallback] : bcz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTweenCallback1] : bda +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ITweenListener] : bdb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTweener] : bdc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TweenManager] : bdd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TweenPropType] : bde +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TweenPropTypeUtils] : bdf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TweenValue] : bdg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ChangePageAction] : bdh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ControllerAction/ActionType] : bdi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ControllerAction] : bdj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PlayTransitionAction] : bdk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.AsyncCreationHelper/DisplayListItem] : bdl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.AsyncCreationHelper/<_CreateObject>d__1] : bdm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.AsyncCreationHelper] : bdn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Controller] : bdo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.DragDropManager] : bdp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EMRenderTarget] : bdq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.EMRenderSupport] : bdr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PackageItemType] : bds +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ObjectType] : bdt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.AlignType] : bdu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.VertAlignType] : bdv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.OverflowType] : bdw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FillType] : bdx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.AutoSizeType] : bdy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ScrollType] : bdz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ScrollBarDisplayType] : bea +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RelationType] : beb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ListLayoutType] : bec +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ListSelectionMode] : bed +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ProgressTitleType] : bee +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ButtonMode] : bef +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TransitionActionType] : beg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GroupLayoutType] : beh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ChildrenRenderOrder] : bei +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PopupDirection] : bej +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FlipType] : bek +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FillMethod] : bel +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.OriginHorizontal] : bem +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.OriginVertical] : ben +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Origin90] : beo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Origin180] : bep +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Origin360] : beq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FocusRule] : ber +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GButton/<>c__DisplayClass72_0] : bes +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GButton] : bet +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GComboBox] : beu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GComponent/<>c__DisplayClass129_0] : bev +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GComponent] : bew +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearAnimationValue] : bex +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearAnimation] : bey +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearBase] : bez +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearTweenConfig] : bfa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearColorValue] : bfb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearColor] : bfc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearDisplay] : bfd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearDisplay2] : bfe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearFontSize] : bff +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearIcon] : bfg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearLookValue] : bfh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearLook] : bfi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearSizeValue] : bfj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearSize] : bfk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearText] : bfl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearXYValue] : bfm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GearXY] : bfn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IAnimationGear] : bfo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IColorGear] : bfp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ITextColorGear] : bfq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GGraph] : bfr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GGroup] : bfs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GImage] : bft +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GLabel/<>c__DisplayClass26_0] : bfu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GLabel] : bfv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ListItemRenderer] : bfw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ListItemProvider] : bfx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GList/ItemInfo] : bfy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GList] : bfz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GLoader] : bga +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GLoader3D] : bgb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GMovieClip] : bgc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GObject] : bgd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GObjectPool/InitCallbackDelegate] : bge +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GObjectPool] : bgf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GProgressBar/<>c__DisplayClass37_0] : bgg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GProgressBar] : bgh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GRichTextField] : bgi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GRoot] : bgj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GScrollBar] : bgk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GSlider] : bgl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTextField] : bgm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTextInput] : bgn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTree/TreeNodeRenderDelegate] : bgo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTree/TreeNodeWillExpandDelegate] : bgp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTree] : bgq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.GTreeNode] : bgr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UILoadCallback] : bgs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.IUISource] : bgt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Margin] : bgu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PackageItem] : bgv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PopupMenu] : bgw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RelationDef] : bgx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.RelationItem] : bgy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Relations] : bgz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.ScrollPane] : bha +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.PlayCompleteCallback] : bhb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TransitionHook] : bhc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Transition/<>c__DisplayClass78_0] : bhd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Transition] : bhe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TransitionItem] : bhf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TweenConfig] : bhg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue_Visible] : bhh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue_Animation] : bhi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue_Sound] : bhj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue_Transition] : bhk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue_Shake] : bhl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue_Text] : bhm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TValue] : bhn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TranslationHelper] : bho +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TreeNode] : bhp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TreeView/TreeNodeCreateCellDelegate] : bhq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TreeView/TreeNodeRenderDelegate] : bhr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TreeView/TreeNodeWillExpandDelegate] : bhs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TreeView] : bht +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIConfig/ConfigKey] : bhu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIConfig/ConfigValue] : bhv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIConfig/SoundLoader] : bhw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIContentScaler/ScaleMode] : bhx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIContentScaler/ScreenMatchMode] : bhy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIObjectFactory/GComponentCreator] : bhz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIObjectFactory/GLoaderCreator] : bia +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIObjectFactory/<>c__DisplayClass4_0] : bib +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIObjectFactory/<>c__DisplayClass6_0] : bic +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIObjectFactory] : bid +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage/LoadResource] : bie +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage/LoadResourceAsync] : bif +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage/CreateObjectCallback] : big +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage/AtlasSprite] : bih +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage/<>c] : bii +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage/<>c__DisplayClass93_0] : bij +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.UIPackage] : bik +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.FitScreen] : bil +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Window] : bim +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.TimerCallback] : bin +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Timers] : bio +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Anymous_T] : bip +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.ByteBuffer] : biq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlButton] : bir +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlElementType] : bis +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlElement] : bit +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlImage] : biu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlInput] : biv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlLink] : biw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlPageContext] : bix +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlParseOptions] : biy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlParser/TextFormat2] : biz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlParser] : bja +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.HtmlSelect] : bjb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.IHtmlObject] : bjc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.IHtmlPageContext] : bjd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.ToolSet] : bje +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.UBBParser/TagHandler] : bjf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.UBBParser] : bjg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XML] : bjh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XMLTagType] : bji +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XMLIterator] : bjj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XMLList/Enumerator] : bjk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XMLList/<>c__DisplayClass14_0] : bjl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XMLList] : bjm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.XMLUtils] : bjn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.ZipReader/ZipEntry] : bjo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FairyGUI.Utils.ZipReader] : bjp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Toast_23.com_net_tips] : bjq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Toast_23.com_tips] : bjr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Toast_23.com_unclok_tips] : bjs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Toast_23.com_word] : bjt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Toast_23.ZM_Toast_23Binder] : bju +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Novice_21.com_guide] : bjv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Novice_21.ZM_Novice_21Binder] : bjw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Loading_25.com_loading] : bjx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Loading_25.com_pb] : bjy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Loading_25.ZM_Loading_25Binder] : bjz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Img_02.com_loadingBg] : bka +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Img_02.ZM_Img_02Binder] : bkb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Fx_502.com_FX] : bkc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Fx_502.ZM_Fx_502Binder] : bkd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Vip.btn_subscirbe] : bke +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Vip.btn_vipType] : bkf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Vip.com_vip] : bkg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Vip.item_viplist] : bkh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Vip.LG_VipBinder] : bki +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.btn_sub] : bkj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.com_chatUnlock] : bkk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.com_LiveUnlock] : bkl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.com_scAlbumLock] : bkm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.com_SubUnlock] : bkn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.com_unlockView] : bko +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Unlock.LG_UnlockBinder] : bkp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.btn_unlock] : bkq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.btn_unlock_ad] : bkr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.com_pic] : bks +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.com_pic_in] : bkt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.com_scAlbumPreview] : bku +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.com_scAlbums] : bkv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.com_secretDetail] : bkw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.item_scAlbumPreview] : bkx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.item_scalnums] : bky +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_secretAlbums.LG_secretAlbumsBinder] : bkz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_LuckyGift.com_lucky] : bla +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_LuckyGift.com_pic] : blb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_LuckyGift.LG_LuckyGiftBinder] : blc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_live.btn_ad] : bld +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_live.com_live] : ble +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_live.com_liveDetail] : blf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_live.item_live] : blg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_live.LG_liveBinder] : blh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_live.live_mask] : bli +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.btn_level] : blj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.btn_unlock] : blk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.com_newend] : bll +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.com_pic] : blm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.com_unlockLevel] : bln +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.com_unlockLevelNew] : blo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.item_unlockLevel] : blp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_End.LG_EndBinder] : blq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_albums] : blr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_chat] : bls +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_claim] : blt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_claim_1] : blu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_claim_2] : blv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_green] : blw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_live] : blx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_secret] : bly +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_task] : blz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_task_pass] : bma +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_task_times] : bmb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_unlock] : bmc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.btn_vip] : bmd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.com_loaderMask] : bme +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.com_loaderMask_circlle] : bmf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.com_loaderMask_circlle2] : bmg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.item_wheel] : bmh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.LG_CommonBinder] : bmi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.progress_end] : bmj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.progress_live] : bmk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.wheel] : bml +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_Common.wheel_] : bmm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_albums.com_albums] : bmn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_albums.com_albumsDetail] : bmo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_albums.com_pic] : bmp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_albums.item_albums] : bmq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_albums.item_albumsDetails] : bmr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_albums.LG_albumsBinder] : bms +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.btn_chooseItem] : bmt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.chat_head] : bmu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.com_chat] : bmv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.com_chatChoose] : bmw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.com_ChatNumber] : bmx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.item_chatImage] : bmy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.item_chatText_left] : bmz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.item_chatText_right] : bna +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.LG_AIchat.LG_AIchatBinder] : bnb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.G016_WB.btn_fly] : bnc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.G016_WB.btn_icon] : bnd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.G016_WB.btn_type] : bne +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.G016_WB.com_webtop] : bnf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.G016_WB.com_webview] : bng +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.G016_WB.G016_WBBinder] : bnh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_jilu.bkg_jiluBinder] : bni +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_jilu.com_jilu] : bnj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_jilu.com_panel] : bnk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_jilu.com_record_item] : bnl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.btn_close] : bnm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.btn_go1] : bnn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.com_coin] : bno +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.btn_go] : bnp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.com_disc] : bnq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.com_wheel] : bnr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Turntable_11.ZM_Turntable_11Binder] : bns +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.btn_claim] : bnt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.btn_com] : bnu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.btn_task_tab] : bnv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.com_taskView] : bnw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.com_task_item] : bnx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.com_task_reward] : bny +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tasks_13.ZM_Tasks_13Binder] : bnz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.btn_mail] : boa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.btn_main] : bob +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.btn_options] : boc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.btn_sign] : bod +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.com_bottom_panel] : boe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.com_main_tab] : bof +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Tab_19.ZM_Tab_19Binder] : bog +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_store_17.btn_buy] : boh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_store_17.btn_close] : boi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_store_17.btn_watchAd1] : boj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_store_17.buygold_item] : bok +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_store_17.com_buygold] : bol +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_store_17.ZM_store_17Binder] : bom +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Sign_06.btn_sign] : bon +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Sign_06.btn_sign7] : boo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Sign_06.com_sign_in] : bop +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Sign_06.ZM_Sign_06Binder] : boq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_back_home] : bor +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_edit] : bot +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_item_head] : bou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_menu] : bov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_music_on_off] : bow +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_sound_on_off] : box +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_green] : boy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_language] : boz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_music] : bpa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.btn_sound] : bpb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.com_edit_name] : bpc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.com_language] : bpd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.com_person] : bpe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.com_setting] : bpf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Setting_07.ZM_Setting_07Binder] : bpg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Reward_10.com_reward] : bph +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Reward_10.ZM_Reward_10Binder] : bpi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Prop_09.btn_goldBuy] : bpj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Prop_09.com_choose] : bpk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Prop_09.com_prop] : bpl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Prop_09.ZM_Prop_09Binder] : bpm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Privacy_24.com_privacy] : bpn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Privacy_24.com_text] : bpo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Privacy_24.ZM_Privacy_24Binder] : bpp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.btn_close] : bpq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.com_item_award] : bpr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.com_pass_item] : bps +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.progress_pass] : bpt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.btn_max_buy] : bpu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.btn_recive_gift] : bpv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.com_passunlock] : bpw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.com_pass_view] : bpx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.com_pic] : bpy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pass_14.ZM_Pass_14Binder] : bpz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pack_16.btn_close1] : bqa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pack_16.btn_close] : bqb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pack_16.com_passunlock] : bqc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pack_16.pack_panel] : bqd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pack_16.com_adcoming] : bqe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Pack_16.ZM_Pack_16Binder] : bqf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_NetIdle_22.com_Netidle] : bqg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_NetIdle_22.com_loading] : bqh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_NetIdle_22.ZM_NetIdle_22Binder] : bqi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Login_05.btn_space] : bqj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Login_05.com_login_page] : bqk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Login_05.com_login_privacy] : bql +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Login_05.ZM_Login_05Binder] : bqm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.btn_get] : bqn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.com_first_award] : bqo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.com_hall] : bqp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.btn_hall_head] : bqq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.btn_item_play] : bqr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.btn_level_play] : bqs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.btn_play] : bqt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.btn_task_pass] : bqu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.com_map] : bqv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.com_payloading] : bqw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.head] : bqx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Lobby_03.ZM_Lobby_03Binder] : bqy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.btn_add] : bqz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.btn_exit] : bra +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.btn_look_ad] : brb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.btn_prop] : brc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.btn_set] : brd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.com_rewardbox] : bre +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.btn_battle] : brf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.com_game] : brg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.com_game_menu] : brh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.com_open] : bri +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.com_state] : brj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Game_04.ZM_Game_04Binder] : brk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_GameResult_08.com_end] : brl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_GameResult_08.ch_broad] : brm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_GameResult_08.com_success_ch] : brn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_GameResult_08.ZM_GameResult_08Binder] : bro +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_EMail_20.com_mail] : brp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_EMail_20.mail_item] : brq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_EMail_20.ZM_EMail_20Binder] : brr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_buy1] : brs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_curr] : brt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_failpack] : bru +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_green1] : brv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_noads] : brw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_null] : brx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_thanks] : bry +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_threeday] : brz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_watchAd] : bsa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.com_gold] : bsb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_claim] : bsc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_claim3] : bsd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_claim4] : bse +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_head] : bsf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_max_buy] : bsg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_restore] : bsh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.btn_shop] : bsi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.com_broadcast_new] : bsj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.com_gold2] : bsk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.com_tips] : bsl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.head] : bsm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Common_01.ZM_Common_01Binder] : bsn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Coins_101.com_coins] : bso +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Coins_101.com_coin] : bsp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Coins_101.com_coinFly] : bsq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_Coins_101.ZM_Coins_101Binder] : bsr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.btn_buy_one] : bss +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.com_addView] : bst +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.btn_get] : bsu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.btn_power_up] : bsv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.com_addView_new] : bsw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.com_addView_off] : bsx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.com_goldreward] : bsy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.com_title] : bsz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.ZM_AddCell_12.ZM_AddCell_12Binder] : bta +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.btn_close_three] : btb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.btn_watchAd] : btc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.com_item] : btd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.com_three_days] : bte +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.broadcast_top] : btf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.broadcast_topitem] : btg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.item_reward] : bth +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.threeDaysGift.threeDaysGiftBinder] : bti +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_reward_new.com_reward_moveout] : btj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_reward_new.com_reward_refresh] : btk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_reward_new.com_reward_undo] : btl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_reward_new.bkg_reward_newBinder] : btm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_reward_new.com_reward_coin] : btn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] FGUI.bkg_reward_new.com_reward_mul] : bto +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PlayerPrefsConst] : btp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AdTaskData] : btq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AdTaskState] : btr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.InviteData] : bts +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.InviteMakeupStatus] : btt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.InviteMakeUpHistory] : btu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.InviteRecordOrigin] : btv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.InviteRecord] : btw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.KeyValue] : btx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MakeupTaskData] : bty +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MakeupTaskStatus] : btz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UrlData] : bua +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CtrlMsg] : bub +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameMsg] : buc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetworkMsg] : bud +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UICtrlMsg] : bue +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ADTask] : bug +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ApplePay] : buh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BackgroundImage] : bui +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.des_key] : buj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BoardModel] : buk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Board] : bul +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.StackedModel] : bum +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Stacked] : bun +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Durationtasks] : buo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TurnOffRewards] : bup +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LevelAttemptsModel] : buq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LevelAttempts] : bur +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ExchangeRate] : bus +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameConfigModel] : but +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameBoard] : buu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LargerewardNum] : buv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LevelUnlock] : buw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LevelUnlock_A] : bux +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Live] : buy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Live_A] : buz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FreeImageLibrary] : bva +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ADImageLibrary] : bvb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SpecialImageLibrary] : bvc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VIPImageLibrary] : bvd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FreeImageLibrary_A] : bve +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ADImageLibrary_A] : bvf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SpecialImageLibrary_A] : bvg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VIPImageLibrary_A] : bvh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MakeupModel/<>c__DisplayClass0_0] : bvi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MakeupModel] : bvj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Makeup] : bvk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MakeupModel_2/<>c__DisplayClass0_0] : bvl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MakeupModel_2] : bvm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Makeup_2] : bvn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OnlineRewards] : bvo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassingTask] : bvp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Passportrewards] : bvq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Paidcoins] : bvr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Multigift] : bvs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardNum] : bvt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Paidgift] : bvu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbums] : bvv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbums_A] : bvw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignDailyReward] : bvx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SmallrewardNum] : bvy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Turntable] : bvz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VipClub] : bwa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardDisplayType] : bwb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardOrigin] : bwc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardCondition] : bwd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardSingleData] : bwe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardData/<>c] : bwf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardData/<>c__DisplayClass9_0] : bwg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardData] : bwh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardDisplayData] : bwi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RespAdEventData] : bwj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RespAdRevenueEventData] : bwk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RespGameTimeEventData] : bwl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ResGameConfigData] : bwm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RespDebugData] : bwn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RespLoginFunnelData] : bwo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RequestLoginData] : bwp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ResquestTokenData] : bwq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ResponseData] : bwr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RequestSavePlayData] : bws +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RequestSendEventH5Info] : bwt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ResponseSendEventH5Info] : bwu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AESForFileKit] : bwv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AssetDataBaseKit] : bww +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CommonHelper/<>c__DisplayClass10_0] : bwx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CommonHelper/<>c__DisplayClass23_0] : bwy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CommonHelper] : bwz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DownloadKit/d__6] : bxa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DownloadKit/d__4] : bxb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DownloadKit/d__3] : bxc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DownloadKit] : bxd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper/<>c] : bxe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper/<>c__DisplayClass106_0] : bxf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper/<>c__DisplayClass11_0] : bxg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper/<>c__DisplayClass12_0] : bxh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper/<>c__DisplayClass35_0] : bxi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper/<>c__DisplayClass9_0] : bxj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameHelper] : bxk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ILoadAsset] : bxl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LegendFileKit/<>c] : bxm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LegendFileKit/<>c__DisplayClass10_0] : bxn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LegendFileKit/<>c__DisplayClass7_0] : bxo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LegendFileKit/<>c__DisplayClass8_0] : bxp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LegendFileKit] : bxq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadKit/<>c__DisplayClass12_0] : bxr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadKit/<>c__DisplayClass15_0] : bxs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadKit/<>c__DisplayClass8_0`1] : bxt`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadKit] : bxu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXManager/<>c__DisplayClass12_0`1] : bxv`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXManager/<>c__DisplayClass13_0] : bxw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Fx_Type] : bxx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallManager/<>c] : bxy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CountDownType] : bxz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CountDownKit] : bya +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GLoaderPool] : byb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LegendConstant] : byc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/<>c__DisplayClass19_0] : byd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/<>c__DisplayClass27_0] : bye +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__24] : byf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__28] : byg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__18] : byh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__19] : byi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__23] : byj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__22] : byk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoManager/d__21] : byl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VideoTask] : bym +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CoverTask] : byn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoMemoryManager/d__5] : byo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveVideoMemoryManager] : byp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.onLoaded] : byq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendInfo/<>c__DisplayClass23_0] : byr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendInfo/<>c__DisplayClass28_0] : bys +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendInfo] : byt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass11_0`1] : byu`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass14_0] : byv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass14_1] : byw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass15_0] : byx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass16_0] : byy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass17_0] : byz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass33_0] : bza +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/<>c__DisplayClass36_0`1] : bzb`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/d__15] : bzc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/d__8] : bzd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/d__11`1] : bze`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/d__9] : bzf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit/d__17] : bzg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendKit] : bzh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoveLegendState] : bzi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass4_0] : bzj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass5_0] : bzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass6_0] : bzl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass7_0] : bzm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass7_1] : bzn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass7_2] : bzo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass7_3] : bzp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass7_4] : bzq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/<>c__DisplayClass7_5] : bzr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/d__5] : bzs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager/d__4] : bzt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreDownloadManager] : bzu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VideoPlayerHandover/<>c] : bzv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VideoPlayerHandover/<>c__DisplayClass3_0] : bzw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VideoPlayerHandover] : bzx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.App/<>c] : bzy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.App] : bzz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AsyncDealData/DealMethod] : caa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AsyncDealData] : cab +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CrazyAsyKit] : cac +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseScene] : cad +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseSystem] : cae +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BIManager/d__13] : caf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CloudDataSaver/<>c__DisplayClass0_0] : cag +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CloudDataSaver] : cah +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreferencesDataReadyCtrl] : cai +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AnimConst] : caj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AppConst] : cak +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AppObjConst] : cal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AudioConst] : cam +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CameraConst] : can +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FolderNames] : cao +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LayerMaskConst] : cap +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrefsConst] : caq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrefsKeyConst] : car +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ScreenConst] : cas +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UILayerConst] : cat +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VectorConst] : cau +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.YieldConst] : cav +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChangeValue`1] : caw`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseDispatcher`3] : cax`3 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseMainThreadDispatcher`3/MainThreadMsgClass] : cay +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AppDispatcher] : caz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CtrlDispatcher] : cba +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DataDispatcher] : cbb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameDispatcher] : cbc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ModelDispatcher] : cbd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetworkDispatcher] : cbe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PreferencesDispatcher`1] : cbf`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UICtrlDispatcher] : cbg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.StringExtend] : cbh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameObjectExtend] : cbi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c] : cbj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c__DisplayClass23_0] : cbk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c__DisplayClass24_0] : cbl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.IAPPayManager/<>c__DisplayClass26_0] : cbm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainScene/<>c] : cbn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainScene/<>c__DisplayClass6_0] : cbo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainScene] : cbp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseInterfaceManager`1] : cbq`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.InterfaceManager] : cbr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CameraManager] : cbs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MonthType] : cbt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DateTimeManager] : cbu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameIManager] : cbv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ModuleManager] : cbw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SceneManager] : cbx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ManagerOfManager] : cby +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AudioManager/<>c] : cbz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AudioManager/<>c__DisplayClass25_0] : cca +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SceneSwitchManager/LoadCallBack] : ccb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SceneSwitchManager/d__4] : ccc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SceneSwitchManager/d__5] : ccd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TimerTimeType] : cce +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UISequenceInfo] : ccf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIParentInfo] : ccg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIMgrConst] : cch +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c] : cci +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass20_0] : ccj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass21_0] : cck +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass26_0] : ccl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass30_0] : ccm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass32_0] : ccn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass42_0] : cco +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass43_0] : ccp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManager/<>c__DisplayClass61_0] : ccq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.CtrlConst] : ccr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ModelConst] : ccs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ModuleManagerRegister] : cct +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIConst] : ccu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UICtrlConst] : ccv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AdcomingCtrl] : ccw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AdcomingModel] : ccx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AdcomingUI] : ccy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AdcomingUICtrl] : ccz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewCtrl] : cda +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewModel] : cdb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewUI/<>c__DisplayClass12_0] : cdc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewUI] : cdd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewUICtrl] : cde +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddviewnewCtrl] : cdf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddviewnewModel] : cdg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c] : cdh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI/<>c__DisplayClass10_0] : cdi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddviewnewUI] : cdj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddviewnewUICtrl] : cdk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewoffCtrl] : cdl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewoffModel] : cdm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI/<>c] : cdn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewoffUI] : cdo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AddViewoffUICtrl] : cdp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumDetailCtrl] : cdq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumDetailModel] : cdr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumDetailUI/<>c__DisplayClass19_0] : cds +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumDetailUI/<>c__DisplayClass19_1] : cdt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumDetailUI] : cdu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumDetailUICtrl] : cdv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlubumCtrl] : cdw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlubumModel] : cdx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlubumUI/<>c] : cdy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlubumUI/<>c__DisplayClass25_0] : cdz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlubumUI] : cea +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlubumUICtrl] : ceb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuyPropCtrl] : cec +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuyPropModel] : ced +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuyPropUI/<>c] : cee +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuyPropUI] : cef +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuyPropUICtrl] : ceg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatCtrl] : ceh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatModel] : cei +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUI/<>c] : cej +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUI] : cek +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUICtrl] : cel +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatChooseCtrl] : cem +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatChooseModel] : cen +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatChooseUI] : ceo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatChooseUICtrl] : cep +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatNumberCtrl] : ceq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatNumberModel] : cer +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatNumberUI/<>c__DisplayClass14_0] : ces +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatNumberUI] : cet +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatNumberUICtrl] : ceu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUnlockCtrl] : cev +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUnlockModel] : cew +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUnlockUI] : cex +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChatUnlockUICtrl] : cey +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChoosePropCtrl] : cez +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChoosePropModel] : cfa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChoosePropUI/<>c] : cfb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChoosePropUI/<>c__DisplayClass15_0] : cfc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChoosePropUI] : cfd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ChoosePropUICtrl] : cfe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardCtrl] : cff +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardModel] : cfg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardUI/<>c] : cfh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardUI/<>c__DisplayClass17_0] : cfi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardUI/<>c__DisplayClass18_0] : cfj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardUI] : cfk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FirstRewardUICtrl] : cfl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndCtrl] : cfm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndModel] : cfn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndUI/<>c__DisplayClass6_0] : cfo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndUI/<>c__DisplayClass6_1] : cfp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndUI/<>c__DisplayClass6_2] : cfq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndUI/<>c__DisplayClass7_0] : cfr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndUI] : cfs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FxPlayData] : cft +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FXWndUICtrl] : cfu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameLoginCtrl] : cfv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameLoginModel] : cfw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameLoginUI] : cfx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameLoginUICtrl] : cfy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameMenuCtrl] : cfz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameMenuModel] : cga +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameMenuUI/<>c__DisplayClass12_0] : cgb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameMenuUI] : cgc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameMenuUICtrl] : cgd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultCtrl] : cge +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultModel] : cgf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultUI/<>c] : cgg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultUI/<>c__DisplayClass14_0] : cgh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultUI/<>c__DisplayClass15_0] : cgi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultUI] : cgj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameResultUICtrl] : cgk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GetTaskRewardCtrl] : cgl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GetTaskRewardModel] : cgm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GetTaskRewardUI/<>c] : cgn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GetTaskRewardUI] : cgo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GetTaskRewardUICtrl] : cgp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GoldRewardCtrl] : cgq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GoldRewardModel] : cgr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GoldRewardUI/<>c] : cgs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GoldRewardUI/<>c__DisplayClass15_0] : cgt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GoldRewardUI] : cgu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GoldRewardUICtrl] : cgv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GuideViewCtrl] : cgw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GuideViewModel] : cgx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GuideViewUI] : cgy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GuideViewUICtrl] : cgz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallCtrl] : cha +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallModel] : chb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallUI/<>c] : chc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallUI] : chd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallUICtrl/<>c] : che +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.HallUICtrl] : chf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.JoastCtrl] : chg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.JoastData] : chh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.JoastModel] : chi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.JoastUI/<>c__DisplayClass8_0] : chj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.JoastUI] : chk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.JoastUICtrl] : chl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LanguageViewCtrl] : chm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LanguageViewModel] : chn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LanguageViewUI/<>c__DisplayClass18_0] : cho +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LanguageViewUI] : chp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LanguageViewUICtrl] : chq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveCtrl] : chr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveModel] : chs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUI/<>c__DisplayClass19_0] : cht +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUI/<>c__DisplayClass20_0] : chu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUI] : chv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveData] : chw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUICtrl] : chx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailCtrl] : chy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailModel] : chz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailUI/<>c__DisplayClass16_0] : cia +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailUI/<>c__DisplayClass16_1] : cib +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailUI/<>c__DisplayClass7_0] : cic +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailUI] : cid +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveDetailUICtrl] : cie +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUnlockCtrl] : cif +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUnlockModel] : cig +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUnlockUI] : cih +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LiveUnlockUICtrl] : cii +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadingCtrl] : cij +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadingModel] : cik +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadingUI/d__12] : cil +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadingUI] : cim +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoadingUICtrl] : cin +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackCtrl] : cio +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackModel] : cip +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackUI/<>c] : ciq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackUI/<>c__DisplayClass16_0] : cir +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackUI/<>c__DisplayClass16_1] : cis +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackUI/<>c__DisplayClass21_0] : cit +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackUI] : ciu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LuckyPackUICtrl] : civ +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MailViewCtrl] : ciw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MailViewModel] : cix +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MailViewUI] : ciy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MailViewUICtrl] : ciz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainTabCtrl] : cja +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainTabModel] : cjb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainTabUI] : cjc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MainTabUICtrl] : cjd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MenuCtrl] : cje +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MenuModel] : cjf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MenuUI/<>c] : cjg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MenuUI] : cjh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MenuUICtrl] : cji +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetLoadingCtrl] : cjj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetLoadingModel] : cjk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetLoadingUI] : cjl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetLoadingUICtrl] : cjm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetworkErrorTipsCtrl] : cjn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetworkErrorTipsModel] : cjo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetworkErrorTipsUI] : cjp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NetworkErrorTipsUICtrl] : cjq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndCtrl] : cjr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndModel] : cjs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUI/<>c] : cjt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUI/<>c__DisplayClass14_0] : cju +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUI/<>c__DisplayClass17_0] : cjv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUI/<>c__DisplayClass17_1] : cjw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUI/<>c__DisplayClass17_2] : cjx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUI] : cjy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewEndUICtrl] : cjz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskCtrl] : cka +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskModel] : ckb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskUI/<>c] : ckc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskUI/<>c__DisplayClass28_0] : ckd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskUI/<>c__DisplayClass29_0] : cke +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskUI/<>c__DisplayClass31_0] : ckf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskUI] : ckg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ScrollItemData] : ckh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NewTaskUICtrl] : cki +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenBgCtrl] : ckj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenBgModel] : ckk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenBgUI] : ckl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenBgUICtrl] : ckm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenGameCtrl] : ckn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenGameModel] : cko +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenGameUI/<>c__DisplayClass8_0] : ckp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenGameUI] : ckq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.OpenGameUICtrl] : ckr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassunlockCtrl] : cks +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassunlockModel] : ckt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassunlockUI/<>c__DisplayClass10_0] : cku +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassunlockUI] : ckv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassunlockUICtrl] : ckw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewCtrl] : ckx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewModel] : cky +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewUI/<>c] : ckz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewUI/<>c__DisplayClass28_0] : cla +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewUI/<>c__DisplayClass31_0] : clb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewUI] : clc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PassViewUICtrl] : cld +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PayloadingCtrl] : cle +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PayloadingModel] : clf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PayloadingUI] : clg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PayloadingUICtrl] : clh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PersonViewCtrl] : cli +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PersonViewModel] : clj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PersonalUI/<>c__DisplayClass17_0] : clk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PersonalUI] : cll +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PersonViewUICtrl] : clm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayCtrl] : cln +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayModel] : clo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c] : clp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass58_0] : clq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass64_0] : clr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass71_0] : cls +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass85_0] : clt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass85_1] : clu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass96_0] : clv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass96_1] : clw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass96_2] : clx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass96_3] : cly +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass96_4] : clz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI/<>c__DisplayClass96_5] : cma +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUI] : cmb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RainPlayUICtrl] : cmc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrivacyCtrl] : cme +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrivacyModel] : cmf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrivacyUI/<>c] : cmg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrivacyUI] : cmh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PrivacyUICtrl] : cmi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RecordViewCtrl] : cmj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RecordViewModel] : cmk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RecordViewUI/d__20] : cml +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RecordViewUI] : cmm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GObjectMoveFunc/<>c__DisplayClass0_0] : cmn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GObjectMoveFunc] : cmo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RecordViewUICtrl] : cmp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardCtrl] : cmq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardModel] : cmr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardUI/<>c] : cms +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardUI] : cmt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardUICtrl] : cmu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniCtrl] : cmv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniModel] : cmw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniData] : cmx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniUI/<>c__DisplayClass20_0] : cmy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniUI/<>c__DisplayClass20_1] : cmz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniUI] : cna +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardAniUICtrl] : cnb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardboxCtrl] : cnc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardboxModel] : cnd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardboxUI/<>c] : cne +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardboxUI] : cnf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardboxUICtrl] : cng +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardMulNewCtrl] : cnh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardMulNewModel] : cni +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardMulNewUI/<>c] : cnj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardMulNewUI] : cnk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.RewardMulNewUICtrl] : cnl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ScAlbumLockCtrl] : cnm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ScAlbumLockModel] : cnn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ScAlbumLockUI] : cno +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ScAlbumLockUICtrl] : cnp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsCtrl] : cnq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsModel] : cnr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsUI/<>c__DisplayClass26_0] : cns +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsUI/<>c__DisplayClass27_0] : cnu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsUI] : cnv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AlbumPreviewData] : cnw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockPayType] : cnx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsUICtrl] : cny +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextCtrl] : cnz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextModel] : coa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextUI/<>c] : cob +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextUI/<>c__DisplayClass19_0] : coc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextUI/<>c__DisplayClass21_0] : cod +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextUI] : coe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DetailData] : cof +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretAlbumsNextUICtrl] : cog +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretDetailCtrl] : coh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretDetailModel] : coi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretDetailUI/<>c__DisplayClass16_0] : coj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretDetailUI] : cok +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretDetailUICtrl] : com +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockCtrl] : con +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockModel] : coo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockUI/<>c__DisplayClass15_0] : cop +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockUI/<>c__DisplayClass15_1] : coq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockUI/<>c__DisplayClass15_2] : cor +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockUI] : cos +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SecretUnlockUICtrl] : cot +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldCtrl] : cou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldModel] : cov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldUI/<>c] : cow +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldUI/<>c__DisplayClass15_0] : cox +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldUI/<>c__DisplayClass21_0] : coy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldUI] : coz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BuygoldUICtrl] : cpa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewCtrl] : cpb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewModel] : cpc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUI/<>c] : cpd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUI/<>c__DisplayClass17_0] : cpe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUI/<>c__DisplayClass17_1] : cpf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUI/<>c__DisplayClass17_2] : cpg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUI/<>c__DisplayClass19_0] : cph +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUI] : cpi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SignInViewUICtrl] : cpj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SubUnlockCtrl] : cpk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SubUnlockModel] : cpl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SubUnlockUI/<>c__DisplayClass16_0] : cpm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SubUnlockUI] : cpn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SubUnlockUICtrl] : cpo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftCtrl] : cpp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftModel] : cpq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftUI/<>c] : cpr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftUI/<>c__DisplayClass18_0] : cps +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftUI/<>c__DisplayClass18_1] : cpt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftUI/<>c__DisplayClass9_0] : cpu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftUI] : cpv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ThreeDaysGiftUICtrl] : cpw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TipsViewCtrl] : cpx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TipsViewModel] : cpy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TipsViewUI/<>c__DisplayClass12_0] : cpz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TipsViewUI] : cqa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TipsViewUICtrl] : cqb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelCtrl] : cqc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelModel] : cqd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelUI] : cqe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelUICtrl] : cqf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelNewCtrl] : cqg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelNewModel] : cqh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelNewUI/<>c__DisplayClass15_0] : cqi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelNewUI/<>c__DisplayClass16_0] : cqj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelNewUI] : cqk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Levelunlock] : cql +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockLevelNewUICtrl] : cqm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockTipsCtrl] : cqn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockTipsModel] : cqo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockTipsUI] : cqp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnlockTipsUICtrl] : cqq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VipClubViewCtrl] : cqr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VipClubViewModel] : cqs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VipClubViewUI/<>c] : cqt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VipClubViewUI] : cqu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.VipClubViewUICtrl] : cqv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.H5Ctrl] : cqw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.H5Model] : cqx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.H5UI/<>c__DisplayClass25_0] : cqy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.H5UI/<>c__DisplayClass32_0] : cqz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.H5UI] : cra +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.H5UICtrl] : crb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WheelViewCtrl] : crd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WheelViewModel] : cre +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WheelViewUI/<>c__DisplayClass31_0] : crf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WheelViewUI/<>c__DisplayClass32_0] : crg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WheelViewUI] : crh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WheelViewUICtrl] : cri +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseCtrl] : crj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseUICtrl] : crk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseModel] : crl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.BaseUI] : crm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SubUI] : crn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIInfoConst] : cro +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIInfo] : crp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UILayerType] : crq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIGComType] : crr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GObjectPool] : crs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GObjectsPool] : cru +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ListPool`1] : crv`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ObjectPool`1] : crw`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.AppManagerRegister] : crx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ManagerRegister] : cry +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SceneManagerRegister] : crz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UIManagerRegister] : csa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SaveData] : csb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Saveobject] : csc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ISingleton] : csd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Singleton`1] : cse`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SuperApplication/<>c] : csf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.SuperApplication/d__18] : csg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ConsumeSystem] : csh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ConsumeVal] : csi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GameDataSystem] : csj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WindowSystem/<>c] : csk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WindowSystem/<>c__DisplayClass9_0] : csl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.WindowSystem] : csm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ConfigSystem/<>c] : csn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.ConfigSystem] : cso +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoginSystem/<>c] : csp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.LoginSystem] : csq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PlayDataSystem/<>c] : csr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PlayDataSystem] : css +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Throttle] : cst +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.EventKit] : csu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.GeneralKit] : csv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TaskSequence/<>c__DisplayClass7_0] : csw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TaskSequence] : csx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TaskProcedure] : csy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NormalTimer/TimerTask] : csz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NormalTimer/TimerMode] : cta +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.NormalTimer/<>c] : ctb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TimerTask] : ctc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Timer/<>c] : ctd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.TimerHelper] : cte +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.UnitConvertUtil] : ctf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.DOTweenHelper] : ctg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.FGUIHelper] : cth +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.PlayerPrefsKit] : cti +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.Rescrypt] : ctj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c] : ctk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass27_0] : ctl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass28_0] : ctm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MaxADKit/<>c__DisplayClass8_0] : ctn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MaxADKit/d__23] : cto +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] BallKingdomCrush.MaxADKit] : ctp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.IDynamicSuperProperties] : ctq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsEvent/Type] : ctr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsEvent] : cts +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.TDFirstEvent] : ctt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.TDUpdatableEvent] : ctu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.TDOverWritableEvent] : ctv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.AUTO_TRACK_EVENTS] : ctw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsAPI/Token] : ctx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsAPI/TATimeZone] : cty +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsAPI/TAMode] : ctz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.DataEyeAnalyticsAPI/NetworkType] : cua +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Wrapper.DataEyeAnalyticsWrapper] : cub +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_Log] : cuc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON/Parser/TOKEN] : cud +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON/Parser] : cue +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON/Serializer] : cuf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_MiniJSON] : cug +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] DataEyeAnalytics.Utils.DE_PropertiesChecker] : cuh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : cui +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : cuj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : cuk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : cul +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] SharpJson.Lexer/Token] : cum +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] SharpJson.Lexer] : cun +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] SharpJson.JsonDecoder] : cuo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Animation] : cup +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Timeline] : cuq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.MixBlend] : cur +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.MixDirection] : cus +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TimelineType] : cut +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IBoneTimeline] : cuu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ISlotTimeline] : cuv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.CurveTimeline] : cuw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.RotateTimeline] : cux +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TranslateTimeline] : cuy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ScaleTimeline] : cuz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ShearTimeline] : cva +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ColorTimeline] : cvb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TwoColorTimeline] : cvc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AttachmentTimeline] : cvd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.DeformTimeline] : cve +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventTimeline] : cvf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.DrawOrderTimeline] : cvg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IkConstraintTimeline] : cvh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformConstraintTimeline] : cvi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintPositionTimeline] : cvj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintSpacingTimeline] : cvk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintMixTimeline] : cvl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationState/TrackEntryDelegate] : cvm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationState/TrackEntryEventDelegate] : cvn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationState] : cvo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TrackEntry] : cvp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventQueue/EventQueueEntry] : cvq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventQueue/EventType] : cvr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventQueue] : cvs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Pool`1/IPoolable] : cvt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Pool`1] : cvu`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationStateData/AnimationPair] : cvv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationStateData/AnimationPairComparer] : cvw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationStateData] : cvx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Atlas] : cvy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Format] : cvz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TextureFilter] : cwa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TextureWrap] : cwb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AtlasPage] : cwc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AtlasRegion] : cwd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TextureLoader] : cwe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AtlasAttachmentLoader] : cwf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Attachment] : cwg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IHasRendererObject] : cwh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AttachmentLoader] : cwi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AttachmentType] : cwj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.BoundingBoxAttachment] : cwk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ClippingAttachment] : cwl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.MeshAttachment] : cwm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathAttachment] : cwn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PointAttachment] : cwo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.RegionAttachment] : cwp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.VertexAttachment] : cwq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.BlendMode] : cwr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Bone] : cws +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.BoneData] : cwt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformMode] : cwu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ConstraintData] : cwv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Event] : cww +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventData] : cwx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ExposedList`1/Enumerator] : cwy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ExposedList`1] : cwz`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IkConstraint] : cxa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IkConstraintData] : cxb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IUpdatable] : cxc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Json] : cxd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.MathUtils] : cxe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IInterpolation] : cxf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Pow] : cxg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PowOut] : cxh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraint] : cxi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintData] : cxj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PositionMode] : cxk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SpacingMode] : cxl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.RotateMode] : cxm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skeleton] : cxn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBinary/Vertices] : cxo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBinary/SkeletonInput] : cxp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBinary] : cxq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBounds] : cxr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Polygon] : cxs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonClipping] : cxt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonData] : cxu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonJson/LinkedMesh] : cxv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonJson] : cxw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skin/SkinEntry] : cxx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skin/SkinEntryComparer] : cxy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skin] : cxz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Slot] : cya +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SlotData] : cyb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformConstraint] : cyc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformConstraintData] : cyd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Triangulator] : cye +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.BoneMatrix] : cyf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SpineSkeletonExtensions] : cyg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.BlendModeMaterials/ReplacementMaterial] : cyh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.RegionlessAttachmentLoader] : cyi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility/SourceType] : cyj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility/VersionInfo] : cyk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility/CompatibilityProblemInfo] : cyl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility] : cym +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MaterialsTextureLoader] : cyn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineSpriteAtlasAsset/SavedRegionInfo] : cyo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.BoneFollower/AxisOrientation] : cyp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRootMotionBase/RootMotionInfo] : cyq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonGraphic/SkeletonRendererDelegate] : cyr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/OnClipAppliedDelegate] : cys +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/MixMode] : cyt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/ClipInfos] : cyu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/AnimationClipEqualityComparer] : cyv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/IntEqualityComparer] : cyw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator] : cyx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRenderer/SpriteMaskInteractionMaterials] : cyy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRenderer/InstructionDelegate] : cyz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRenderer/SkeletonRendererDelegate] : cza +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRenderer/<>c__DisplayClass75_0] : czb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonGraphicCustomMaterials/AtlasMaterialOverride] : czc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonGraphicCustomMaterials/AtlasTextureOverride] : czd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRendererCustomMaterials/SlotMaterialOverride] : cze +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRendererCustomMaterials/AtlasMaterialOverride] : czf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonPartsRenderer/SkeletonPartsRendererDelegate] : czg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonUtility/SkeletonUtilityDelegate] : czh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonUtilityBone/Mode] : czi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonUtilityBone/UpdatePhase] : czj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.UpdateMode] : czk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.UpdateBonesDelegate] : czl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.ISkeletonAnimation] : czm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IHasSkeletonDataAsset] : czn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.ISkeletonComponent] : czo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IAnimationStateComponent] : czp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IHasSkeletonRenderer] : czq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IHasSkeletonComponent] : czr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.DoubleBuffered`1] : czs`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshGeneratorDelegate] : czt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshGeneratorBuffers] : czu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshGenerator/Settings] : czv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshGenerator] : czw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshRendererBuffers/SmartMesh] : czx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshRendererBuffers] : czy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRendererInstruction] : czz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineMesh] : daa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SubmeshInstruction] : dab +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.BlendModeMaterialsAsset/AtlasMaterialCache] : dac +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAttributeBase] : dad +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineBone] : dae +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineSlot] : daf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAnimation] : dag +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineEvent] : dah +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineIkConstraint] : dai +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineTransformConstraint] : daj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpinePathConstraint] : dak +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineSkin] : dal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAttachment/Hierarchy] : dam +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAttachment] : dan +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAtlasRegion] : dao +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonExtensions] : dap +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimation/AnimationEventTypes] : daq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimation] : dar +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimationComplete] : das +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimationEnd] : dat +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineEvent] : dau +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineTrackEntryEnd] : dav +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AnimationTools.TimelineExtensions] : daw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.AtlasUtilities/IntAndAtlasRegionKey] : dax +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.AttachmentCloneExtensions] : daz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.AttachmentRegionExtensions] : dba +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.SkinUtilities] : dbb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.Deprecated.SlotBlendModes/MaterialTexturePair] : dbc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.Deprecated.SlotBlendModes/MaterialWithRefcount] : dbd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.Deprecated.SlotBlendModes/SlotMaterialTextureTuple] : dbe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2/KeyCollection] : dbf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2/ValueCollection] : dbg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2/d__34] : dbh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2] : dbi`2 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionaryDebugView`2] : dbj`2 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.CollectionExtensions] : dbk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BigoAds] AdHelper/Task] : dbl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BigoAds] AdHelper/DestryAdTask] : dbm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BigoAds] AdHelper] : dbn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : dbo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dbp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxCmpService] : dbq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxCmpError/ErrorCode] : dbr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxCmpError] : dbs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxEvents/AppLovin] : dbt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxEvents] : dbu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdk] : dbv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkAndroid/BackgroundCallbackProxy] : dbw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkAndroid] : dbx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/ConsentFlowUserGeography] : dby +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/InitializationStatus] : dbz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/AdViewPosition] : dca +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/AdViewConfiguration] : dcb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/SdkConfiguration] : dcc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/Reward] : dcd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/ErrorCode] : dce +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/MaxAdLoadState] : dcf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/AdInfo] : dcg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/WaterfallInfo/<>c] : dch +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/WaterfallInfo] : dci +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/NetworkResponseInfo/<>c] : dcj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/NetworkResponseInfo] : dck +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/MediatedNetworkInfo] : dcl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/ErrorInfo] : dcm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/SafeAreaInsets] : dcn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/BannerPosition] : dco +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/ConsentDialogState] : dcp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase] : dcq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AdPositionExtenstion] : dcr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/Interstitial] : dcs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/AppOpen] : dct +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/Rewarded] : dcu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/Banner] : dcv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/MRec] : dcw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass15_0`1] : dcx`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass16_0`2] : dcy`2 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass17_0`3] : dcz`3 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks] : dda +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkiOS/ALUnityBackgroundCallback] : ddb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkiOS] : ddc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkLogger] : ddd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkUtils/VersionComparisonResult] : dde +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkUtils/<>c__DisplayClass27_0] : ddf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkUtils] : ddg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSegmentCollection/MaxSegmentCollectionBuilder] : ddh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : ddi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : ddj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.ThirdParty.MiniJson.Json/Parser/TOKEN] : ddk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.ThirdParty.MiniJson.Json/Parser] : ddl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.ThirdParty.MiniJson.Json/Serializer] : ddm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.ThirdParty.MiniJson.Json] : ddn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor/MaxAction] : ddo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor/<>c__DisplayClass6_0] : ddp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.WebRequestType] : ddq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.WebRequestConfig] : ddr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.WebResponse] : dds +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c] : ddt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c__DisplayClass5_0] : ddu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c__DisplayClass6_0] : ddv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/d__5] : ddw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/d__8] : ddx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest] : ddy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequestExtension/d__0] : ddz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequestExtension] : dea +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : deb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dec +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogLogcatListener] : ded +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleAttribute] : dee +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleCustomTypeParserAttribute] : deg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleMethodAttribute] : deh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.CircularBuffer`1] : dei`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DynamicCircularBuffer`1] : dej`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleMethodInfo] : dek +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogConsole/ParseFunction] : del +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogConsole/CommandExecutedDelegate] : dem +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogConsole/<>c] : den +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogEntry] : deo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.QueuedDebugLogEntry] : dep +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogEntryTimestamp] : deq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogEntryContentEqualityComparer] : der +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogFilter] : des +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.PopupVisibility] : det +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogPopup/d__25] : deu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] Microsoft.CodeAnalysis.EmbeddedAttribute] : dev +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] System.Runtime.CompilerServices.NullableAttribute] : dew +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] System.Runtime.CompilerServices.NullableContextAttribute] : dex +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFInAppEvents] : dey +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] InAppPurchaseValidationResult] : dez +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ProductPurchase] : dfa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ValidationFailureData] : dfb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionValidationResult] : dfc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionPurchase] : dfd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] CanceledStateContext] : dfe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ExternalAccountIdentifiers] : dff +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionPurchaseLineItem] : dfg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] PausedStateContext] : dfh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscribeWithGoogleInfo] : dfi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] TestPurchase] : dfj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] DeveloperInitiatedCancellation] : dfk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ReplacementCancellation] : dfl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SystemInitiatedCancellation] : dfm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] UserInitiatedCancellation] : dfn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AutoRenewingPlan] : dfo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] DeferredItemReplacement] : dfp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] OfferDetails] : dfq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] PrepaidPlan] : dfr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] CancelSurveyResult] : dfs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionItemPriceChangeDetails] : dft +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] Money] : dfu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : dfv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dfw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json/Parser/TOKEN] : dfx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json/Parser] : dfy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json/Serializer] : dfz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json] : dga +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] IKwaiAdListener] : dgb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiAdsMgr/InitResultCallbackImpl] : dgc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiAdsMgr] : dgd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiLog] : dge +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiInterAd/InterstitialAdListener] : dgf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiInterAd/InterstitialAdLoadListener] : dgg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiInterAd] : dgh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiVideoAd/RewardAdListener] : dgi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiVideoAd/RewardAdLoadListener] : dgj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiVideoAd] : dgk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : dgl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dgm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : dgn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dgo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio/<>c__DisplayClass0_0] : dgp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio/<>c__DisplayClass1_0] : dgq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio/<>c__DisplayClass2_0] : dgr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio] : dgs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass0_0] : dgt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass10_0] : dgu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass1_0] : dgv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass2_0] : dgw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass3_0] : dgx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass4_0] : dgy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass5_0] : dgz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass6_0] : dha +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass7_0] : dhb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass8_0] : dhc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass9_0] : dhd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics] : dhe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass0_0] : dhf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass1_0] : dhg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass2_0] : dhh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass3_0] : dhi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass4_0] : dhj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass5_0] : dhk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass6_0] : dhl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D] : dhm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite/<>c__DisplayClass0_0] : dhn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite/<>c__DisplayClass1_0] : dho +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite/<>c__DisplayClass3_0] : dhp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite] : dhq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/Utils] : dhr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass0_0] : dhs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass10_0] : dht +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass11_0] : dhu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass12_0] : dhv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass13_0] : dhw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass14_0] : dhx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass15_0] : dhy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass16_0] : dhz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass17_0] : dia +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass18_0] : dib +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass19_0] : dic +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass1_0] : did +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass20_0] : die +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass21_0] : dif +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass22_0] : dih +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass23_0] : dii +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass24_0] : dij +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass25_0] : dik +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass26_0] : dil +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass27_0] : dim +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass28_0] : din +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass29_0] : dio +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass2_0] : dip +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass30_0] : diq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass31_0] : dir +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass32_0] : dis +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass33_0] : dit +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass34_0] : diu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass35_0] : div +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass36_0] : diw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass37_0] : dix +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass38_0] : diy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass39_0] : diz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass3_0] : dja +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass40_0] : djb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass4_0] : djc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass5_0] : djd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass7_0] : dje +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass8_0] : djf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass9_0] : djg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI] : djh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/<>c__DisplayClass8_0] : dji +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/<>c__DisplayClass9_0] : djj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/d__10] : djk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/d__13] : djl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/d__12] : djm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/d__14] : djn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/d__11] : djo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/d__15] : djp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion] : djq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForCompletion] : djr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForRewind] : djs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForKill] : djt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForElapsedLoops] : dju +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForPosition] : djv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForStart] : djw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction] : djx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils/Physics] : djy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils] : djz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : dka +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dkb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/ImageProperties] : dkc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/VideoProperties] : dkd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/PermissionType] : dke +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/Permission] : dkf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/MediaType] : dkg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/ImageOrientation] : dkh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/PermissionCallback] : dki +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/MediaSaveCallback] : dkj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/MediaPickCallback] : dkk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/MediaPickMultipleCallback] : dkl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass25_0] : dkm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass48_0] : dkn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass49_0] : dko +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass52_0] : dkp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass53_0] : dkq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass56_0`1] : dkr`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass58_0] : dks +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/<>c__DisplayClass60_0] : dkt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/d__60] : dku +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/d__58] : dkv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery/d__56`1] : dkw`1 +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGallery] : dkx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : dky +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dkz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGalleryNamespace.NGMediaReceiveCallbackAndroid/<>c__DisplayClass4_0] : dla +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGalleryNamespace.NGMediaReceiveCallbackAndroid/<>c__DisplayClass5_0] : dlb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGalleryNamespace.NGMediaReceiveCallbackAndroid] : dlc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGalleryNamespace.NGPermissionCallbackAndroid/<>c__DisplayClass3_0] : dld +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NativeGallery.Runtime] NativeGalleryNamespace.NGPermissionCallbackAndroid] : dle +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : dlf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dlg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenAnimation/AnimationType] : dlh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenAnimation/TargetType] : dli +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenAnimationExtensions] : dlj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenProShortcuts/<>c__DisplayClass1_0] : dlk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenProShortcuts/<>c__DisplayClass2_0] : dll +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenProShortcuts] : dlm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.TMPSkewSpanMode] : dln +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass0_0] : dlo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass10_0] : dlp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass1_0] : dlq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass2_0] : dlr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass4_0] : dls +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass5_0] : dlt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass6_0] : dlu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass7_0] : dlv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass8_0] : dlw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass9_0] : dlx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText] : dly +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/CharVertices] : dlz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/CharTransform] : dma +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass32_0] : dmb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass33_0] : dmc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass34_0] : dmd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass35_0] : dme +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass37_0] : dmf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass38_0] : dmg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass39_0] : dmh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass41_0] : dmi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass43_0] : dmj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass44_0] : dmk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass46_0] : dml +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator] : dmm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] MainThreadUtil/<>c__DisplayClass9_0] : dmn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] WaitForUpdate/MainThreadAwaiter] : dmo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] WaitForUpdate/d__4] : dmp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] WaitForUpdate] : dmq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : dmr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dms +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketOpenEventHandler] : dmt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketMessageEventHandler] : dmu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketErrorEventHandler] : dmv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketCloseEventHandler] : dmw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketCloseCode] : dmx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketState] : dmy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.IWebSocket] : dmz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketHelpers] : dna +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketException] : dnb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketUnexpectedException] : dnc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketInvalidArgumentException] : dnd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketInvalidStateException] : dne +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WaitForBackgroundThread/<>c] : dnf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WaitForBackgroundThread] : dng +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket/d__37] : dnh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket/d__27] : dni +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket/d__33] : dnj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket/d__36] : dnk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket/d__32] : dnl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket] : dnm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketFactory] : dnn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[WebView] WebViewObject/<>c__DisplayClass29_0] : dno +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[WebView] WebViewObject/d__30] : dnp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] : dnq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : dnr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] ThisAssembly] : dns +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.AttributeCertificateHolder] : dnt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.AttributeCertificateIssuer] : dnu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.DeltaCertificateTool] : dnv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.IX509Extension] : dnw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.PemParser] : dnx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.PrincipalUtilities] : dny +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.SubjectPublicKeyInfoFactory] : dnz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509AttrCertParser] : doa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Attribute] : dob +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate/CachedEncoding] : doc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate] : dod +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertificatePair] : doe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertificateParser/d__11] : dof +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertificateParser] : dog +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CertPairParser] : doh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Crl/CachedEncoding] : doi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Crl] : doj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CrlEntry] : dok +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CrlParser/d__13] : dol +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509CrlParser] : dom +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509ExtensionBase] : don +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509KeyUsage] : doo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509SignatureUtilities] : dop +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Utilities] : doq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V1CertificateGenerator] : dor +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificate/<>c] : dos +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificate] : dot +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificateGenerator] : dou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2CrlGenerator] : dov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V3CertificateGenerator] : dow +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509AttrCertStoreSelector] : dox +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509CertPairStoreSelector] : doy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509CertStoreSelector] : doz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.X509CrlStoreSelector] : dpa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Store.ICheckingCertificate] : dpb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Extension.AuthorityKeyIdentifierStructure] : dpc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Extension.SubjectKeyIdentifierStructure] : dpd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.Extension.X509ExtensionUtilities] : dpe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Arrays] : dpf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.BigIntegers] : dpg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Bytes] : dph +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Enums] : dpi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IEncodable] : dpj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IMemoable] : dpk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Integers] : dpl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Longs] : dpm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.MemoableResetException] : dpn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Objects] : dpo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Platform] : dpp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Shorts] : dpq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Strings] : dpr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Adler32] : dps +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Deflate/Config] : dpt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Deflate] : dpu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.InfBlocks] : dpv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.InfCodes] : dpw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Inflate] : dpx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.InfTree] : dpy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.JZlib] : dpz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.StaticTree] : dqa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.Tree] : dqb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZInputStream] : dqc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZInputStreamLeaveOpen] : dqd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZOutputStream] : dqe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZOutputStreamLeaveOpen] : dqf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Zlib.ZStream] : dqg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Net.IPAddress] : dqh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BaseInputStream] : dqi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BaseOutputStream] : dqj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BinaryReaders] : dqk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BinaryWriters] : dql +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.BufferedFilterStream] : dqm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.FilterStream] : dqn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.LimitedBuffer] : dqo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.LimitedInputStream] : dqp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.PushbackStream/d__2] : dqq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.PushbackStream] : dqr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.StreamOverflowException] : dqs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Streams/d__8] : dqt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Streams/d__20] : dqu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Streams] : dqv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.TeeInputStream] : dqw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.TeeOutputStream] : dqx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemGenerationException] : dqy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemHeader] : dqz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObject] : dra +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObjectGenerator] : drb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObjectParser] : drc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemReader] : drd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemWriter] : dre +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Compression.Bzip2] : drf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Compression.Zip] : drg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Compression.ZLib] : drh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.Base64] : dri +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.Base64Encoder] : drj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.BufferedDecoder] : drk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.BufferedEncoder] : drl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.Hex] : drm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.HexEncoder] : drn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.HexTranslator] : dro +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.IEncoder] : drp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.ITranslator] : drq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.UrlBase64] : drr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Encoders.UrlBase64Encoder] : drs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Date.DateTimeUtilities] : drt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.Collections.CollectionUtilities/d__15`2::System.IDisposable.Dispose()] : ljh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.CollectionUtilities/d__15`2::System.Collections.Generic.IEnumerator.get_Current()] : ljj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.CollectionUtilities/d__15`2::System.Collections.IEnumerator.get_Current()] : ljl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.CollectionUtilities/d__15`2::System.Collections.IEnumerable.GetEnumerator()] : ljn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Utilities.Collections.EnumerableProxy`1::System.Collections.IEnumerable.GetEnumerator()] : ljo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Utilities.Collections.ReadOnlyCollection`1::System.Collections.IEnumerable.GetEnumerator()] : ljp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::System.Collections.IEnumerable.GetEnumerator()] : ljq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] V Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionary`2::Lookup(K)] : ljr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] V Org.BouncyCastle.Utilities.Collections.ReadOnlyDictionaryProxy`2::Lookup(K)] : ljr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::System.Collections.IEnumerable.GetEnumerator()] : ljs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] T Org.BouncyCastle.Utilities.Collections.ReadOnlyList`1::Lookup(System.Int32)] : ljt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] T Org.BouncyCastle.Utilities.Collections.ReadOnlyListProxy`1::Lookup(System.Int32)] : ljt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::System.Collections.IEnumerable.GetEnumerator()] : lju +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.ReadOnlySet`1::System.Collections.Generic.ICollection.Add(T)] : ljv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.StoreImpl`1/-EnumerateMatches>d__2::System.IDisposable.Dispose()] : ljw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.StoreImpl`1/-EnumerateMatches>d__2::<>m__Finally1()] : ljx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] T Org.BouncyCastle.Utilities.Collections.StoreImpl`1/-EnumerateMatches>d__2::System.Collections.Generic.IEnumerator.get_Current()] : ljy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Collections.StoreImpl`1/-EnumerateMatches>d__2::System.Collections.IEnumerator.Reset()] : ljz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Utilities.Collections.StoreImpl`1/-EnumerateMatches>d__2::System.Collections.IEnumerator.get_Current()] : lka +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Utilities.Collections.StoreImpl`1/-EnumerateMatches>d__2::System.Collections.Generic.IEnumerable.GetEnumerator()] : lkb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Utilities.Collections.StoreImpl`1/-EnumerateMatches>d__2::System.Collections.IEnumerable.GetEnumerator()] : lkc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Utilities.Collections.StoreImpl`1::Org.BouncyCastle.Utilities.Collections.IStore.EnumerateMatches(Org.BouncyCastle.Utilities.Collections.ISelector`1)] : lkd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::BeginBlock()] : lke +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::EndBlock()] : lkf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::Detach(System.Boolean)] : lkg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::ImplDisposing(System.Boolean)] : lkh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::BsGetBit()] : lki +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::BsGetBits(System.Int32)] : lkj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::BsGetBitsSmall(System.Int32)] : lkk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::BsGetInt32()] : lkl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::BsGetLong48()] : lkm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::HbCreateDecodeTables(System.Int32[],System.Int32[],System.Int32[],System.Byte[],System.Int32,System.Int32,System.Int32)] : lkn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::RecvDecodingTables()] : lko +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::GetAndMoveToFrontDecode()] : lkp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::RequireByte()] : lkq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::SetupRandPartA()] : lkr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::SetupNoRandPartA()] : lks +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::SetupRandPartB()] : lkt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::SetupNoRandPartB()] : lku +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::SetupRandPartC()] : lkv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2InputStream::SetupNoRandPartC()] : lkw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::HbMakeCodeLengths(System.Byte[],System.Int32[],System.Int32,System.Int32)] : lkx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::WriteRun()] : lky +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::Detach(System.Boolean)] : lkz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::ImplDisposing(System.Boolean)] : lla +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::InitBlock()] : llb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::EndBlock()] : llc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::EndCompression()] : lld +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::HbAssignCodes(System.Int32[],System.Byte[],System.Int32,System.Int32,System.Int32)] : lle +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::BsFinishedWithStream()] : llf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::BsPutBit(System.Int32)] : llg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::BsPutBits(System.Int32,System.Int32)] : llh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::BsPutBitsSmall(System.Int32,System.Int32)] : lli +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::BsPutInt32(System.Int32)] : llj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::BsPutLong48(System.Int64)] : llk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::SendMtfValues()] : lll +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::MoveToFrontCodeAndSend()] : llm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::SimpleSort(System.Int32,System.Int32,System.Int32)] : lln +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::Vswap(System.Int32,System.Int32,System.Int32)] : llo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::Med3(System.Int32,System.Int32,System.Int32)] : llp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::PushStackElem(System.Collections.Generic.IList`1,System.Int32,System.Int32,System.Int32,System.Int32)] : llq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::QSort3(System.Int32,System.Int32,System.Int32)] : llr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::MainSort()] : lls +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::RandomiseBlock()] : llt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::DoReversibleTransformation()] : llu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::FullGtU(System.Int32,System.Int32)] : llv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Utilities.Bzip2.CBZip2OutputStream::GenerateMtfValues()] : llw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tsp.GenTimeAccuracy::GetTimeComponent(Org.BouncyCastle.Asn1.DerInteger)] : llx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TimeStampReq Org.BouncyCastle.Tsp.TimeStampRequest::ParseTimeStampReq(System.Byte[])] : lly +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TimeStampReq Org.BouncyCastle.Tsp.TimeStampRequest::ParseTimeStampReq(System.IO.Stream)] : llz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Tsp.TimeStampRequest::GetX509Extensions()] : lfk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TimeStampResp Org.BouncyCastle.Tsp.TimeStampResponse::ParseTimeStampResp(System.Byte[])] : lma +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TimeStampResp Org.BouncyCastle.Tsp.TimeStampResponse::ParseTimeStampResp(System.IO.Stream)] : lmb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponseGenerator::AddStatusString(System.String)] : lmc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tsp.TimeStampResponseGenerator::SetFailInfoField(System.Int32)] : lmd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiStatusInfo Org.BouncyCastle.Tsp.TimeStampResponseGenerator::GetPkiStatusInfo()] : lme +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tsp.TimeStampToken::ValidateIssuer(Org.BouncyCastle.Asn1.X509.GeneralNames,Org.BouncyCastle.Asn1.X509.X509Name)] : lmf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Tsp.TimeStampTokenGenerator::WithResolution(System.DateTime,Org.BouncyCastle.Tsp.Resolution)] : lmg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TstInfo Org.BouncyCastle.Tsp.TimeStampTokenInfo::ParseTstInfo(System.Byte[])] : lmh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsClient::AllowUnexpectedServerExtension(System.Int32,System.Byte[])] : lmi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsClient::GetNamedGroupRoles()] : lmj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.AbstractTlsClient::CheckForUnexpectedServerExtension(System.Collections.Generic.IDictionary`2,System.Int32)] : lmk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.AbstractTlsClient::GetNewConnectionID()] : lml +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsClient::GetCertificateAuthorities()] : lmm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsClient::GetProtocolNames()] : lmn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateStatusRequest Org.BouncyCastle.Tls.AbstractTlsClient::GetCertificateStatusRequest()] : lmo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsClient::GetMultiCertStatusRequest()] : lmp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsClient::GetSniServerNames()] : lmq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsClient::GetSupportedGroups(System.Collections.Generic.IList`1)] : lmr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsClient::GetSupportedSignatureAlgorithms()] : lms +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsClient::GetSupportedSignatureAlgorithmsCert()] : lmt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsClient::GetTrustedCAIndication()] : lmu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.AbstractTlsClient::GetAllowedClientCertificateTypes()] : lmv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.AbstractTlsClient::GetAllowedServerCertificateTypes()] : lmw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.AbstractTlsContext::NextCounterValue()] : lmx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsNonceGenerator Org.BouncyCastle.Tls.AbstractTlsContext::CreateNonceGenerator(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Int32)] : lmy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.AbstractTlsContext::ExportKeyingMaterial13(Org.BouncyCastle.Tls.Crypto.TlsSecret,System.Int32,System.String,System.Byte[],System.Int32)] : lmz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.AbstractTlsContext::CheckEarlyExportSecret(Org.BouncyCastle.Tls.Crypto.TlsSecret)] : lna +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.AbstractTlsContext::CheckExportSecret(Org.BouncyCastle.Tls.Crypto.TlsSecret)] : lnb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.AbstractTlsPeer::GetSupportedVersions()] : lnc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.AbstractTlsPeer::GetSupportedCipherSuites()] : lnd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsServer::AllowCertificateStatus()] : lne +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsServer::AllowEncryptThenMac()] : lnf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsServer::AllowMultiCertStatus()] : lng +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsServer::AllowTruncatedHmac()] : lnh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsServer::AllowTrustedCAIndication()] : lni +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.AbstractTlsServer::GetDetailMessageNoCipherSuite()] : lnj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.AbstractTlsServer::GetMaximumDefaultCurveBits()] : lnk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.AbstractTlsServer::GetMaximumDefaultFiniteFieldBits()] : lnl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.AbstractTlsServer::GetMaximumNegotiableCurveBits()] : lnm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.AbstractTlsServer::GetMaximumNegotiableFiniteFieldBits()] : lnn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.AbstractTlsServer::GetProtocolNames()] : lno +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsServer::IsSelectableCipherSuite(System.Int32,System.Int32,System.Int32,System.Collections.Generic.IList`1)] : lnp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsServer::PreferLocalCipherSuites()] : lnq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsServer::SelectCipherSuite(System.Int32)] : lnr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.AbstractTlsServer::SelectDH(System.Int32)] : lns +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.AbstractTlsServer::SelectDHDefault(System.Int32)] : lnt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.AbstractTlsServer::SelectECDH(System.Int32)] : lnu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.AbstractTlsServer::SelectECDHDefault(System.Int32)] : lnv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.AbstractTlsServer::SelectProtocolName()] : lnw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolName Org.BouncyCastle.Tls.AbstractTlsServer::SelectProtocolName(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] : lnx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsServer::ShouldSelectProtocolNameEarly()] : lny +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.AbstractTlsServer::PreferLocalClientCertificateTypes()] : lnz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.AbstractTlsServer::GetAllowedClientCertificateTypes()] : loa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.AbstractTlsServer::GetNewConnectionID()] : lob +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.ByteQueue::GetAllocationSize(System.Int32)] : loc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateEntry[] Org.BouncyCastle.Tls.Certificate::Convert(Org.BouncyCastle.Tls.Crypto.TlsCertificate[])] : lod +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Certificate::CalculateEndPointHash(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.Crypto.TlsCertificate,System.Byte[],System.IO.Stream)] : loe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCertificate[] Org.BouncyCastle.Tls.Certificate::CloneCertificateList()] : lof +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.CertificateEntry[] Org.BouncyCastle.Tls.Certificate::CloneCertificateEntryList()] : loh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.CertificateRequest::CheckSupportedSignatureAlgorithms(System.Collections.Generic.IList`1,System.Int16)] : loi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.CertificateStatus::IsCorrectType(System.Int16,System.Object)] : loj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.CertificateStatus::IsOcspResponseList(System.Object)] : lok +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.OcspResponse Org.BouncyCastle.Tls.CertificateStatus::ParseOcspResponse(System.Byte[])] : lol +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.CertificateStatus::RequireStatusRequestVersion(System.Int32,System.Int32)] : lom +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.CertificateStatusRequest::IsCorrectType(System.Int16,System.Object)] : lon +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.CertificateStatusRequestItemV2::IsCorrectType(System.Int16,System.Object)] : loo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ClientHello Org.BouncyCastle.Tls.ClientHello::ImplParse(System.IO.MemoryStream,System.IO.Stream)] : lop +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.DefaultTlsClient::GetSupportedCipherSuites()] : lnd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.DefaultTlsCredentialedSigner::GetEffectiveAlgorithm()] : loq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::AddDefaultGroup(Org.BouncyCastle.Tls.Crypto.DHGroup)] : lor +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::AreGroupsEqual(Org.BouncyCastle.Tls.Crypto.DHGroup,Org.BouncyCastle.Tls.Crypto.DHGroup)] : los +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::AreParametersEqual(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : lot +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::CheckGroup(Org.BouncyCastle.Tls.Crypto.DHGroup)] : lou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DefaultTlsDHGroupVerifier::CheckMinimumPrimeBits(Org.BouncyCastle.Tls.Crypto.DHGroup)] : lov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedSigner Org.BouncyCastle.Tls.DefaultTlsServer::GetDsaSignerCredentials()] : low +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedSigner Org.BouncyCastle.Tls.DefaultTlsServer::GetECDsaSignerCredentials()] : lox +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedDecryptor Org.BouncyCastle.Tls.DefaultTlsServer::GetRsaEncryptionCredentials()] : loy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedSigner Org.BouncyCastle.Tls.DefaultTlsServer::GetRsaSignerCredentials()] : loz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.DefaultTlsServer::GetSupportedCipherSuites()] : lnd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DefaultTlsSrpConfigVerifier::AreGroupsEqual(Org.BouncyCastle.Tls.Crypto.TlsSrpConfig,Org.BouncyCastle.Tls.Crypto.Srp6Group)] : lpa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DefaultTlsSrpConfigVerifier::AreParametersEqual(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : lpb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DeferredHash::CheckStopBuffering()] : lpc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DeferredHash::CheckTrackingHash(System.Int32)] : lpd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash Org.BouncyCastle.Tls.DeferredHash::CloneHash(System.Int32)] : lpe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DeferredHash::CloneHash(System.Collections.Generic.IDictionary`2,System.Int32)] : lpf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsClientProtocol::GenerateCertificateVerify(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState,Org.BouncyCastle.Tls.DigitallySigned)] : lpg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsClientProtocol::GenerateClientHello(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState)] : lph +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsClientProtocol::GenerateClientKeyExchange(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState)] : lpi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol::CancelSession(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState)] : lpj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DtlsClientProtocol::EstablishSession(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState,Org.BouncyCastle.Tls.TlsSession)] : lpk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol::InvalidateSession(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState)] : lpl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol::ProcessCertificateRequest(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState,System.Byte[])] : lpm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol::ProcessCertificateStatus(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState,System.Byte[])] : lpn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsClientProtocol::ProcessHelloVerifyRequest(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState,System.Byte[])] : lpo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol::ProcessNewSessionTicket(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState,System.Byte[])] : lpp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol::ProcessServerCertificate(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState,System.Byte[])] : lpq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol::ProcessServerHello(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState,System.Byte[])] : lpr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol::ProcessServerKeyExchange(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState,System.Byte[])] : lps +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol::ProcessServerSupplementalData(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState,System.Byte[])] : lpt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsClientProtocol::ReportServerVersion(Org.BouncyCastle.Tls.DtlsClientProtocol/ClientHandshakeState,Org.BouncyCastle.Tls.ProtocolVersion)] : lpu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsClientProtocol::PatchClientHelloWithCookie(System.Byte[],System.Byte[])] : lpv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::SendDatagram(Org.BouncyCastle.Tls.DatagramSender,System.Byte[],System.Int32,System.Int32)] : lpw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::CloseTransport()] : lpx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::RaiseAlert(System.Int16,System.Int16,System.String,System.Exception)] : lpy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordLayer::ReceiveDatagram(System.Byte[],System.Int32,System.Int32,System.Int32)] : lpz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordLayer::ProcessRecord(System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32,Org.BouncyCastle.Tls.DtlsRecordCallback)] : lqa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordLayer::ReceivePendingRecord(System.Byte[],System.Int32,System.Int32)] : lqb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.DtlsRecordLayer::ReceiveRecord(System.Byte[],System.Int32,System.Int32,System.Int32)] : lqc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::ResetHeartbeat()] : lqd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::SendHeartbeatMessage(Org.BouncyCastle.Tls.HeartbeatMessage)] : lqe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsRecordLayer::SendRecord(System.Int16,System.Byte[],System.Int32,System.Int32)] : lqf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Tls.DtlsRecordLayer::GetMacSequenceNumber(System.Int32,System.Int64)] : lqg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::CheckInboundFlight()] : lqh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsReliableHandshake/Message Org.BouncyCastle.Tls.DtlsReliableHandshake::GetPendingMessage()] : lqi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.DtlsReliableHandshake/Message Org.BouncyCastle.Tls.DtlsReliableHandshake::ImplReceiveMessage()] : lqj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::PrepareInboundFlight(System.Collections.Generic.IDictionary`2)] : lqk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::ProcessRecord(System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)] : lql +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::ResendOutboundFlight()] : lqm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::WriteMessage(Org.BouncyCastle.Tls.DtlsReliableHandshake/Message)] : lqn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::WriteHandshakeFragment(Org.BouncyCastle.Tls.DtlsReliableHandshake/Message,System.Int32,System.Int32)] : lqo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DtlsReliableHandshake::CheckAll(System.Collections.Generic.IDictionary`2)] : lqp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsReliableHandshake::ResetAll(System.Collections.Generic.IDictionary`2)] : lqq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsServerProtocol::GenerateCertificateRequest(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,Org.BouncyCastle.Tls.CertificateRequest)] : lqr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsServerProtocol::GenerateCertificateStatus(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,Org.BouncyCastle.Tls.CertificateStatus)] : lqs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.DtlsServerProtocol::GenerateNewSessionTicket(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,Org.BouncyCastle.Tls.NewSessionTicket)] : lqt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol::CancelSession(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState)] : lqu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DtlsServerProtocol::EstablishSession(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,Org.BouncyCastle.Tls.TlsSession)] : lqv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol::InvalidateSession(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState)] : lqw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol::NotifyClientCertificate(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,Org.BouncyCastle.Tls.Certificate)] : lqx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol::ProcessClientCertificate(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,System.Byte[])] : lqy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol::ProcessCertificateVerify(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,System.Byte[],Org.BouncyCastle.Tls.TlsHandshakeHash)] : lqz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol::ProcessClientHello(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,System.Byte[])] : lra +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol::ProcessClientHello(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,Org.BouncyCastle.Tls.ClientHello)] : lrb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol::ProcessClientKeyExchange(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,System.Byte[])] : lrc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.DtlsServerProtocol::ProcessClientSupplementalData(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState,System.Byte[])] : lrd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.DtlsServerProtocol::ExpectCertificateVerifyMessage(Org.BouncyCastle.Tls.DtlsServerProtocol/ServerHandshakeState)] : lre +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.HeartbeatMessage::GetPayload(System.Byte[],System.Int32)] : lrf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.HeartbeatMessage::GetPadding(System.Byte[],System.Int32)] : lrg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.KeyShareEntry::CheckKeyExchangeLength(System.Int32)] : lrh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.ProtocolVersion::CheckUint8(System.Int32)] : lri +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion Org.BouncyCastle.Tls.ProtocolVersion::GetUnknownVersion(System.Int32,System.Int32,System.String)] : lrj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.PskTlsClient::GetSupportedVersions()] : lnc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.PskTlsClient::GetSupportedCipherSuites()] : lnd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedDecryptor Org.BouncyCastle.Tls.PskTlsServer::GetRsaEncryptionCredentials()] : lrk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.PskTlsServer::GetSupportedVersions()] : lnc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.PskTlsServer::GetSupportedCipherSuites()] : lnd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream/Record::Resize(System.Int32)] : lrl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::CheckChangeCipherSpec(System.Byte[],System.Int32,System.Int32)] : lrm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.RecordStream::CheckRecordType(System.Byte[],System.Int32)] : lrn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.RecordStream::CheckLength(System.Int32,System.Int32,System.Int16)] : lro +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.SecurityParameters::ClearSecret(Org.BouncyCastle.Tls.Crypto.TlsSecret)] : lrp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Tls.ServerNameList::CheckNameType(System.Int16[],System.Int16)] : lrq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.SessionParameters/Builder::Validate(System.Boolean,System.String)] : lrr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::GetInstanceIntrinsic(System.Int16)] : lrs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::Create(System.Int32)] : lrt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.SignatureAndHashAlgorithm Org.BouncyCastle.Tls.SignatureAndHashAlgorithm::Create(System.Int16,System.Int16)] : lru +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.SrpTlsClient::GetSupportedCipherSuites()] : lnd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.SrpTlsClient::GetSupportedVersions()] : lnc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.SrpTlsClient::get_RequireSrpServerExtension()] : lrv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedSigner Org.BouncyCastle.Tls.SrpTlsServer::GetDsaSignerCredentials()] : lrw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsCredentialedSigner Org.BouncyCastle.Tls.SrpTlsServer::GetRsaSignerCredentials()] : lrx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ProtocolVersion[] Org.BouncyCastle.Tls.SrpTlsServer::GetSupportedVersions()] : lnc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Tls.SrpTlsServer::GetSupportedCipherSuites()] : lnd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Ssl3Utilities::CompleteHash(System.Byte[],Org.BouncyCastle.Tls.Crypto.TlsHash,System.Int32)] : lry +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Ssl3Utilities::GenPad(System.Byte,System.Int32)] : lrz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::BeginHandshake()] : lsa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::CleanupHandshake()] : lsb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsContext Org.BouncyCastle.Tls.TlsClientProtocol::get_Context()] : lsc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPeer Org.BouncyCastle.Tls.TlsClientProtocol::get_Peer()] : lsd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Handle13HandshakeMessage(System.Int16,Org.BouncyCastle.Tls.HandshakeMessageInput)] : lse +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::HandleHandshakeMessage(System.Int16,Org.BouncyCastle.Tls.HandshakeMessageInput)] : lsf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::HandleServerCertificate()] : lsg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::HandleSupplementalData(System.Collections.Generic.IList`1)] : lsh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Process13HelloRetryRequest(Org.BouncyCastle.Tls.ServerHello)] : lsi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Process13ServerHello(Org.BouncyCastle.Tls.ServerHello,System.Boolean)] : lsj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Process13ServerHelloCoda(Org.BouncyCastle.Tls.ServerHello,System.Boolean)] : lsk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::ProcessServerHello(Org.BouncyCastle.Tls.ServerHello)] : lsl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Receive13CertificateRequest(System.IO.MemoryStream,System.Boolean)] : lsm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Receive13EncryptedExtensions(System.IO.MemoryStream)] : lsn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Receive13NewSessionTicket(System.IO.MemoryStream)] : lso +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Receive13ServerCertificate(System.IO.MemoryStream)] : lsp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Receive13ServerCertificateVerify(System.IO.MemoryStream)] : lsq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Receive13ServerFinished(System.IO.MemoryStream)] : lsr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::ReceiveCertificateRequest(System.IO.MemoryStream)] : lss +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::ReceiveNewSessionTicket(System.IO.MemoryStream)] : lst +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ServerHello Org.BouncyCastle.Tls.TlsClientProtocol::ReceiveServerHelloMessage(System.IO.MemoryStream)] : lsu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Send13ClientHelloRetry()] : lsv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::SendCertificateVerifyMessage(Org.BouncyCastle.Tls.DigitallySigned)] : lsw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::SendClientHello()] : lsx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::SendClientHelloMessage()] : lsy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::SendClientKeyExchange()] : lsz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Skip13CertificateRequest()] : lta +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsClientProtocol::Skip13ServerCertificate()] : ltb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsDHanonKeyExchange::CheckKeyExchange(System.Int32)] : ltc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsDheKeyExchange::CheckKeyExchange(System.Int32)] : ltd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsDHKeyExchange::CheckKeyExchange(System.Int32)] : lte +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::CheckKeyExchange(System.Int32)] : ltf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::GenerateEphemeral(System.IO.Stream)] : ltg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDHanonKeyExchange::ProcessEphemeral(System.Byte[])] : lth +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsECDheKeyExchange::CheckKeyExchange(System.Int32)] : lti +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDheKeyExchange::GenerateEphemeral(System.IO.Stream)] : ltj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsECDheKeyExchange::ProcessEphemeral(System.Byte[])] : ltk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsECDHKeyExchange::CheckKeyExchange(System.Int32)] : ltl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsExtensionsUtilities::ReadEmptyExtensionData(System.Byte[])] : ltm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsExtensionsUtilities::PatchOpaque16(System.IO.MemoryStream)] : ltn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Tls.TlsFatalAlert::GetMessage(System.Int16,System.String)] : lto +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsProtocol::IsLegacyConnectionState()] : ltp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsProtocol::IsTlsV13ConnectionState()] : ltq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::CloseConnection()] : ltr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsContext Org.BouncyCastle.Tls.TlsProtocol::get_Context()] : lsc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPeer Org.BouncyCastle.Tls.TlsProtocol::get_Peer()] : lsd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::HandleAlertMessage(System.Int16,System.Int16)] : lts +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::HandleAlertWarningMessage(System.Int16)] : ltt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::HandleChangeCipherSpecMessage()] : ltu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::HandleClose(System.Boolean)] : ltv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::HandleException(System.Int16,System.String,System.Exception)] : ltw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::HandleFailure()] : ltx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::HandleHandshakeMessage(System.Int16,Org.BouncyCastle.Tls.HandshakeMessageInput)] : lsf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::ApplyMaxFragmentLengthExtension(System.Int16)] : lty +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::CheckReceivedChangeCipherSpec(System.Boolean)] : ltz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::BlockForHandshake()] : lua +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::BeginHandshake()] : lsa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::CleanupHandshake()] : lsb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::CompleteHandshake()] : lub +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::ProcessHandshakeQueue(Org.BouncyCastle.Tls.ByteQueue)] : luc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::ProcessApplicationDataQueue()] : lud +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::ProcessAlertQueue()] : lue +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::ProcessChangeCipherSpec(System.Byte[],System.Int32,System.Int32)] : luf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.RecordPreview Org.BouncyCastle.Tls.TlsProtocol::SafePreviewRecordHeader(System.Byte[])] : lug +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::SafeReadRecord()] : luh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsProtocol::SafeReadFullRecord(System.Byte[],System.Int32,System.Int32)] : lui +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::SafeWriteRecord(System.Int16,System.Byte[],System.Int32,System.Int32)] : luj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsProtocol::EstablishSession(Org.BouncyCastle.Tls.TlsSession)] : luk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::CancelSession()] : lul +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::InvalidateSession()] : lum +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::ProcessFinishedMessage(System.IO.MemoryStream)] : lun +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::Process13FinishedMessage(System.IO.MemoryStream)] : luo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::RaiseAlertFatal(System.Int16,System.String,System.Exception)] : lup +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::RaiseAlertWarning(System.Int16,System.String)] : luq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::Receive13KeyUpdate(System.IO.MemoryStream)] : lur +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::SendCertificateMessage(Org.BouncyCastle.Tls.Certificate,System.IO.Stream)] : lus +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::Send13CertificateMessage(Org.BouncyCastle.Tls.Certificate)] : lut +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::Send13CertificateVerifyMessage(Org.BouncyCastle.Tls.DigitallySigned)] : luu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::SendChangeCipherSpec()] : luv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::SendChangeCipherSpecMessage()] : luw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::SendFinishedMessage()] : lux +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::Send13FinishedMessage()] : luy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::Send13KeyUpdate(System.Boolean)] : luz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::SendSupplementalDataMessage(System.Collections.Generic.IList`1)] : lva +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsProtocol::ProcessMaxFragmentLengthExtension(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IDictionary`2,System.Int16)] : lvb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsProtocol::RefuseRenegotiation()] : lvc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsPskKeyExchange::CheckKeyExchange(System.Int32)] : lvd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::GenerateEphemeralDH(System.IO.Stream)] : lve +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::GenerateEphemeralECDH(System.IO.Stream)] : lvf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsPskKeyExchange::GenerateOtherSecret(System.Int32)] : lvg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::ProcessEphemeralDH(System.Byte[])] : lvh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsPskKeyExchange::ProcessEphemeralECDH(System.Byte[])] : lvi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsRsaKeyExchange::CheckKeyExchange(System.Int32)] : lvj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::CleanupHandshake()] : lsb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TlsServerProtocol::ExpectCertificateVerifyMessage()] : lvk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ServerHello Org.BouncyCastle.Tls.TlsServerProtocol::Generate13HelloRetryRequest(Org.BouncyCastle.Tls.ClientHello)] : lvl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ServerHello Org.BouncyCastle.Tls.TlsServerProtocol::Generate13ServerHello(Org.BouncyCastle.Tls.ClientHello,Org.BouncyCastle.Tls.HandshakeMessageInput,System.Boolean)] : lvm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ServerHello Org.BouncyCastle.Tls.TlsServerProtocol::GenerateServerHello(Org.BouncyCastle.Tls.ClientHello,Org.BouncyCastle.Tls.HandshakeMessageInput)] : lvn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsContext Org.BouncyCastle.Tls.TlsServerProtocol::get_Context()] : lsc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsPeer Org.BouncyCastle.Tls.TlsServerProtocol::get_Peer()] : lsd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::Handle13HandshakeMessage(System.Int16,Org.BouncyCastle.Tls.HandshakeMessageInput)] : lvo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::HandleHandshakeMessage(System.Int16,Org.BouncyCastle.Tls.HandshakeMessageInput)] : lsf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::HandleAlertWarningMessage(System.Int16)] : ltt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::NotifyClientCertificate(Org.BouncyCastle.Tls.Certificate)] : lvp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::Receive13ClientCertificate(System.IO.MemoryStream)] : lvq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::Receive13ClientCertificateVerify(System.IO.MemoryStream)] : lvr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::Receive13ClientFinished(System.IO.MemoryStream)] : lvs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::ReceiveCertificateMessage(System.IO.MemoryStream)] : lvt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::ReceiveCertificateVerifyMessage(System.IO.MemoryStream)] : lvu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.ClientHello Org.BouncyCastle.Tls.TlsServerProtocol::ReceiveClientHelloMessage(System.IO.MemoryStream)] : lvv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::ReceiveClientKeyExchangeMessage(System.IO.MemoryStream)] : lvw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::Send13EncryptedExtensionsMessage(System.Collections.Generic.IDictionary`2)] : lvx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::Send13ServerHelloCoda(Org.BouncyCastle.Tls.ServerHello,System.Boolean)] : lvy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::SendCertificateRequestMessage(Org.BouncyCastle.Tls.CertificateRequest)] : lvz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::SendCertificateStatusMessage(Org.BouncyCastle.Tls.CertificateStatus)] : lwa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::SendHelloRequestMessage()] : lwb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::SendNewSessionTicketMessage(Org.BouncyCastle.Tls.NewSessionTicket)] : lwc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::SendServerHelloDoneMessage()] : lwd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::SendServerHelloMessage(Org.BouncyCastle.Tls.ServerHello)] : lwe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::SendServerKeyExchangeMessage(System.Byte[])] : lwf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::Skip13ClientCertificate()] : lwg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsServerProtocol::Skip13ClientCertificateVerify()] : lwh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.TlsSrpKeyExchange::CheckKeyExchange(System.Int32)] : lwi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.TlsSrpKeyExchange::ValidatePublicValue(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : lwj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::AddCertSigAlgOid(System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] : lwk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::AddCertSigAlgOid(System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Int16,System.Int16)] : lwl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Tls.TlsUtilities::CreateCertSigAlgOids()] : lwm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Tls.TlsUtilities::CreateDefaultSupportedSigAlgs()] : lwn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::CalculateFinishedHmac(Org.BouncyCastle.Tls.SecurityParameters,Org.BouncyCastle.Tls.Crypto.TlsSecret,System.Byte[])] : lwo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::CalculateFinishedHmac(System.Int32,System.Int32,Org.BouncyCastle.Tls.Crypto.TlsSecret,System.Byte[])] : lwp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::Establish13TrafficSecrets(Org.BouncyCastle.Tls.TlsContext,System.Byte[],Org.BouncyCastle.Tls.Crypto.TlsSecret,System.String,System.String,Org.BouncyCastle.Tls.RecordStream)] : lwq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::Update13TrafficSecret(Org.BouncyCastle.Tls.TlsContext,System.Boolean)] : lwr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.TlsUtilities::Update13TrafficSecret(Org.BouncyCastle.Tls.SecurityParameters,Org.BouncyCastle.Tls.Crypto.TlsSecret)] : lws +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::Generate13CertificateVerify(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.TlsCredentialedSigner,System.String,Org.BouncyCastle.Tls.TlsHandshakeHash,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] : lwt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::Verify13CertificateVerify(System.Collections.Generic.IList`1,System.String,Org.BouncyCastle.Tls.TlsHandshakeHash,Org.BouncyCastle.Tls.Crypto.TlsCertificate,Org.BouncyCastle.Tls.CertificateVerify)] : lwu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.TlsUtilities::GetCertificateVerifyHeader(System.String)] : lwv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash Org.BouncyCastle.Tls.TlsUtilities::CreateHash(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Int16)] : lww +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHash Org.BouncyCastle.Tls.TlsUtilities::CreateHash(Org.BouncyCastle.Tls.Crypto.TlsCrypto,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] : lwx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsUtilities::CreateKeyExchangeClient(Org.BouncyCastle.Tls.TlsClient,System.Int32)] : lwy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.TlsKeyExchange Org.BouncyCastle.Tls.TlsUtilities::CreateKeyExchangeServer(Org.BouncyCastle.Tls.TlsServer,System.Int32)] : lwz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckSigAlgOfClientCerts(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.Crypto.TlsCertificate[])] : lxa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckSigAlgOfServerCerts(Org.BouncyCastle.Tls.TlsContext,Org.BouncyCastle.Tls.Crypto.TlsCertificate[])] : lxb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckClientCertificateType(Org.BouncyCastle.Tls.CertificateRequest,System.Int16,System.Int16)] : lxc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CheckDowngradeMarker(System.Byte[],System.Byte[])] : lxd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TlsUtilities::CollectKeyShares(Org.BouncyCastle.Tls.Crypto.TlsCrypto,System.Int32[],System.Collections.Generic.IList`1,System.Collections.Generic.IDictionary`2,System.Collections.Generic.IList`1)] : lxe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.TlsUtilities::ValidateCertificateType13(System.Int16,System.Int16)] : lxf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.TrustedAuthority::CheckCorrectType(System.Int16)] : lxg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TrustedAuthority::IsCorrectType(System.Int16,System.Object)] : lxh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.TrustedAuthority::IsSha1Hash(System.Object)] : lxi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.DHStandardGroups::FromHex(System.String)] : lxj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::SafePrimeGen2(System.String)] : lxk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.DHGroup Org.BouncyCastle.Tls.Crypto.DHStandardGroups::SafePrimeGen2(System.String,System.Int32)] : lxl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Tls.Crypto.Srp6StandardGroups::FromHex(System.String)] : lxm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Srp6Group Org.BouncyCastle.Tls.Crypto.Srp6StandardGroups::FromNG(System.String,System.String)] : lxn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::CopyData(Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret)] : lxo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::CheckAlive()] : lxp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsSecret::get_Crypto()] : lxq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::GetAdditionalData(System.Int64,System.Int16,Org.BouncyCastle.Tls.ProtocolVersion,System.Int32,System.Int32)] : lxr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::GetAdditionalData(System.Int64,System.Int16,Org.BouncyCastle.Tls.ProtocolVersion,System.Int32,System.Int32,System.Byte[])] : lxs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::RekeyCipher(Org.BouncyCastle.Tls.SecurityParameters,Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipherImpl,System.Byte[],System.Boolean)] : lxt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::Setup13Cipher(Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipherImpl,System.Byte[],Org.BouncyCastle.Tls.Crypto.TlsSecret,System.Int32)] : lxu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher::GetNonceMode(System.Boolean,System.Int32)] : lxv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::CheckPaddingConstantTime(System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32)] : lxw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::ChooseExtraPadBlocks(System.Int32)] : lxx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::GetCiphertextLength(System.Int32,System.Int32,System.Int32,System.Int32)] : lxy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsBlockCipher::GetPlaintextLength(System.Int32,System.Int32,System.Int32)] : lxz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteHmac::GetMacSize(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Tls.Crypto.TlsMac)] : lya +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteHmac::GetDigestBlockCount(System.Int32)] : lyb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteHmac::GetHeaderLength(System.Byte[])] : lyc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.TlsSuiteHmac::Truncate(System.Byte[])] : lyd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcChaCha20Poly1305::InitMac()] : lye +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcChaCha20Poly1305::UpdateMac(System.Byte[],System.Int32,System.Int32)] : lyf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSecret Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedDecryptor::SafeDecryptPreMasterSecret(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters,System.Byte[])] : lyg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsSigner Org.BouncyCastle.Tls.Crypto.Impl.BC.BcDefaultTlsCredentialedSigner::MakeSigner(Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Tls.Certificate,Org.BouncyCastle.Tls.SignatureAndHashAlgorithm)] : lyh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcSsl3Hmac::DoFinal(System.Byte[],System.Int32)] : lyi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcSsl3Hmac::GenPad(System.Byte,System.Int32)] : lyj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCertificate::SupportsKeyUsage(System.Int32)] : lyk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateBlockCipher(System.Int32)] : lyl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateCbcBlockCipher(Org.BouncyCastle.Crypto.IBlockCipher)] : lym +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateCbcBlockCipher(System.Int32)] : lyn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateChaCha20Poly1305(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters)] : lyo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateCipher_Aes_Ccm(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,System.Int32,System.Int32)] : lyp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateCipher_Aes_Gcm(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,System.Int32,System.Int32)] : lyq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateCipher_Aria_Gcm(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,System.Int32,System.Int32)] : lyr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateCipher_Camellia_Gcm(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,System.Int32,System.Int32)] : lys +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateCipher_Cbc(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,System.Int32,System.Int32,System.Int32)] : lyt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateCipher_SM4_Ccm(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters)] : lyu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsAeadCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateCipher_SM4_Gcm(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters)] : lyv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.TlsNullCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateNullCipher(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,System.Int32)] : lyw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateAesEngine()] : lyx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateAriaEngine()] : lyy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateCamelliaEngine()] : lyz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateDesEdeEngine()] : lza +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateSeedEngine()] : lzb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateSM4Engine()] : lzc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.CcmBlockCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateCcmMode(Org.BouncyCastle.Crypto.IBlockCipher)] : lzd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.IAeadCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateGcmMode(Org.BouncyCastle.Crypto.IBlockCipher)] : lze +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.CcmBlockCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateAeadCipher_Aes_Ccm()] : lzf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.IAeadCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateAeadCipher_Aes_Gcm()] : lzg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.IAeadCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateAeadCipher_Aria_Gcm()] : lzh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.IAeadCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateAeadCipher_Camellia_Gcm()] : lzi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.CcmBlockCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateAeadCipher_SM4_Ccm()] : lzj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Modes.IAeadCipher Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateAeadCipher_SM4_Gcm()] : lzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHmac Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateHmac_Ssl(System.Int32)] : lzl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.TlsHmac Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsCrypto::CreateMac(Org.BouncyCastle.Tls.Crypto.TlsCryptoParameters,System.Int32)] : lzm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain::EncodeValue(Org.BouncyCastle.Crypto.Parameters.DHParameters,System.Boolean,Org.BouncyCastle.Math.BigInteger)] : lzn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDHDomain::GetValueLength(Org.BouncyCastle.Crypto.Parameters.DHParameters)] : lzo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDsa Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDsaSigner::CreateDsaImpl(System.Int32)] : lzp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDsaSigner::get_SignatureAlgorithm()] : lzq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDsa Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDsaVerifier::CreateDsaImpl()] : lzr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDsaVerifier::get_SignatureAlgorithm()] : lzs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDsa Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDssSigner::CreateDsaImpl(System.Int32)] : lzp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDssSigner::get_SignatureAlgorithm()] : lzq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDsa Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDssVerifier::CreateDsaImpl()] : lzr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsDssVerifier::get_SignatureAlgorithm()] : lzs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDsa Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsaSigner::CreateDsaImpl(System.Int32)] : lzp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsaSigner::get_SignatureAlgorithm()] : lzq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDsa Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsaVerifier::CreateDsaImpl()] : lzr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsECDsaVerifier::get_SignatureAlgorithm()] : lzs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::GetPublicKey()] : lzt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::SupportsKeyUsage(System.Int32)] : lyk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::SupportsMLDsa(Org.BouncyCastle.Asn1.DerObjectIdentifier)] : lzu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::SupportsRsa_Pkcs1()] : lzv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::SupportsRsa_Pss_Pss(System.Int16)] : lzw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::SupportsRsa_Pss_Rsae()] : lzx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::SupportsSignatureAlgorithm(System.Int16,System.Int32)] : lzy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::ValidateMLDsa(Org.BouncyCastle.Asn1.DerObjectIdentifier)] : lzz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::ValidateRsa_Pkcs1()] : maa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::ValidateRsa_Pss_Pss(System.Int16)] : mab +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRawKeyCertificate::ValidateRsa_Pss_Rsae()] : mad +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsRsaEncryptor::CheckPublicKey(Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters)] : mae +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::GenerateSsl3Constants()] : maf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Tls.Crypto.Impl.AbstractTlsCrypto Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::get_Crypto()] : lxq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::HmacHash(System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte[],System.Byte[])] : mag +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::Prf(System.Int32,System.String,System.Byte[],System.Int32)] : mah +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::Prf_Ssl(System.Byte[],System.Int32)] : mai +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::Prf_1_0(System.Byte[],System.Int32)] : maj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::Prf_1_2(System.Int32,System.Byte[],System.Int32)] : mak +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Tls.Crypto.Impl.BC.BcTlsSecret::UpdateMac(Org.BouncyCastle.Crypto.IMac)] : mal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator::GetEncoded(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] : mam +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcOtherInfoGenerator::GetPublicKey(System.Byte[])] : man +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::LmsConverter(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] : mao +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsKeyParameters Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::GetLmsKeyParameters(System.Byte[])] : map +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::SphincsPlusConverter(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] : maq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::CmceConverter(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] : mar +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::FrodoConverter(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] : mas +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::SaberConverter(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] : mat +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::PicnicConverter(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] : mau +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::DilithiumConverter(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] : mav +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::NtruConverter(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] : maw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::GetNtruPublicKey(Org.BouncyCastle.Pqc.Crypto.Ntru.NtruParameters,Org.BouncyCastle.Asn1.DerBitString)] : may +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::FalconConverter(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] : maz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::BikeConverter(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] : mba +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Pqc.Crypto.Utilities.PqcPublicKeyFactory::HqcConverter(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.Object)] : mbb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.SecretWithEncapsulationImpl::Dispose(System.Boolean)] : mbc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Utilities.SecretWithEncapsulationImpl::CheckDestroyed()] : mbd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Fors::GetMessageIdx(System.Byte[],System.Int32,System.Int32)] : mbe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Fors::Base2B(System.Byte[],System.Int32,System.Int32)] : mbf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::Reset()] : mbg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::InterleaveConstant(System.UInt64[],System.Byte[],System.Int32)] : mbh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::InterleaveConstant32(System.UInt32[],System.Byte[],System.Int32)] : mbi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::BrAesCt64InterleaveIn(System.UInt64[],System.Int32,System.UInt32[],System.Int32)] : mbj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::BrAesCtBitsliceSbox(System.UInt32[])] : mbk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::ShiftRows32(System.UInt32[])] : mbl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::MixColumns32(System.UInt32[])] : mbm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::AddRoundKey32(System.UInt32[],System.UInt32[])] : mbn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::BrAesCt64Ortho(System.UInt64[])] : mbo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::BrAesCtOrtho(System.UInt32[])] : mbp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::BrAesCt64BitsliceSbox(System.UInt64[])] : mbq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::ShiftRows(System.UInt64[])] : mbr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::MixColumns(System.UInt64[])] : mbs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::AddRoundKey(System.UInt64[],System.UInt64[])] : mbt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::BrAesCt64InterleaveOut(System.UInt32[],System.UInt64[],System.Int32)] : mbu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HarakaSBase::Xor(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Int32,System.Int32)] : mbv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HT::xmss_PKgen(System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs)] : mbw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HT::xmss_pkFromSig(System.UInt32,Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_XMSS,System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs)] : mbx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SIG_XMSS Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HT::xmss_sign(System.Byte[],System.Byte[],System.UInt32,System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs)] : mby +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.HT::TreeHash(System.Byte[],System.UInt32,System.Int32,System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs)] : mbz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine::CompressedAdrs(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs)] : mca +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine::Bitmask(System.Byte[],System.Byte[])] : mcb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine::Bitmask(System.Byte[],System.Byte[],System.Byte[])] : mcc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Sha2Engine::Bitmask256(System.Byte[],System.Byte[])] : mcd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Shake256Engine::Bitmask(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[])] : mce +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/Shake256Engine::Bitmask(System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[],System.Byte[])] : mcf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine/HarakaSEngine::Bitmask(Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs,System.Byte[])] : mcg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusKeyPairGenerator::SecRand(System.Int32)] : mch +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.WotsPlus::Chain(System.Byte[],System.UInt32,System.UInt32,System.Byte[],Org.BouncyCastle.Pqc.Crypto.SphincsPlus.Adrs)] : mci +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Pqc.Crypto.Saber.Poly::LoadLittleEndian(System.Byte[],System.Int32,System.Int32)] : mcj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Poly::Cbd(System.Int16[],System.Byte[],System.Int32)] : mck +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Pqc.Crypto.Saber.Poly::OVERFLOWING_MUL(System.Int32,System.Int32)] : mcl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Poly::karatsuba_simple(System.Int32[],System.Int32[],System.Int32[])] : mcm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Poly::toom_cook_4way(System.Int16[],System.Int16[],System.Int16[])] : mcn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.Poly::poly_mul_acc(System.Int16[],System.Int16[],System.Int16[])] : mco +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::indcpa_kem_keypair(System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] : mcp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::indcpa_kem_enc(System.Byte[],System.Byte[],System.Byte[],System.Byte[])] : mcq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::indcpa_kem_dec(System.Byte[],System.Byte[],System.Byte[])] : mcr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::verify(System.Byte[],System.Byte[],System.Int32)] : mcs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberEngine::cmov(System.Byte[],System.Byte[],System.Int32,System.Int32,System.Byte)] : mct +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberKemExtractor::InitCipher(Org.BouncyCastle.Pqc.Crypto.Saber.SaberParameters)] : mcu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyPairGenerator::Initialize(Org.BouncyCastle.Crypto.KeyGenerationParameters)] : mcv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Saber.SaberKeyPairGenerator::GenKeyPair()] : mcw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::POLq2BS(System.Byte[],System.Int32,System.Int16[])] : mcx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::BS2POLq(System.Byte[],System.Int32,System.Int16[])] : mcy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Saber.SaberUtilities::POLp2BS(System.Byte[],System.Int32,System.Int16[])] : mcz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Picnic.KMatricesWithPointer Org.BouncyCastle.Pqc.Crypto.Picnic.LowmcConstants::GET_MAT(Org.BouncyCastle.Pqc.Crypto.Picnic.KMatrices,System.Int32)] : mda +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::picnic_verify(System.Byte[],System.Byte[],System.Byte[],System.UInt32)] : mdb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::Verify(Org.BouncyCastle.Pqc.Crypto.Picnic.Signature,System.UInt32[],System.UInt32[],System.Byte[])] : mdc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::VerifyProof(Org.BouncyCastle.Pqc.Crypto.Picnic.Signature/Proof,Org.BouncyCastle.Pqc.Crypto.Picnic.View,Org.BouncyCastle.Pqc.Crypto.Picnic.View,System.Int32,System.Byte[],System.UInt32,System.Byte[],System.UInt32[],Org.BouncyCastle.Pqc.Crypto.Picnic.Tape)] : mdd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::mpc_LowMC_verify(Org.BouncyCastle.Pqc.Crypto.Picnic.View,Org.BouncyCastle.Pqc.Crypto.Picnic.View,Org.BouncyCastle.Pqc.Crypto.Picnic.Tape,System.UInt32[],System.UInt32[],System.Int32)] : mde +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::mpc_substitution_verify(System.UInt32[],Org.BouncyCastle.Pqc.Crypto.Picnic.Tape,Org.BouncyCastle.Pqc.Crypto.Picnic.View,Org.BouncyCastle.Pqc.Crypto.Picnic.View)] : mdf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::mpc_AND_verify(System.UInt32[],System.UInt32[],System.UInt32[],Org.BouncyCastle.Pqc.Crypto.Picnic.Tape,Org.BouncyCastle.Pqc.Crypto.Picnic.View,Org.BouncyCastle.Pqc.Crypto.Picnic.View)] : mdg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::mpc_xor_constant_verify(System.UInt32[],System.UInt32[],System.Int32,System.Int32,System.Int32)] : mdh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::DeserializeSignature(Org.BouncyCastle.Pqc.Crypto.Picnic.Signature,System.Byte[],System.UInt32,System.Int32)] : mdi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::CountNonZeroChallenges(System.Byte[],System.Int32)] : mdj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::picnic_read_public_key(System.UInt32[],System.UInt32[],System.Byte[])] : mdk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::verify_picnic3(Org.BouncyCastle.Pqc.Crypto.Picnic.Signature2,System.UInt32[],System.UInt32[],System.Byte[])] : mdl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::DeserializeSignature2(Org.BouncyCastle.Pqc.Crypto.Picnic.Signature2,System.Byte[],System.UInt32,System.Int32)] : mdm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::ArePaddingBitsZero(System.Byte[],System.Int32)] : mdn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::ArePaddingBitsZero(System.UInt32[],System.Int32)] : mdo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::picnic_sign(System.Byte[],System.Byte[],System.Byte[])] : mdp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::SerializeSignature(Org.BouncyCastle.Pqc.Crypto.Picnic.Signature,System.Byte[],System.Int32)] : mdq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::GetChallenge(System.Byte[],System.Int32)] : mdr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::SerializeSignature2(Org.BouncyCastle.Pqc.Crypto.Picnic.Signature2,System.Byte[],System.Int32)] : mds +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::sign_picnic1(System.UInt32[],System.UInt32[],System.UInt32[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.Picnic.Signature)] : mdt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::Prove(Org.BouncyCastle.Pqc.Crypto.Picnic.Signature/Proof,System.Int32,System.Byte[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Picnic.View[],System.Byte[][],System.Byte[][])] : mdu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::H3(System.UInt32[],System.UInt32[],Org.BouncyCastle.Pqc.Crypto.Picnic.View[][],System.Byte[][][],System.Byte[],System.Byte[],System.Byte[],System.Byte[][][])] : mdv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::H3(System.UInt32[],System.UInt32[],System.UInt32[][][],System.Byte[][][],System.Byte[],System.Byte[],System.Byte[],System.Byte[][][])] : mdw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::ImplH3(System.UInt32[],System.UInt32[],System.Byte[][][],System.Byte[],System.Byte[],System.Byte[],System.Byte[][][])] : mdx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::SetChallenge(System.Byte[],System.Int32,System.UInt32)] : mdy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::G(System.Int32,System.Byte[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Picnic.View,System.Byte[])] : mdz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::mpc_LowMC(Org.BouncyCastle.Pqc.Crypto.Picnic.Tape,Org.BouncyCastle.Pqc.Crypto.Picnic.View[],System.UInt32[],System.UInt32[])] : mea +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::Commit(System.Byte[],System.Int32,Org.BouncyCastle.Pqc.Crypto.Picnic.View,System.Byte[])] : meb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::mpc_substitution(System.UInt32[],Org.BouncyCastle.Pqc.Crypto.Picnic.Tape,Org.BouncyCastle.Pqc.Crypto.Picnic.View[])] : mec +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::mpc_AND(System.UInt32[],System.UInt32[],System.UInt32[],Org.BouncyCastle.Pqc.Crypto.Picnic.Tape,Org.BouncyCastle.Pqc.Crypto.Picnic.View[])] : med +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::mpc_xor(System.UInt32[],System.UInt32[],System.Int32)] : mee +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::mpc_matrix_mul(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.Int32)] : mef +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::mpc_xor_constant(System.UInt32[],System.Int32,System.UInt32[],System.Int32,System.Int32)] : meg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::CreateRandomTape(System.Byte[],System.Int32,System.Byte[],System.UInt32,System.UInt32,System.Byte[],System.Int32)] : meh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::ComputeSeeds(System.UInt32[],System.UInt32[],System.UInt32[],System.Byte[])] : mei +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::sign_picnic3(System.UInt32[],System.UInt32[],System.UInt32[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.Picnic.Signature2)] : mej +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::IndexOf(System.UInt32[],System.Int32,System.UInt32)] : mek +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::GetMissingLeavesList(System.UInt32[])] : mel +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::HCP(System.Byte[],System.UInt32[],System.UInt32[],System.Byte[][],System.Byte[],System.Byte[],System.UInt32[],System.UInt32[],System.Byte[])] : mem +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::BitsToChunks(System.Int32,System.Byte[],System.Int32,System.UInt32[])] : men +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::AppendUnique(System.UInt32[],System.UInt32,System.UInt32)] : meo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::ExpandChallengeHash(System.Byte[],System.UInt32[],System.UInt32[])] : mep +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::commit_h(System.Byte[],System.Byte[][])] : meq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::commit_v(System.Byte[],System.Byte[],Org.BouncyCastle.Pqc.Crypto.Picnic.Msg)] : mer +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::SimulateOnline(System.UInt32[],Org.BouncyCastle.Pqc.Crypto.Picnic.Tape,System.UInt32[],Org.BouncyCastle.Pqc.Crypto.Picnic.Msg,System.UInt32[],System.UInt32[])] : mes +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::CreateRandomTapes(Org.BouncyCastle.Pqc.Crypto.Picnic.Tape,System.Byte[][],System.UInt32,System.Byte[],System.UInt32)] : met +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::SubarrayEquals(System.Byte[],System.Byte[],System.Int32)] : meu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::SubarrayEquals(System.UInt32[],System.UInt32[],System.Int32)] : mev +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::Extend(System.UInt32)] : mew +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::WordToMsgs(System.UInt32,Org.BouncyCastle.Pqc.Crypto.Picnic.Msg)] : mex +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::mpc_AND(System.UInt32,System.UInt32,System.UInt32,System.UInt32,Org.BouncyCastle.Pqc.Crypto.Picnic.Tape,Org.BouncyCastle.Pqc.Crypto.Picnic.Msg)] : mey +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::mpc_sbox(System.UInt32[],System.UInt32[],Org.BouncyCastle.Pqc.Crypto.Picnic.Tape,Org.BouncyCastle.Pqc.Crypto.Picnic.Msg)] : mez +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::aux_mpc_AND(System.UInt32,System.UInt32,System.UInt32,Org.BouncyCastle.Pqc.Crypto.Picnic.Tape)] : mfa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::Contains(System.UInt32[],System.Int32,System.UInt32)] : mfb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::TapesToWords(System.UInt32[],Org.BouncyCastle.Pqc.Crypto.Picnic.Tape)] : mfc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::GetAuxBits(System.Byte[],Org.BouncyCastle.Pqc.Crypto.Picnic.Tape)] : mfd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::commit(System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.UInt32,System.UInt32)] : mfe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::ComputeSaltAndRootSeed(System.Byte[],System.UInt32[],System.UInt32[],System.UInt32[],System.Byte[])] : mff +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::UpdateDigest(System.UInt32[],System.Byte[])] : mfg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::is_picnic3(System.Int32)] : mfh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::picnic_write_private_key(System.Byte[],System.Byte[],System.Byte[],System.Byte[])] : mfi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::picnic_write_public_key(System.Byte[],System.Byte[],System.Byte[])] : mfj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::picnic_keygen(System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] : mfk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::LowMCEnc(System.UInt32[],System.UInt32[],System.UInt32[])] : mfl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::Substitution(System.UInt32[])] : mfm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.PicnicEngine::xor_three(System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[])] : mfn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Tape::TapesToParityBits(System.UInt32[],System.Int32)] : mfo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::GetRevealedNodes(System.UInt32[],System.UInt32,System.UInt32[])] : mfp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::GetSibling(System.UInt32)] : mfq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::IsLeafNode(System.UInt32)] : mfr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::HasSibling(System.UInt32)] : mfs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::GetRevealedMerkleNodes(System.UInt32[],System.UInt32,System.UInt32[])] : mft +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::Contains(System.UInt32[],System.UInt32,System.UInt32)] : mfu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::ComputeParentHash(System.UInt32,System.Byte[])] : mfv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::ExpandSeeds(System.Byte[],System.UInt32)] : mfw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::HashSeed(System.Byte[],System.Byte[],System.Byte[],System.Byte,System.UInt32,System.UInt32)] : mfx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::IsLeftChild(System.UInt32)] : mfy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::HasRightChild(System.UInt32)] : mfz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::GetParent(System.UInt32)] : mga +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Picnic.Tree::Exists(System.UInt32)] : mgb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruEncapsulation::CheckDestroyed()] : mgc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruKemExtractor::Cmov(System.Byte[],System.Byte[],System.Byte)] : mgd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.NtruPrivateKeyParameters::set_PrivateKey(System.Byte[])] : mge +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.NtruSampling::Mod3(System.Int32)] : mgf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial::R2InvToRqInv(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial,Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] : mgg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.NtruOwcpa::CheckCiphertext(System.Byte[])] : mgh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.NtruOwcpa::CheckR(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.Polynomial)] : mgi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Ntru.Owcpa.NtruOwcpa::CheckM(Org.BouncyCastle.Pqc.Crypto.Ntru.Polynomials.HpsPolynomial)] : mgj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemExtractor::InitCipher(Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeParameters)] : mgk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemGenerator/SecretWithEncapsulationImpl::Dispose(System.Boolean)] : mgl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKemGenerator/SecretWithEncapsulationImpl::CheckDestroyed()] : mgm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyPairGenerator::Initialize(Org.BouncyCastle.Crypto.KeyGenerationParameters)] : mgn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruLPRimeKeyPairGenerator::GenKeyPair()] : mgo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::KeyGen(Org.BouncyCastle.Security.SecureRandom,System.Byte[],System.Byte[])] : mgp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::ByteRandom(System.SByte[],Org.BouncyCastle.Security.SecureRandom)] : mgq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::R3Recip(System.SByte[],System.SByte[])] : mgs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::RqRecip3(System.Int16[],System.SByte[])] : mgt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::FqRecip(System.Int16)] : mgu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::RqMult(System.Int16[]&,System.Int16[],System.SByte[])] : mgv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::RqEncode(System.Byte[],System.Int16[])] : mgw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::RqDecode(System.Int16[],System.Byte[])] : mgx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::RqMult3(System.Int16[],System.Int16[])] : mgy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::R3FromRq(System.SByte[],System.Int16[])] : mgz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::R3Mult(System.SByte[],System.SByte[],System.SByte[])] : mha +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::WeightMask(System.SByte[])] : mhb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::NonZeroMask(System.Int16)] : mhc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.List`1 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::Decode(System.Collections.Generic.List`1,System.Collections.Generic.List`1)] : mhd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::Encode(System.Byte[],System.Int32,System.UInt16[],System.UInt16[],System.Int64)] : mhe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::Encrypt(System.Byte[],System.SByte[],System.Byte[])] : mhf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::Decrypt(System.SByte[],System.Byte[],System.Byte[])] : mhg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::Hide(System.Byte[],System.Byte[],System.SByte[],System.Byte[],System.Byte[])] : mhh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::Generator(System.Int16[],System.Byte[])] : mhi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::Expand(System.Byte[])] : mhj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::ShortRandom(System.SByte[],Org.BouncyCastle.Security.SecureRandom)] : mhk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::ShortFromList(System.SByte[],System.UInt32[])] : mhl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::RqMult(System.Int16[]&,System.Int16[],System.SByte[]&)] : mhm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::Round(System.Int16[],System.Int16[])] : mhn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::InputsRandom(System.SByte[],Org.BouncyCastle.Security.SecureRandom)] : mho +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::InputsEncode(System.Byte[],System.SByte[])] : mhp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::RoundedEncode(System.Byte[],System.Int16[])] : mhq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::RoundedDecode(System.Int16[],System.Byte[])] : mhr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::ByteEncode(System.Byte[],System.SByte[])] : mhs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::ByteDecode(System.SByte[],System.Byte[])] : mht +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::TopEncode(System.Byte[],System.SByte[])] : mhu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::TopDecode(System.SByte[],System.Byte[])] : mhv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::HashShort(System.SByte[],System.SByte[])] : mhw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::HashPrefix(System.Byte[],System.Int32,System.Byte[],System.Int32)] : mhx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::HashConfirm(System.Byte[],System.Byte[],System.Byte[],System.Byte[])] : mhy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::HashSession(System.Byte[],System.Int32,System.Byte[],System.Byte[])] : mhz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::NegativeMask(System.Int16)] : mia +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::ctDiffMask(System.Byte[],System.Byte[])] : mib +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Double Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::Mod(System.Double,System.Double)] : mic +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::ArithmeticMod_q(System.Int32)] : mie +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::ArithmeticMod_3(System.Int32)] : mif +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.SByte Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::Top(System.Int32)] : mig +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Pqc.Crypto.NtruPrime.NtruPrimeEngine::Right(System.SByte)] : mih +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemExtractor::InitCipher(Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeParameters)] : mii +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemGenerator/SecretWithEncapsulationImpl::Dispose(System.Boolean)] : mij +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKemGenerator/SecretWithEncapsulationImpl::CheckDestroyed()] : mik +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyPairGenerator::Initialize(Org.BouncyCastle.Crypto.KeyGenerationParameters)] : mil +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.NtruPrime.SNtruPrimeKeyPairGenerator::GenKeyPair()] : mim +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters[] Org.BouncyCastle.Pqc.Crypto.Lms.HssKeyGenerationParameters::ValidateLmsParameters(Org.BouncyCastle.Pqc.Crypto.Lms.LmsParameters[])] : mio +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::MakeCopy(Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters)] : mip +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::UpdateHierarchy(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] : miq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::ResetKeyToIndex()] : mir +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::Clone()] : mis +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.HssPrivateKeyParameters::CompareLists(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] : mit +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature Org.BouncyCastle.Pqc.Crypto.Lms.HssSignature::Parse(System.Int32,System.IO.Stream,System.Boolean)] : miu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPublicKeyParameters Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::DerivePublicKey(Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters)] : miv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Lms.LmsPrivateKeyParameters::CalcT(System.Int32)] : miw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature::DeepEquals(System.Byte[][],System.Byte[][])] : miy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Lms.LmsSignature::DeepGetHashCode(System.Byte[][])] : miz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities::CreateDigest(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Int32)] : mja +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Pqc.Crypto.Lms.LmsUtilities::CreateDigest(Org.BouncyCastle.Asn1.DerObjectIdentifier)] : mjb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.GF2PolynomialCalculator::base_mul(System.Int64[],System.Int32,System.Int64,System.Int64)] : mjc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.GF2PolynomialCalculator::karatsuba_add1(System.Int64[],System.Int32,System.Int64[],System.Int32,System.Int64[],System.Int32,System.Int64[],System.Int32,System.Int32,System.Int32)] : mjd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.GF2PolynomialCalculator::karatsuba_add2(System.Int64[],System.Int32,System.Int64[],System.Int32,System.Int64[],System.Int32,System.Int32,System.Int32)] : mje +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.GF2PolynomialCalculator::karatsuba(System.Int64[],System.Int32,System.Int64[],System.Int32,System.Int64[],System.Int32,System.Int32,System.Int64[],System.Int32)] : mjf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.GF2PolynomialCalculator::reduce(System.Int64[],System.Int64[])] : mjg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine::Encrypt(System.Byte[],System.Int64[],System.Int64[],System.Byte[],System.Byte[],System.Byte[])] : mjh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine::Decrypt(System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Int64[])] : mji +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine::GenerateRandomFixedWeight(System.Int64[],Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator,System.Int32)] : mjj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine::GeneratePublicKeyH(System.Int64[],Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator)] : mjk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine::ExtractPublicKeys(System.Int64[],System.Byte[],System.Byte[])] : mjl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine::ExtractKeysFromSecretKeys(System.Int64[],System.Byte[],System.Byte[],System.Byte[])] : mjm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcEngine::ExtractCiphertexts(System.Byte[],System.Byte[],System.Byte[],System.Byte[])] : mjn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::Init(System.Int32)] : mjo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::InitSponge(System.Int32)] : mjp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::KeccakIncAbsorb(System.Byte[],System.Int32)] : mjq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::KeccakIncFinalize(System.Int32)] : mjr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeccakRandomGenerator::KeccakIncSqueeze(System.Byte[],System.Int32)] : mjs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemExtractor::InitCipher(Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters)] : mjt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Hqc.HqcParameters Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemExtractor::get_Parameters()] : mju +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKemGenerator/SecretWithEncapsulationImpl::CheckDestroyed()] : mjv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Hqc.HqcKeyPairGenerator::GenKeyPair(System.Byte[])] : mjw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller::EncodeSub(Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller/Codeword,System.Int32)] : mjx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller::HadamardTransform(System.Int32[],System.Int32[])] : mjy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller::ExpandThenSum(System.Int32[],Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller/Codeword[],System.Int32,System.Int32)] : mjz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller::FindPeaks(System.Int32[])] : mka +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.ReedMuller::Bit0Mask(System.Int32)] : mkb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedSolomon::ComputeSyndromes(System.Int32[],System.Byte[],System.Int32,System.Int32)] : mkc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Hqc.ReedSolomon::ComputeELP(System.Int32[],System.Int32[],System.Int32)] : mkd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedSolomon::ComputeZx(System.Int32[],System.Int32[],System.Int32,System.Int32[],System.Int32)] : mke +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Hqc.ReedSolomon::ComputeErrors(System.Int32[],System.Int32[],System.Byte[],System.Int32,System.Int32)] : mkf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::Sample(System.Int16)] : mkg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::SampleMatrix(System.Int16[],System.Int32,System.Int32,System.Int32)] : mkh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::MatrixTranspose(System.Int16[],System.Int32,System.Int32)] : mki +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::MatrixMul(System.Int16[],System.Int32,System.Int32,System.Int16[],System.Int32)] : mkj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::MatrixAdd(System.Int16[],System.Int16[],System.Int32,System.Int32)] : mkk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::FrodoPack(System.Int16[])] : mkl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::FrodoUnpack(System.Byte[],System.Int32,System.Int32)] : mkm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::Encode(System.Byte[])] : mkn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::MatrixSub(System.Int16[],System.Int16[],System.Int32,System.Int32)] : mko +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::Decode(System.Int16[])] : mkp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::CTVerify(System.Int16[],System.Int16[],System.Int16[],System.Int16[])] : mkq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Frodo.FrodoEngine::CTSelect(System.Byte[],System.Byte[],System.Int16)] : mkr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconRNG::QROUND(System.UInt32[],System.Int32,System.Int32,System.Int32,System.Int32)] : mks +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.FalconRNG::prng_refill()] : mkt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::skoff_b00(System.UInt32)] : mku +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::skoff_b01(System.UInt32)] : mkv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::skoff_b10(System.UInt32)] : mkw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::skoff_b11(System.UInt32)] : mkx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.FalconSign::skoff_tree(System.UInt32)] : mky +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.SamplerZ::gaussian0_sampler(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconRNG)] : mkz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.SamplerZ::BerExp(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconRNG,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] : mla +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Falcon.SamplerZ::sampler(Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR,Org.BouncyCastle.Pqc.Crypto.Falcon.FalconFPR)] : mlb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Falcon.SHAKE256::process_block(System.UInt64[])] : mlc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_Mode(System.Int32)] : mld +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_Random(Org.BouncyCastle.Security.SecureRandom)] : mle +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_K(System.Int32)] : mlf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_L(System.Int32)] : mlg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_Eta(System.Int32)] : mlh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_Tau(System.Int32)] : mli +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_Beta(System.Int32)] : mlj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_Gamma1(System.Int32)] : mlk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_Gamma2(System.Int32)] : mll +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_Omega(System.Int32)] : mlm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_CTilde(System.Int32)] : mln +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_PolyVecHPackedBytes(System.Int32)] : mlo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_PolyZPackedBytes(System.Int32)] : mlp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_PolyW1PackedBytes(System.Int32)] : mlq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_PolyEtaPackedBytes(System.Int32)] : mlr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_CryptoPublicKeyBytes(System.Int32)] : mls +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_CryptoSecretKeyBytes(System.Int32)] : mlt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_CryptoBytes(System.Int32)] : mlu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_PolyUniformGamma1NBytes(System.Int32)] : mlv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine::set_Symmetric(Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric)] : mlw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::RejectUniform(System.Int32[],System.Int32,System.Int32,System.Byte[],System.Int32)] : mlx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Poly::RejectEta(System.Int32[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)] : mly +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/AesSymmetric::Aes128(System.Byte[],System.Int32,System.Int32)] : mlz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/AesSymmetric::StreamInit(System.Byte[],System.UInt16)] : mma +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.Symmetric/ShakeSymmetric::StreamInit(Org.BouncyCastle.Crypto.Digests.ShakeDigest,System.Byte[],System.UInt16)] : mmb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.Benes12::ApplyBenes(System.Byte[],System.Byte[],System.Int32)] : mmc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::Syndrome(System.Byte[],System.Byte[],System.Byte[])] : mmd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::GenerateErrorVector(System.Byte[],Org.BouncyCastle.Security.SecureRandom)] : mme +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::Encrypt(System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] : mmf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::Decrypt(System.Byte[],System.Byte[],System.Byte[])] : mmg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::Min(System.UInt16,System.Int32)] : mmh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::BM(System.UInt16[],System.UInt16[])] : mmi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::Synd(System.UInt16[],System.UInt16[],System.UInt16[],System.Byte[])] : mmj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::MovColumns(System.Byte[][],System.UInt16[],System.UInt64[])] : mmk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::Ctz(System.UInt64)] : mml +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::SameMask64(System.UInt16,System.UInt16)] : mmm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::SameMask32(System.Int16,System.Int16)] : mmn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::Layer(System.UInt16[],System.Byte[],System.Int32,System.Int32,System.Int32)] : mmo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::ControlBitsFromPermutation(System.Byte[],System.UInt16[],System.Int64,System.Int64)] : mmp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::GetQShort(System.Int32[],System.Int32)] : mmq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::CBRecursion(System.Byte[],System.Int64,System.Int64,System.UInt16[],System.Int32,System.Int64,System.Int64,System.Int32[])] : mmr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::PKGen(System.Byte[],System.Byte[],System.UInt32[],System.UInt16[],System.UInt64[])] : mms +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::Eval(System.UInt16[],System.UInt16)] : mmt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::Root(System.UInt16[],System.UInt16[],System.UInt16[])] : mmu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::GenerateIrrPoly(System.UInt16[])] : mmv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::CheckPKPadding(System.Byte[])] : mmw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::CheckCPadding(System.Byte[])] : mmx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::Sort32(System.Int32[],System.Int32,System.Int32)] : mmy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceEngine`1::Sort64(System.Int64[],System.Int32,System.Int32)] : mmz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKemExtractor::InitCipher(Org.BouncyCastle.Pqc.Crypto.Cmce.CmceParameters)] : mna +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKemExtractor::ExtractSecret(System.Byte[],System.Int32)] : mnb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISecretWithEncapsulation Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKemGenerator::GenerateEncapsulated(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.Int32)] : mnc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyPairGenerator::Initialize(Org.BouncyCastle.Crypto.KeyGenerationParameters)] : mnd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Pqc.Crypto.Cmce.CmceKeyPairGenerator::GenKeyPair()] : mne +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Cmce.GF12::GFMulExtPar(System.UInt16,System.UInt16,System.UInt16,System.UInt16)] : mnf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFMulExtPar(System.UInt16,System.UInt16,System.UInt16,System.UInt16)] : mng +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFSq2(System.UInt16)] : mnh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFSqMul(System.UInt16,System.UInt16)] : mni +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt16 Org.BouncyCastle.Pqc.Crypto.Cmce.GF13::GFSq2Mul(System.UInt16,System.UInt16)] : mnj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::FunctionH(System.Byte[])] : mnk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::FunctionL(System.UInt64[],System.Byte[],System.Int32)] : mnl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::FunctionK(System.Byte[],System.Byte[],System.Byte[])] : mnm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::FunctionK(System.Byte[],System.Byte[],System.Byte[],System.Byte[])] : mnn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::ComputeSyndrome(System.Byte[],System.Byte[])] : mno +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::BGFDecoder(System.Byte[],System.Int32[],System.Int32[])] : mnp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::BFIter(System.Byte[],System.Byte[],System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[],System.UInt32[],System.UInt32[],System.Byte[])] : mnq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::BFIter2(System.Byte[],System.Byte[],System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[],System.UInt32[],System.Byte[])] : mnr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::BFMaskedIter(System.Byte[],System.Byte[],System.UInt32[],System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32[])] : mns +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::Threshold(System.Int32,System.Int32)] : mnt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::ThresholdFromParameters(System.Int32,System.Double,System.Double,System.Int32)] : mnu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::Ctr(System.Int32[],System.Byte[],System.Int32)] : mnv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::CtrAll(System.Int32[],System.Byte[],System.Byte[])] : mnw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::ConvertToCompact(System.Int32[],System.Byte[])] : mnx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::GetColumnFromCompactVersion(System.Int32[])] : mny +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::RecomputeSyndrome(System.Byte[],System.Int32,System.Int32[],System.Int32[])] : mnz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::AlignE01From1To64(System.UInt64[])] : moa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::AlignE01From64To8(System.UInt64[])] : mob +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeEngine::AlignE01From8To1(System.UInt64[])] : moc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeKemGenerator/SecretWithEncapsulationImpl::CheckDestroyed()] : moe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing/d__27::System.IDisposable.Dispose()] : mof +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing/d__27::System.Collections.Generic.IEnumerator.get_Current()] : mog +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing/d__27::System.Collections.IEnumerator.Reset()] : moh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing/d__27::System.Collections.IEnumerator.get_Current()] : moi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing/d__27::System.Collections.Generic.IEnumerable.GetEnumerator()] : moj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing/d__27::System.Collections.IEnumerable.GetEnumerator()] : mok +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::ImplModAdd(System.Int32,System.Int32,System.Int32)] : mol +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::ImplMultiplyAcc(System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.UInt64[])] : mom +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::ImplPermute(System.UInt64[],System.Int32,System.UInt64[])] : mon +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::EnumerateSquarePowersInv(System.Int32)] : moo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::GenerateHalfPower(System.UInt32,System.UInt32,System.Int32)] : mop +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::ImplMulwAcc(System.UInt64[],System.UInt64,System.UInt64,System.UInt64[],System.Int32)] : moq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeRing::ImplSquare(System.UInt64[],System.UInt64[])] : mor +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Crypto.Bike.BikeUtilities::CheckBit(System.UInt64[],System.UInt32)] : mos +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pqc.Crypto.Bike.BikeUtilities::SetBit(System.UInt64[],System.UInt32)] : mot +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Asn1.CmcePrivateKey::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pqc.Asn1.CmcePublicKey::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathBuilderResult Org.BouncyCastle.Pkix.PkixAttrCertPathBuilder::Build(Org.BouncyCastle.X509.X509V2AttributeCertificate,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Pkix.PkixBuilderParameters,System.Collections.Generic.IList`1)] : mow +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixBuilderParameters::SetParams(Org.BouncyCastle.Pkix.PkixParameters)] : mox +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Pkix.PkixCertPath::SortCerts(System.Collections.Generic.IList`1)] : moy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Pkix.PkixCertPath::ToAsn1Object(Org.BouncyCastle.X509.X509Certificate)] : moz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkix.PkixCertPath::ToDerEncoded(Org.BouncyCastle.Asn1.Asn1Encodable)] : mpa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkix.PkixCertPathBuilderResult Org.BouncyCastle.Pkix.PkixCertPathBuilder::Build(Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Pkix.PkixBuilderParameters,System.Collections.Generic.IList`1)] : mpb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::GetSerialNumber(System.Object)] : mpc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::RemovePolicyNodeRecurse(System.Collections.Generic.List`1[],Org.BouncyCastle.Pkix.PkixPolicyNode)] : mpd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::IsDeltaCrl(Org.BouncyCastle.X509.X509Crl)] : mpe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::RetainDeltaCrls(System.Collections.Generic.HashSet`1)] : mpf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixCertPathValidatorUtilities::HasCriticalExtension(Org.BouncyCastle.Asn1.X509.X509Extensions,Org.BouncyCastle.Asn1.DerObjectIdentifier)] : mpg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::WithinDNSubtree(Org.BouncyCastle.Asn1.Asn1Sequence,Org.BouncyCastle.Asn1.Asn1Sequence)] : mph +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckExcludedDN(System.Collections.Generic.HashSet`1,Org.BouncyCastle.Asn1.Asn1Sequence)] : mpi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckPermittedDN(System.Collections.Generic.HashSet`1,Org.BouncyCastle.Asn1.Asn1Sequence)] : mpj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IsDNConstrained(System.Collections.Generic.HashSet`1,Org.BouncyCastle.Asn1.Asn1Sequence)] : mpk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IntersectDN(System.Collections.Generic.HashSet`1,System.Collections.Generic.HashSet`1)] : mpl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::UnionDN(System.Collections.Generic.HashSet`1,Org.BouncyCastle.Asn1.Asn1Sequence)] : mpm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckExcludedOtherName(System.Collections.Generic.HashSet`1,Org.BouncyCastle.Asn1.X509.OtherName)] : mpn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckPermittedOtherName(System.Collections.Generic.HashSet`1,Org.BouncyCastle.Asn1.X509.OtherName)] : mpo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IsOtherNameConstrained(System.Collections.Generic.HashSet`1,Org.BouncyCastle.Asn1.X509.OtherName)] : mpp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IsOtherNameConstrained(Org.BouncyCastle.Asn1.X509.OtherName,Org.BouncyCastle.Asn1.X509.OtherName)] : mpq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IntersectOtherName(System.Collections.Generic.HashSet`1,System.Collections.Generic.HashSet`1)] : mpr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IntersectOtherName(Org.BouncyCastle.Asn1.X509.OtherName,Org.BouncyCastle.Asn1.X509.OtherName,System.Collections.Generic.HashSet`1)] : mps +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::UnionOtherName(System.Collections.Generic.HashSet`1,Org.BouncyCastle.Asn1.X509.OtherName)] : mpt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckExcludedEmail(System.Collections.Generic.HashSet`1,System.String)] : mpu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckPermittedEmail(System.Collections.Generic.HashSet`1,System.String)] : mpv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IsEmailConstrained(System.Collections.Generic.HashSet`1,System.String)] : mpw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IsEmailConstrained(System.String,System.String)] : mpx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IntersectEmail(System.Collections.Generic.HashSet`1,System.Collections.Generic.HashSet`1)] : mpy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IntersectEmail(System.String,System.String,System.Collections.Generic.HashSet`1)] : mpz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::UnionEmail(System.Collections.Generic.HashSet`1,System.String)] : mqa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::UnionEmail(System.String,System.String,System.Collections.Generic.HashSet`1)] : mqb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckExcludedIP(System.Collections.Generic.HashSet`1,System.Byte[])] : mqc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckPermittedIP(System.Collections.Generic.HashSet`1,System.Byte[])] : mqd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IsIPConstrained(System.Collections.Generic.HashSet`1,System.Byte[])] : mqe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IsIPConstrained(System.Byte[],System.Byte[])] : mqf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IntersectIP(System.Collections.Generic.HashSet`1,System.Collections.Generic.HashSet`1)] : mqg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IntersectIPRange(System.Byte[],System.Byte[])] : mqh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::UnionIP(System.Collections.Generic.HashSet`1,System.Byte[])] : mqi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::UnionIPRange(System.Byte[],System.Byte[])] : mqj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IpWithSubnetMask(System.Byte[],System.Byte[])] : mqk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Pkix.PkixNameConstraintValidator::ExtractIPsAndSubnetMasks(System.Byte[],System.Byte[])] : mql +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Pkix.PkixNameConstraintValidator::MinMaxIPs(System.Byte[],System.Byte[],System.Byte[],System.Byte[])] : mqm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkix.PkixNameConstraintValidator::Max(System.Byte[],System.Byte[])] : mqn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkix.PkixNameConstraintValidator::Min(System.Byte[],System.Byte[])] : mqo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CompareTo(System.Byte[],System.Byte[])] : mqp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkix.PkixNameConstraintValidator::Or(System.Byte[],System.Byte[])] : mqq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckExcludedDns(System.Collections.Generic.HashSet`1,System.String)] : mqr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckPermittedDns(System.Collections.Generic.HashSet`1,System.String)] : mqs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IsDnsConstrained(System.Collections.Generic.HashSet`1,System.String)] : mqt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IsDnsConstrained(System.String,System.String)] : mqu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IntersectDns(System.Collections.Generic.HashSet`1,System.Collections.Generic.HashSet`1)] : mqv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::UnionDns(System.Collections.Generic.HashSet`1,System.String)] : mqw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckExcludedUri(System.Collections.Generic.HashSet`1,System.String)] : mqx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::CheckPermittedUri(System.Collections.Generic.HashSet`1,System.String)] : mqy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IsUriConstrained(System.Collections.Generic.HashSet`1,System.String)] : mqz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IsUriConstrained(System.String,System.String)] : mra +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IntersectUri(System.Collections.Generic.HashSet`1,System.Collections.Generic.HashSet`1)] : mrb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::IntersectUri(System.String,System.String,System.Collections.Generic.HashSet`1)] : mrc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.HashSet`1 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::UnionUri(System.Collections.Generic.HashSet`1,System.String)] : mrd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::UnionUri(System.String,System.String,System.Collections.Generic.HashSet`1)] : mre +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.PkixNameConstraintValidator::ExtractHostFromURL(System.String)] : mrf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::WithinDomain(System.String,System.String)] : mrg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.PkixNameConstraintValidator::ExtractNameAsString(Org.BouncyCastle.Asn1.X509.GeneralName)] : mrh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::HashCollection(System.Collections.Generic.HashSet`1)] : mri +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Pkix.PkixNameConstraintValidator::HashCollection(System.Collections.Generic.HashSet`1)] : mrj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::AreEqualSets(System.Collections.Generic.HashSet`1,System.Collections.Generic.HashSet`1)] : mrk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkix.PkixNameConstraintValidator::AreEqualSets(System.Collections.Generic.HashSet`1,System.Collections.Generic.HashSet`1)] : mrl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.PkixNameConstraintValidator::StringifyIP(System.Byte[])] : mrm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.PkixNameConstraintValidator::StringifyIPCollection(System.Collections.Generic.HashSet`1)] : mrn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkix.PkixNameConstraintValidator::StringifyOtherNameCollection(System.Collections.Generic.HashSet`1)] : mro +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixNameConstraintValidator::Append(System.Text.StringBuilder,System.String,System.Object)] : mrp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.PkixParameters::SetParams(Org.BouncyCastle.Pkix.PkixParameters)] : mox +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3280CertPathUtilities::CheckCrl(Org.BouncyCastle.Asn1.X509.DistributionPoint,Org.BouncyCastle.Pkix.PkixParameters,Org.BouncyCastle.X509.X509Certificate,System.DateTime,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Pkix.CertStatus,Org.BouncyCastle.Pkix.ReasonsMask,System.Collections.Generic.IList`1)] : mrq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.Rfc3281CertPathUtilities::CheckCrl(Org.BouncyCastle.Asn1.X509.DistributionPoint,Org.BouncyCastle.X509.X509V2AttributeCertificate,Org.BouncyCastle.Pkix.PkixParameters,System.DateTime,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Pkix.CertStatus,Org.BouncyCastle.Pkix.ReasonsMask,System.Collections.Generic.IList`1)] : mrr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkix.TrustAnchor::SetNameConstraints(System.Byte[])] : mrs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::CreatePssParams(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int32)] : mrt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::Init(Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Asn1Set)] : mru +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::Init(Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.Asn1.X509.X509Name,Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,Org.BouncyCastle.Asn1.Asn1Set)] : mrv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::SetSignatureParameters(Org.BouncyCastle.Crypto.ISigner,Org.BouncyCastle.Asn1.Asn1Encodable)] : mrw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest::GetDigestAlgName(Org.BouncyCastle.Asn1.DerObjectIdentifier)] : mrx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo Org.BouncyCastle.Pkcs.Pkcs10CertificationRequestDelaySigned::GetPubInfo(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] : mry +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::LoadKeyBag(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo,Org.BouncyCastle.Asn1.Asn1Set)] : mrz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::LoadPkcs8ShroudedKeyBag(Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo,Org.BouncyCastle.Asn1.Asn1Set,System.Char[],System.Boolean)] : msa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::DeleteCertsEntry(System.String)] : msb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::DeleteKeysEntry(System.String)] : msc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Pkcs.Pkcs12Store::CreateEntryFriendlyName(System.String,Org.BouncyCastle.Pkcs.Pkcs12Entry)] : msd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::AddLocalKeyID(Org.BouncyCastle.Asn1.Asn1EncodableVector,Org.BouncyCastle.Pkcs.X509CertificateEntry)] : mse +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::AddLocalKeyID(Org.BouncyCastle.Asn1.Asn1EncodableVector,Org.BouncyCastle.X509.X509Certificate)] : msf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.CertBag Org.BouncyCastle.Pkcs.Pkcs12Store::CreateCertBag(Org.BouncyCastle.X509.X509Certificate)] : msh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Pkcs.Pkcs12Store::CreateLocalKeyID(Org.BouncyCastle.X509.X509Certificate)] : msi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkcs.Pkcs12Store::CryptPbeData(System.Boolean,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Char[],System.Boolean,System.Byte[])] : msj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::Clear(System.Collections.Generic.Dictionary`2,System.Collections.Generic.List`1)] : msk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::Map(System.Collections.Generic.Dictionary`2,System.Collections.Generic.List`1,K,V)] : msl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs12Store::Remove(System.Collections.Generic.Dictionary`2,System.Collections.Generic.List`1,K)] : msm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Pkcs.Pkcs12Store::Remove(System.Collections.Generic.Dictionary`2,System.Collections.Generic.List`1,K,V&)] : msn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::RemoveOrdering(System.Collections.Generic.IEqualityComparer`1,System.Collections.Generic.List`1,K)] : mso +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.Pkcs12Store::ReplaceOrdering(System.Collections.Generic.IEqualityComparer`1,System.Collections.Generic.List`1,K,K)] : msp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Pkcs.Pkcs12Utilities::DLEncode(Org.BouncyCastle.Asn1.Asn1Encodable)] : msq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.EncryptedPrivateKeyInfo Org.BouncyCastle.Pkcs.Pkcs8EncryptedPrivateKeyInfo::parseBytes(System.Byte[])] : msr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Pkcs.PrivateKeyInfoFactory::ExtractBytes(System.Byte[],System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger)] : mss +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Pkcs.PrivateKeyInfoFactory::GetMLDsaPrivateKeyAsn1(Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters)] : mst +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Pkcs.PrivateKeyInfoFactory::GetMLKemPrivateKeyAsn1(Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters)] : msu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObject Org.BouncyCastle.OpenSsl.MiscPemGenerator::CreatePemObject(System.Object)] : msv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Utilities.IO.Pem.PemObject Org.BouncyCastle.OpenSsl.MiscPemGenerator::CreatePemObject(System.Object,System.String,System.Char[],Org.BouncyCastle.Security.SecureRandom)] : msw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.OpenSsl.MiscPemGenerator::EncodePrivateKey(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.String&)] : msx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.OpenSsl.MiscPemGenerator::EncodePrivateKeyInfo(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo,System.String&)] : msy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.OpenSsl.MiscPemGenerator::EncodePublicKey(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,System.String&)] : msz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.OpenSsl.MiscPemGenerator::EncodePublicKeyInfo(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo,System.String&)] : mta +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.OpenSsl.PemReader::ReadRsaPublicKey(Org.BouncyCastle.Utilities.IO.Pem.PemObject)] : mtb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.OpenSsl.PemReader::ReadPublicKey(Org.BouncyCastle.Utilities.IO.Pem.PemObject)] : mtc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate Org.BouncyCastle.OpenSsl.PemReader::ReadCertificate(Org.BouncyCastle.Utilities.IO.Pem.PemObject)] : mtd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Crl Org.BouncyCastle.OpenSsl.PemReader::ReadCrl(Org.BouncyCastle.Utilities.IO.Pem.PemObject)] : mte +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pkcs.Pkcs10CertificationRequest Org.BouncyCastle.OpenSsl.PemReader::ReadCertificateRequest(Org.BouncyCastle.Utilities.IO.Pem.PemObject)] : mtf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509V2AttributeCertificate Org.BouncyCastle.OpenSsl.PemReader::ReadAttributeCertificate(Org.BouncyCastle.Utilities.IO.Pem.PemObject)] : mtg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.OpenSsl.PemReader::ReadPkcs7(Org.BouncyCastle.Utilities.IO.Pem.PemObject)] : mth +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.OpenSsl.PemReader::ReadPrivateKey(Org.BouncyCastle.Utilities.IO.Pem.PemObject)] : mti +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.OpenSsl.PemUtilities::ParseDekAlgName(System.String,Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg&,Org.BouncyCastle.OpenSsl.PemUtilities/PemMode&)] : mtj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.OpenSsl.PemUtilities::GetCipherParameters(System.Char[],Org.BouncyCastle.OpenSsl.PemUtilities/PemBaseAlg,System.Byte[])] : mtk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBasicAgreement Org.BouncyCastle.Security.AgreementUtilities::GetBasicAgreementForMechanism(System.String)] : mtl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBasicAgreement Org.BouncyCastle.Security.AgreementUtilities::GetBasicAgreementWithKdfForMechanism(System.String,System.String)] : mtm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IRawAgreement Org.BouncyCastle.Security.AgreementUtilities::GetRawAgreementForMechanism(System.String)] : mtn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.AgreementUtilities::GetMechanism(System.String)] : mto +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBufferedCipher Org.BouncyCastle.Security.CipherUtilities::GetCipherForMechanism(System.String)] : mtp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.CipherUtilities::GetDigitIndex(System.String)] : mtq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.CipherUtilities::GetMechanism(System.String)] : mtr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBlockCipher Org.BouncyCastle.Security.CipherUtilities::CreateBlockCipher(Org.BouncyCastle.Security.CipherUtilities/CipherAlgorithm)] : mts +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Security.DigestUtilities::GetDigestForMechanism(System.String)] : mtt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.DigestUtilities::GetMechanism(System.String)] : mtu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Security.DotNetUtilities::GetECPoint(Org.BouncyCastle.Math.EC.ECCurve,System.Security.Cryptography.ECPoint)] : mtv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Security.DotNetUtilities::GetX9ECParameters(System.Security.Cryptography.ECCurve)] : mtw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.DotNetUtilities::ConvertRSAParametersField(Org.BouncyCastle.Math.BigInteger,System.Int32)] : mtx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Security.Cryptography.RSACryptoServiceProvider Org.BouncyCastle.Security.DotNetUtilities::CreateRSAProvider(System.Security.Cryptography.RSAParameters)] : mty +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Security.Cryptography.RSACryptoServiceProvider Org.BouncyCastle.Security.DotNetUtilities::CreateRSAProvider(System.Security.Cryptography.RSAParameters,System.Security.Cryptography.CspParameters)] : mtz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.GeneratorUtilities::AddDefaultKeySizeEntries(System.Int32,System.String[])] : mua +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.GeneratorUtilities::AddKgAlgorithm(System.String,System.Object[])] : mub +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.GeneratorUtilities::AddKpgAlgorithm(System.String,System.Object[])] : muc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.GeneratorUtilities::AddHMacKeyGenerator(System.String,System.Object[])] : mud +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.GeneratorUtilities::FindDefaultKeySize(System.String)] : mue +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.JksStore::GetKeyChecksum(Org.BouncyCastle.Crypto.IDigest,System.Char[],System.Byte[])] : muf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.JksStore::CalculateKeyStream(Org.BouncyCastle.Crypto.IDigest,System.Char[],System.Byte[],System.Int32)] : mug +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::SaveStream(System.IO.Stream,Org.BouncyCastle.Crypto.IDigest)] : muh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::LoadStream(Org.BouncyCastle.Security.JksStore/ErasableByteStream)] : mui +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.JksStore/ErasableByteStream Org.BouncyCastle.Security.JksStore::ValidateStream(System.IO.Stream,System.Char[])] : muj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::AddPassword(Org.BouncyCastle.Crypto.IDigest,System.Char[])] : muk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.JksStore::CalculateChecksum(System.Char[],System.Byte[],System.Int32,System.Int32)] : mul +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate[] Org.BouncyCastle.Security.JksStore::CloneChain(Org.BouncyCastle.X509.X509Certificate[])] : mum +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.JksStore::ConvertAlias(System.String)] : mun +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Security.JksStore::CreateChecksumDigest(System.Char[])] : muo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.JksStore::ReadBufferWithInt16Length(System.IO.BinaryReader)] : mup +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.JksStore::ReadBufferWithInt32Length(System.IO.BinaryReader)] : muq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Security.JksStore::ReadDateTime(System.IO.BinaryReader)] : mur +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.X509.X509Certificate Org.BouncyCastle.Security.JksStore::ReadTypedCertificate(System.IO.BinaryReader,System.Int32)] : mus +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.JksStore::ReadUtf(System.IO.BinaryReader)] : mut +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::WriteBufferWithInt32Length(System.IO.BinaryWriter,System.Byte[])] : muu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::WriteDateTime(System.IO.BinaryWriter,System.DateTime)] : muv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::WriteTypedCertificate(System.IO.BinaryWriter,Org.BouncyCastle.X509.X509Certificate)] : muw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.JksStore::WriteUtf(System.IO.BinaryWriter,System.String)] : mux +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.KemUtilities::Register(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier)] : muy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IKemDecapsulator Org.BouncyCastle.Security.KemUtilities::GetDecapForMechanism(System.String)] : muz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IKemEncapsulator Org.BouncyCastle.Security.KemUtilities::GetEncapForMechanism(System.String)] : mva +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.KemUtilities::TryGetMechanism(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String&)] : mvb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.KemUtilities::TryGetMechanism(System.String,System.String&)] : mvc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMac Org.BouncyCastle.Security.MacUtilities::GetMacForMechanism(System.String)] : mvd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.MacUtilities::GetMechanism(System.String)] : mve +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.ParameterUtilities::AddAlgorithm(System.String,System.Object[])] : mvf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.ParameterUtilities::AddBasicIVSizeEntries(System.Int32,System.String[])] : mvg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Security.ParameterUtilities::CreateIVOctetString(Org.BouncyCastle.Security.SecureRandom,System.Int32)] : mvh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.ParameterUtilities::CreateIV(Org.BouncyCastle.Security.SecureRandom,System.Int32)] : mvi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Security.ParameterUtilities::FindBasicIVSize(System.String)] : mvj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.PbeParametersGenerator Org.BouncyCastle.Security.PbeUtilities::MakePbeGenerator(System.String,Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Byte[],System.Int32)] : mvk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ICipherParameters Org.BouncyCastle.Security.PbeUtilities::FixDesParity(System.String,Org.BouncyCastle.Crypto.ICipherParameters)] : mvl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.PrivateKeyFactory::GetRawKey(Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo)] : mvm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Security.PublicKeyFactory::GetRawKey(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] : mvn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Security.PublicKeyFactory::IsPkcsDHParam(Org.BouncyCastle.Asn1.Asn1Sequence)] : mvo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters Org.BouncyCastle.Security.PublicKeyFactory::ReadPkcsDHParam(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.Asn1Sequence)] : mvp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Security.SecureRandom::NextCounterValue()] : mvq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Prng.DigestRandomGenerator Org.BouncyCastle.Security.SecureRandom::CreatePrng(System.String,System.Boolean)] : mvr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SecureRandom::AutoSeed(Org.BouncyCastle.Crypto.Prng.IRandomGenerator,System.Int32)] : mvs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Security.SignerUtilities::AddAlgorithm(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean)] : mvt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Security.SignerUtilities::GetDefaultX509ParametersForMechanism(System.String)] : mvu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Security.SignerUtilities::GetMechanism(System.String)] : mvv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Security.SignerUtilities::GetPssX509Parameters(System.String)] : mvw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISigner Org.BouncyCastle.Security.SignerUtilities::GetSignerForMechanism(System.String)] : mvx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.ISigner Org.BouncyCastle.Security.SignerUtilities::InitSignerForMechanism(System.String,System.Boolean,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Security.SecureRandom)] : mvy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Ocsp.BasicOcspResp::GetX509Extensions()] : lfk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.List`1 Org.BouncyCastle.Ocsp.BasicOcspResp::GetCertList()] : mvz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.BasicOcspResp Org.BouncyCastle.Ocsp.BasicOcspRespGenerator::GenerateResponse(Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.X509.X509Certificate[],System.DateTime)] : mwa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertID Org.BouncyCastle.Ocsp.CertificateID::CreateCertID(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Asn1.DerInteger)] : mwb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Ocsp.CertID Org.BouncyCastle.Ocsp.CertificateID::CreateCertID(Org.BouncyCastle.Crypto.IDigestFactory,Org.BouncyCastle.X509.X509Certificate,Org.BouncyCastle.Asn1.DerInteger)] : mwc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Ocsp.OcspReq::GetX509Extensions()] : lfk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.List`1 Org.BouncyCastle.Ocsp.OcspReq::GetCertList()] : mwd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Ocsp.OcspReq Org.BouncyCastle.Ocsp.OcspReqGenerator::GenerateRequest(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.X509.X509Certificate[],Org.BouncyCastle.Security.SecureRandom)] : mwe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Ocsp.Req::GetX509Extensions()] : lfk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Ocsp.RespData::GetX509Extensions()] : lfk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509Extensions Org.BouncyCastle.Ocsp.SingleResp::GetX509Extensions()] : lfk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Mozilla.SignedPublicKeyAndChallenge::CheckSignature(Org.BouncyCastle.Crypto.IVerifierFactory)] : mwf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Mozilla.SignedPublicKeyAndChallenge::CheckSignatureValid(Org.BouncyCastle.Crypto.IVerifierFactory)] : mwg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::OnDeserialized(System.Runtime.Serialization.StreamingContext)] : mwh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::GetBytesLength(System.Int32)] : mwi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::InitBE(System.Byte[],System.Int32,System.Int32,System.Int32&)] : mwj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::InitLE(System.Byte[],System.Int32,System.Int32,System.Int32&)] : mwk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::MakeMagnitudeBE(System.Byte[])] : mwl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::MakeMagnitudeBE(System.Byte[],System.Int32,System.Int32)] : mwm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::MakeMagnitudeLE(System.Byte[])] : mwn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::MakeMagnitudeLE(System.Byte[],System.Int32,System.Int32)] : mwo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::AddMagnitudes(System.UInt32[],System.UInt32[])] : mwp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::AddToMagnitude(System.UInt32[])] : mwq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::CalcBitLength(System.Int32,System.Int32,System.UInt32[])] : mwr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::BitLen(System.Byte)] : mws +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::BitLen(System.UInt32)] : mwt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.BigInteger::QuickPow2Check()] : mwu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::CompareTo(System.Int32,System.UInt32[],System.Int32,System.UInt32[])] : mwv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::CompareNoLeadingZeros(System.Int32,System.UInt32[],System.Int32,System.UInt32[])] : mww +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::Divide(System.UInt32[],System.UInt32[])] : mwx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.BigInteger::IsEqualMagnitude(Org.BouncyCastle.Math.BigInteger)] : mwy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::Inc()] : mwz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.BigInteger::CheckProbablePrime(System.Int32,System.Random,System.Boolean)] : mxa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ModInversePow2(Org.BouncyCastle.Math.BigInteger)] : mxb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ExtEuclid(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger&)] : mxc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::ZeroOut(System.Int32[])] : mxd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ModPowBarrett(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : mxe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ReduceBarrett(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : mxf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ModPowMonty(System.UInt32[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Boolean)] : mxg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::ModSquareMonty(System.UInt32[],Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : mxh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::GetWindowList(System.UInt32[],System.Int32)] : mxi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.BigInteger::CreateWindowEntry(System.UInt32,System.UInt32)] : mxj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::Square(System.UInt32[],System.UInt32[])] : mxk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::Multiply(System.UInt32[],System.UInt32[],System.UInt32[])] : mxl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.BigInteger::GetMQuote()] : mxm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::MontgomeryReduce(System.UInt32[],System.UInt32[],System.UInt32)] : mxn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::MultiplyMonty(System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32,System.Boolean)] : mxo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::SquareMonty(System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32,System.Boolean)] : mxp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.BigInteger::MultiplyMontyNIsOne(System.UInt32,System.UInt32,System.UInt32,System.UInt32)] : mxq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::Remainder(System.Int32)] : mxr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::Remainder(System.UInt32[],System.UInt32[])] : mxs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::LastNBits(System.Int32)] : mxt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::DivideWords(System.Int32)] : mxu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::RemainderWords(System.Int32)] : mxv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::ShiftLeft(System.UInt32[],System.Int32)] : mxw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::ShiftLeftOneInPlace(System.Int32[],System.Int32)] : mxx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::ShiftRightInPlace(System.Int32,System.UInt32[],System.Int32)] : mxy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::ShiftRightOneInPlace(System.Int32,System.UInt32[])] : mxz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::Subtract(System.Int32,System.UInt32[],System.Int32,System.UInt32[])] : mya +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.BigInteger::DoSubBigLil(System.UInt32[],System.UInt32[])] : myb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.BigInteger::ToByteArray(System.Boolean)] : myc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::ToString(System.Text.StringBuilder,System.Int32,System.Collections.Generic.IList`1,System.Int32,Org.BouncyCastle.Math.BigInteger)] : myd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.BigInteger::AppendZeroExtendedString(System.Text.StringBuilder,System.String,System.Int32)] : mye +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::CreateUValueOf(System.UInt32)] : myf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::CreateUValueOf(System.UInt64)] : myg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.BigInteger::GetLowestSetBitMaskFirst(System.UInt32)] : myh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.BigInteger::FlipExistingBit(System.Int32)] : myi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Primes::CheckCandidate(Org.BouncyCastle.Math.BigInteger,System.String)] : myj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Primes::ImplHasAnySmallFactors(Org.BouncyCastle.Math.BigInteger)] : myk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Primes::ImplMRProbablePrimeToBase(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32,Org.BouncyCastle.Math.BigInteger)] : myl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Primes/STOutput Org.BouncyCastle.Math.Primes::ImplSTRandomPrime(Org.BouncyCastle.Crypto.IDigest,System.Int32,System.Byte[])] : mym +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Primes::Hash(Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Byte[],System.Int32)] : myn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.Primes::HashGen(Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Int32)] : myo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Primes::Inc(System.Byte[],System.Int32)] : myp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Primes::IsPrime32(System.UInt32)] : myq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Mod::Add30(System.Int32,System.Int32[],System.Int32[])] : myr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Mod::CNegate30(System.Int32,System.Int32,System.Int32[])] : mys +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Mod::CNormalize30(System.Int32,System.Int32,System.Int32[],System.Int32[])] : myt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Mod::Decode30(System.Int32,System.Int32[],System.UInt32[])] : myu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Mod::Divsteps30Var(System.Int32,System.Int32,System.Int32,System.Int32[])] : myv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Mod::Encode30(System.Int32,System.UInt32[],System.Int32[])] : myw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Mod::EqualTo(System.Int32,System.Int32[],System.Int32)] : myx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.Raw.Mod::EqualToVar(System.Int32,System.Int32[],System.Int32)] : myy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Mod::GetMaximumDivsteps(System.Int32)] : myz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Mod::GetMaximumHDDivsteps(System.Int32)] : mza +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Mod::HDDivsteps30(System.Int32,System.Int32,System.Int32,System.Int32[])] : mzb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Mod::Negate30(System.Int32,System.Int32[])] : mzc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.Raw.Mod::TrimFG30Var(System.Int32,System.Int32[],System.Int32[])] : mzd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Mod::UpdateDE30(System.Int32,System.Int32[],System.Int32[],System.Int32[],System.Int32,System.Int32[])] : mze +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.Raw.Mod::UpdateFG30(System.Int32,System.Int32[],System.Int32[],System.Int32[])] : mzf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ImplShamirsTrickWNaf(Org.BouncyCastle.Math.EC.ECPoint[],Org.BouncyCastle.Math.EC.ECPoint[],System.Byte[],Org.BouncyCastle.Math.EC.ECPoint[],Org.BouncyCastle.Math.EC.ECPoint[],System.Byte[])] : mzg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ImplSumOfMultiplies(System.Boolean[],Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo[],System.Byte[][])] : mzh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECAlgorithms::ImplShamirsTrickFixedPoint(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] : mzi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECCurve/DefaultLookupTable::CreatePoint(System.Byte[],System.Byte[])] : mzj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.ECCurve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Math.EC.ECCurve::CreateDefaultMultiplier()] : mzl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECCurve::CheckPoint(Org.BouncyCastle.Math.EC.ECPoint)] : mzm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECCurve::CheckPoints(Org.BouncyCastle.Math.EC.ECPoint[])] : mzn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECCurve::CheckPoints(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] : mzo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECCurve::DecompressPoint(System.Int32,Org.BouncyCastle.Math.BigInteger)] : mzp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.AbstractFpCurve::DecompressPoint(System.Int32,Org.BouncyCastle.Math.BigInteger)] : mzp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.AbstractFpCurve::ImplCheckQ(Org.BouncyCastle.Math.BigInteger)] : mzq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.AbstractFpCurve::ImplGetIterations(System.Int32,System.Int32)] : mzr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.AbstractFpCurve::ImplIsPrime(Org.BouncyCastle.Math.BigInteger)] : mzs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.AbstractFpCurve::ImplRandomFieldElement(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Math.BigInteger)] : mzt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.AbstractFpCurve::ImplRandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Math.BigInteger)] : mzu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.FpCurve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.Field.IFiniteField Org.BouncyCastle.Math.EC.AbstractF2mCurve::BuildField(System.Int32,System.Int32,System.Int32,System.Int32)] : mzv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.AbstractF2mCurve::DecompressPoint(System.Int32,Org.BouncyCastle.Math.BigInteger)] : mzp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.AbstractF2mCurve::ImplRandomFieldElementMult(Org.BouncyCastle.Security.SecureRandom,System.Int32)] : mzw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.F2mCurve/DefaultF2mLookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : mzx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.F2mCurve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Math.EC.F2mCurve::CreateDefaultMultiplier()] : mzl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpFieldElement::CheckSqrt(Org.BouncyCastle.Math.EC.ECFieldElement)] : mzy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Math.EC.FpFieldElement::LucasSequence(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : mzz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.FpFieldElement::ModAdd(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : naa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.FpFieldElement::ModDouble(Org.BouncyCastle.Math.BigInteger)] : nab +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.FpFieldElement::ModHalf(Org.BouncyCastle.Math.BigInteger)] : nac +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.FpFieldElement::ModHalfAbs(Org.BouncyCastle.Math.BigInteger)] : nad +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.FpFieldElement::ModInverse(Org.BouncyCastle.Math.BigInteger)] : nae +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.FpFieldElement::ModMult(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : naf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.FpFieldElement::ModReduce(Org.BouncyCastle.Math.BigInteger)] : nag +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.FpFieldElement::ModSubtract(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : nah +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement[] Org.BouncyCastle.Math.EC.ECPoint::GetInitialZCoords(Org.BouncyCastle.Math.EC.ECCurve)] : nai +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECPoint::SatisfiesCurveEquation()] : naj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.ECPoint::SatisfiesOrder()] : nak +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.ECPoint::get_CurveCoordinateSystem()] : nam +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.ECPoint::CheckNormalized()] : nan +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.ECPoint::CreateScaledPoint(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] : nao +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.AbstractFpPoint::SatisfiesCurveEquation()] : naj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.FpPoint::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpPoint::Two(Org.BouncyCastle.Math.EC.ECFieldElement)] : nap +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpPoint::Three(Org.BouncyCastle.Math.EC.ECFieldElement)] : naq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpPoint::Four(Org.BouncyCastle.Math.EC.ECFieldElement)] : nar +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpPoint::Eight(Org.BouncyCastle.Math.EC.ECFieldElement)] : nas +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpPoint::DoubleProductFromSquares(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] : nat +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpPoint::CalculateJacobianModifiedW(Org.BouncyCastle.Math.EC.ECFieldElement,Org.BouncyCastle.Math.EC.ECFieldElement)] : nau +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Math.EC.FpPoint::GetJacobianModifiedW()] : nav +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.FpPoint Org.BouncyCastle.Math.EC.FpPoint::TwiceJacobianModified(System.Boolean)] : naw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.AbstractF2mPoint::SatisfiesCurveEquation()] : naj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.AbstractF2mPoint::SatisfiesOrder()] : nak +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.F2mPoint::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.LongArray::DegreeFrom(System.Int32)] : nax +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.LongArray::BitLength(System.UInt64)] : nay +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64[] Org.BouncyCastle.Math.EC.LongArray::ResizedData(System.Int32)] : naz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.EC.LongArray::ShiftUp(System.UInt64[],System.Int32,System.Int32,System.Int32)] : nba +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.EC.LongArray::ShiftUp(System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.Int32,System.Int32)] : nbb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::AddShiftedByBitsSafe(Org.BouncyCastle.Math.EC.LongArray,System.Int32,System.Int32)] : nbc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.EC.LongArray::AddShiftedUp(System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.Int32,System.Int32)] : nbd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Math.EC.LongArray::AddShiftedDown(System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.Int32,System.Int32)] : nbe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::Add(System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.Int32)] : nbf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::Add(System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.Int32)] : nbg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::AddBoth(System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.Int32)] : nbh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::FlipWord(System.UInt64[],System.Int32,System.Int32,System.UInt64)] : nbi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.LongArray::TestBit(System.UInt64[],System.Int32,System.Int32)] : nbj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::FlipBit(System.UInt64[],System.Int32,System.Int32)] : nbk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::MultiplyWord(System.UInt64,System.UInt64[],System.Int32,System.UInt64[],System.Int32)] : nbl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.LongArray Org.BouncyCastle.Math.EC.LongArray::ReduceResult(System.UInt64[],System.Int32,System.Int32,System.Int32,System.Int32[])] : nbm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.LongArray::ReduceInPlace(System.UInt64[],System.Int32,System.Int32,System.Int32,System.Int32[])] : nbn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::ReduceBitWise(System.UInt64[],System.Int32,System.Int32,System.Int32,System.Int32[])] : nbo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::ReduceBit(System.UInt64[],System.Int32,System.Int32,System.Int32,System.Int32[])] : nbp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::ReduceWordWise(System.UInt64[],System.Int32,System.Int32,System.Int32,System.Int32,System.Int32[])] : nbq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::ReduceWord(System.UInt64[],System.Int32,System.Int32,System.UInt64,System.Int32,System.Int32[])] : nbr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::ReduceVectorWise(System.UInt64[],System.Int32,System.Int32,System.Int32,System.Int32,System.Int32[])] : nbs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.LongArray::FlipVector(System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.Int32,System.Int32)] : nbt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint[] Org.BouncyCastle.Math.EC.SimpleLookupTable::Copy(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32,System.Int32)] : nbu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::CalculateS(System.Byte[],System.Byte[],System.Byte[])] : nbv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::CheckContextVar(System.Byte[],System.Byte)] : nbw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::CheckPoint(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&)] : nbx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::CheckPoint(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum)] : nby +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::CheckPointFullVar(System.Byte[])] : nbz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::CheckPointOrderVar(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&)] : nca +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::CheckPointVar(System.Byte[])] : ncb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Copy(System.Byte[],System.Int32,System.Int32)] : ncc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IDigest Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::CreateDigest()] : ncd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::DecodePointVar(System.Byte[],System.Boolean,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&)] : nce +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Dom2(Org.BouncyCastle.Crypto.IDigest,System.Byte,System.Byte[])] : ncf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::EncodePoint(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&,System.Byte[],System.Int32)] : ncg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::EncodeResult(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&,System.Byte[],System.Int32)] : nch +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ExportPoint(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&)] : nci +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::GetWindow4(System.UInt32[],System.Int32)] : ncj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::GroupCombBits(System.UInt32[])] : nck +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ImplSign(Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Byte[],System.Byte[],System.Int32,System.Byte[],System.Byte,System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : ncl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ImplSign(System.Byte[],System.Int32,System.Byte[],System.Byte,System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : ncm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ImplSign(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte,System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : ncn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ImplVerify(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte,System.Byte[],System.Int32,System.Int32)] : nco +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ImplVerify(System.Byte[],System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint,System.Byte[],System.Byte,System.Byte[],System.Int32,System.Int32)] : ncp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Init(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&)] : ncq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Init(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&)] : ncr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Init(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointExtended&)] : ncs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Init(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointPrecomp&)] : nct +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Init(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointPrecompZ&)] : ncu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::Init(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointTemp&)] : ncv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::InvertDoubleZs(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointExtended[])] : ncw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::NormalizeToAffine(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&)] : ncx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::NormalizeToNeutralElementVar(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&)] : ncy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointAdd(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointExtended&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointExtended&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointExtended&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointTemp&)] : ncz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointAdd(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointPrecomp&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointTemp&)] : nda +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointAdd(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointPrecompZ&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointTemp&)] : ndb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointAddVar(System.Boolean,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointPrecomp&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointTemp&)] : ndc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointAddVar(System.Boolean,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointPrecompZ&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointTemp&)] : ndd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointCopy(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointExtended&)] : nde +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointCopy(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointExtended&)] : ndf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointCopy(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointExtended&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointPrecompZ&)] : ndg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointDouble(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&)] : ndh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointLookup(System.Int32,System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointPrecomp&)] : ndi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointLookupZ(System.UInt32[],System.Int32,System.Int32[],Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointPrecompZ&)] : ndj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointPrecompute(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointExtended[],System.Int32,System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointTemp&)] : ndk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointPrecomputeZ(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&,System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointTemp&)] : ndl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointPrecomputeZ(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointPrecompZ[],System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointTemp&)] : ndm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PointSetNeutral(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&)] : ndn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::PruneScalar(System.Byte[],System.Int32,System.Byte[])] : ndo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ScalarMult(System.Byte[],Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&)] : ndp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ScalarMultBase(System.Byte[],Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&)] : ndq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ScalarMultBaseEncoded(System.Byte[],System.Byte[],System.Int32)] : ndr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ScalarMultOrderVar(Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&)] : nds +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed25519::ScalarMultStraus128Var(System.UInt32[],System.UInt32[],Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&,System.UInt32[],Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAffine&,Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PointAccum&)] : ndt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.Rfc8032.Ed448::CalculateS(System.Byte[],System.Byte[],System.Byte[])] : ndu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::CheckContextVar(System.Byte[])] : ndv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed448::CheckPoint(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&)] : ndw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed448::CheckPoint(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective)] : ndx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::CheckPointFullVar(System.Byte[])] : ndy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::CheckPointOrderVar(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&)] : ndz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::CheckPointVar(System.Byte[])] : nea +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.Rfc8032.Ed448::Copy(System.Byte[],System.Int32,System.Int32)] : neb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IXof Org.BouncyCastle.Math.EC.Rfc8032.Ed448::CreateXof()] : nec +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::DecodePointVar(System.Byte[],System.Boolean,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&)] : ned +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::Dom4(Org.BouncyCastle.Crypto.IXof,System.Byte,System.Byte[])] : nee +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::EncodePoint(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&,System.Byte[],System.Int32)] : nef +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Rfc8032.Ed448::EncodeResult(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&,System.Byte[],System.Int32)] : neg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ExportPoint(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&)] : neh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Rfc8032.Ed448::GetWindow4(System.UInt32[],System.Int32)] : nei +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ImplSign(Org.BouncyCastle.Crypto.IXof,System.Byte[],System.Byte[],System.Byte[],System.Int32,System.Byte[],System.Byte,System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nej +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ImplSign(System.Byte[],System.Int32,System.Byte[],System.Byte,System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nek +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ImplSign(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte,System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nel +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ImplVerify(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[],System.Byte,System.Byte[],System.Int32,System.Int32)] : nem +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ImplVerify(System.Byte[],System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint,System.Byte[],System.Byte,System.Byte[],System.Int32,System.Int32)] : nen +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::Init(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&)] : neo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::Init(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&)] : nep +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::Init(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointTemp&)] : neq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::InvertZs(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective[])] : ner +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::NormalizeToAffine(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&)] : nes +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Rfc8032.Ed448::NormalizeToNeutralElementVar(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&)] : net +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PointAdd(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointTemp&)] : neu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PointAdd(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointTemp&)] : nev +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PointAddVar(System.Boolean,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointTemp&)] : new +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PointAddVar(System.Boolean,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointTemp&)] : nex +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PointCopy(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&)] : ney +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PointCopy(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&)] : nez +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PointDouble(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointTemp&)] : nfa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PointLookup(System.Int32,System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&)] : nfb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PointLookup(System.UInt32[],System.Int32,System.UInt32[],Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&)] : nfc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PointLookup15(System.UInt32[],Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&)] : nfd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[] Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PointPrecompute(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&,System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointTemp&)] : nfe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PointPrecompute(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective[],System.Int32,System.Int32,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointTemp&)] : nff +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PointSetNeutral(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&)] : nfg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::PruneScalar(System.Byte[],System.Int32,System.Byte[])] : nfh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ScalarMult(System.Byte[],Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&)] : nfi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ScalarMultBase(System.Byte[],Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&)] : nfj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ScalarMultBaseEncoded(System.Byte[],System.Byte[],System.Int32)] : nfk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ScalarMultOrderVar(Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&)] : nfl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc8032.Ed448::ScalarMultStraus225Var(System.UInt32[],System.UInt32[],Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&,System.UInt32[],Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointAffine&,Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PointProjective&)] : nfm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Rfc7748.X25519::Decode32(System.Byte[],System.Int32)] : nfn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519::DecodeScalar(System.Byte[],System.Int32,System.UInt32[])] : nfo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519::PointDouble(System.Int32[],System.Int32[])] : nfp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Decode128(System.UInt32[],System.Int32,System.Int32[],System.Int32)] : nfq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Decode128(System.Byte[],System.Int32,System.Int32[],System.Int32)] : nfr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Decode32(System.Byte[],System.Int32)] : nfs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Encode128(System.Int32[],System.Int32,System.UInt32[],System.Int32)] : nft +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Encode128(System.Int32[],System.Int32,System.Byte[],System.Int32)] : nfu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Encode32(System.UInt32,System.Byte[],System.Int32)] : nfv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::PowPm5d8(System.Int32[],System.Int32[],System.Int32[])] : nfw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X25519Field::Reduce(System.Int32[],System.Int32)] : nfx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Rfc7748.X448::Decode32(System.Byte[],System.Int32)] : nfy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448::DecodeScalar(System.Byte[],System.Int32,System.UInt32[])] : nfz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448::PointDouble(System.UInt32[],System.UInt32[])] : nga +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Decode224(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] : ngb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Decode24(System.Byte[],System.Int32)] : ngc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Decode32(System.Byte[],System.Int32)] : ngd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Decode56(System.Byte[],System.Int32,System.UInt32[],System.Int32)] : nge +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Encode224(System.UInt32[],System.Int32,System.UInt32[],System.Int32)] : ngf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Encode24(System.UInt32,System.Byte[],System.Int32)] : ngg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Encode32(System.UInt32,System.Byte[],System.Int32)] : ngh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Encode56(System.UInt32[],System.Int32,System.Byte[],System.Int32)] : ngi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::PowPm3d4(System.UInt32[],System.UInt32[])] : ngj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Rfc7748.X448Field::Reduce(System.UInt32[],System.Int32)] : ngk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Multiplier.AbstractECMultiplier::MultiplyPositive(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] : ngl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Multiplier.AbstractECMultiplier::CheckResult(Org.BouncyCastle.Math.EC.ECPoint)] : ngm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Multiplier.FixedPointCombMultiplier::MultiplyPositive(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] : ngl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities/FixedPointCallback::CheckExisting(Org.BouncyCastle.Math.EC.Multiplier.FixedPointPreCompInfo,System.Int32)] : ngn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Multiplier.FixedPointUtilities/FixedPointCallback::CheckTable(Org.BouncyCastle.Math.EC.ECLookupTable,System.Int32)] : ngo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Multiplier.GlvMultiplier::MultiplyPositive(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] : ngl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Multiplier.WNafL2RMultiplier::MultiplyPositive(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] : ngl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/PrecomputeCallback::CheckExisting(Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo,System.Int32,System.Int32,System.Boolean)] : ngp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/PrecomputeCallback::CheckTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32)] : ngq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/PrecomputeWithPointMapCallback::CheckExisting(Org.BouncyCastle.Math.EC.Multiplier.WNafPreCompInfo,System.Int32,System.Int32,System.Boolean)] : ngr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities/PrecomputeWithPointMapCallback::CheckTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32)] : ngs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::Trim(System.Byte[],System.Int32)] : ngt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::Trim(System.Int32[],System.Int32)] : ngu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint[] Org.BouncyCastle.Math.EC.Multiplier.WNafUtilities::ResizeTable(Org.BouncyCastle.Math.EC.ECPoint[],System.Int32)] : ngv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Multiplier.WTauNafMultiplier::MultiplyPositive(Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.BigInteger)] : ngl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractF2mPoint Org.BouncyCastle.Math.EC.Multiplier.WTauNafMultiplier::MultiplyWTnaf(Org.BouncyCastle.Math.EC.AbstractF2mPoint,Org.BouncyCastle.Math.EC.Abc.ZTauElement,System.SByte,System.SByte)] : ngw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.AbstractF2mPoint Org.BouncyCastle.Math.EC.Multiplier.WTauNafMultiplier::MultiplyFromWTnaf(Org.BouncyCastle.Math.EC.AbstractF2mPoint,System.SByte[])] : ngx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Endo.EndoUtilities/MapPointCallback::CheckExisting(Org.BouncyCastle.Math.EC.Endo.EndoPreCompInfo,Org.BouncyCastle.Math.EC.Endo.ECEndomorphism)] : ngy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Math.EC.Endo.EndoUtilities::CalculateB(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32)] : ngz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Endo.ScalarSplitParameters::CheckVector(Org.BouncyCastle.Math.BigInteger[],System.String)] : nha +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve/SecP128R1LookupTable::CreatePoint(System.UInt32[],System.UInt32[])] : nhb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::AddPInvTo(System.UInt32[])] : nhc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Field::SubPInvFrom(System.UInt32[])] : nhd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP128R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve/SecP160K1LookupTable::CreatePoint(System.UInt32[],System.UInt32[])] : nhe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160K1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve/SecP160R1LookupTable::CreatePoint(System.UInt32[],System.UInt32[])] : nhf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve/SecP160R2LookupTable::CreatePoint(System.UInt32[],System.UInt32[])] : nhg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP160R2Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve/SecP192K1LookupTable::CreatePoint(System.UInt32[],System.UInt32[])] : nhh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192K1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve/SecP192R1LookupTable::CreatePoint(System.UInt32[],System.UInt32[])] : nhi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::AddPInvTo(System.UInt32[])] : nhj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Field::SubPInvFrom(System.UInt32[])] : nhk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP192R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve/SecP224K1LookupTable::CreatePoint(System.UInt32[],System.UInt32[])] : nhl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224K1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve/SecP224R1LookupTable::CreatePoint(System.UInt32[],System.UInt32[])] : nhm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::AddPInvTo(System.UInt32[])] : nhn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Field::SubPInvFrom(System.UInt32[])] : nho +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::IsSquare(System.UInt32[])] : nhp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::RM(System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[])] : nhq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::RP(System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[])] : nhr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::RS(System.UInt32[],System.UInt32[],System.UInt32[],System.UInt32[])] : nhs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1FieldElement::TrySqrt(System.UInt32[],System.UInt32[],System.UInt32[])] : nht +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP224R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve/SecP256K1LookupTable::CreatePoint(System.UInt32[],System.UInt32[])] : nhu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256K1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve/SecP256R1LookupTable::CreatePoint(System.UInt32[],System.UInt32[])] : nhv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::AddPInvTo(System.UInt32[])] : nhw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Field::SubPInvFrom(System.UInt32[])] : nhx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP256R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve/SecP384R1LookupTable::CreatePoint(System.UInt32[],System.UInt32[])] : nhy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::AddPInvTo(System.UInt32[])] : nhz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Field::SubPInvFrom(System.UInt32[])] : nia +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP384R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve/SecP521R1LookupTable::CreatePoint(System.UInt32[],System.UInt32[])] : nib +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::ImplMultiply(System.UInt32[],System.UInt32[],System.UInt32[])] : nic +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Field::ImplSquare(System.UInt32[],System.UInt32[])] : nid +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecP521R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::ImplMultiply(System.UInt64[],System.UInt64[],System.UInt64[])] : nie +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::ImplMulw(System.UInt64[],System.UInt64,System.UInt64,System.UInt64[],System.Int32)] : nif +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT113Field::ImplSquare(System.UInt64[],System.UInt64[])] : nig +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve/SecT113R1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : nih +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve/SecT113R2LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : nii +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT113R2Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::ImplCompactExt(System.UInt64[])] : nij +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::ImplMultiply(System.UInt64[],System.UInt64[],System.UInt64[])] : nik +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::ImplMulw(System.UInt64[],System.UInt64,System.UInt64,System.UInt64[],System.Int32)] : nil +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT131Field::ImplSquare(System.UInt64[],System.UInt64[])] : nim +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve/SecT131R1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : nin +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve/SecT131R2LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : nio +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT131R2Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::ImplCompactExt(System.UInt64[])] : nip +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::ImplMultiply(System.UInt64[],System.UInt64[],System.UInt64[])] : niq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::ImplMulw(System.UInt64[],System.UInt64,System.UInt64,System.UInt64[],System.Int32)] : nir +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT163Field::ImplSquare(System.UInt64[],System.UInt64[])] : nis +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve/SecT163K1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : nit +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Curve::CreateDefaultMultiplier()] : mzl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163K1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve/SecT163R1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : niu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve/SecT163R2LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : niv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT163R2Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::ImplCompactExt(System.UInt64[])] : niw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::ImplExpand(System.UInt64[],System.UInt64[])] : nix +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::ImplMultiply(System.UInt64[],System.UInt64[],System.UInt64[])] : niy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::ImplMulwAcc(System.UInt64[],System.UInt64,System.UInt64,System.UInt64[],System.Int32)] : niz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT193Field::ImplSquare(System.UInt64[],System.UInt64[])] : nja +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve/SecT193R1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : njb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve/SecT193R2LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : njc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT193R2Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::ImplCompactExt(System.UInt64[])] : njd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::ImplExpand(System.UInt64[],System.UInt64[])] : nje +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::ImplMultiply(System.UInt64[],System.UInt64[],System.UInt64[])] : njf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::ImplMulwAcc(System.UInt64[],System.UInt64,System.UInt64,System.UInt64[],System.Int32)] : njg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT233Field::ImplSquare(System.UInt64[],System.UInt64[])] : njh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve/SecT233K1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : nji +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Curve::CreateDefaultMultiplier()] : mzl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233K1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve/SecT233R1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : njj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT233R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::ImplCompactExt(System.UInt64[])] : njk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::ImplExpand(System.UInt64[],System.UInt64[])] : njl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::ImplMultiply(System.UInt64[],System.UInt64[],System.UInt64[])] : njm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::ImplMulwAcc(System.UInt64[],System.UInt64,System.UInt64,System.UInt64[],System.Int32)] : njn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT239Field::ImplSquare(System.UInt64[],System.UInt64[])] : njo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve/SecT239K1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : njp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Curve::CreateDefaultMultiplier()] : mzl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT239K1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::ImplCompactExt(System.UInt64[])] : njq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::ImplExpand(System.UInt64[],System.UInt64[])] : njr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::ImplMultiply(System.UInt64[],System.UInt64[],System.UInt64[])] : njs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::ImplMulw(System.UInt64[],System.UInt64,System.UInt64,System.UInt64[],System.Int32)] : njt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT283Field::ImplSquare(System.UInt64[],System.UInt64[])] : nju +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve/SecT283K1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : njv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Curve::CreateDefaultMultiplier()] : mzl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283K1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve/SecT283R1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : njw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT283R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::ImplCompactExt(System.UInt64[])] : njx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::ImplExpand(System.UInt64[],System.UInt64[])] : njy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::ImplMultiply(System.UInt64[],System.UInt64[],System.UInt64[])] : njz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::ImplMulwAcc(System.UInt64[],System.UInt64,System.UInt64,System.UInt64[],System.Int32)] : nka +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT409Field::ImplSquare(System.UInt64[],System.UInt64[])] : nkb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve/SecT409K1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : nkc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Curve::CreateDefaultMultiplier()] : mzl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409K1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve/SecT409R1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : nkd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT409R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::Add(System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.UInt64[],System.Int32)] : nke +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::AddBothTo(System.UInt64[],System.Int32,System.UInt64[],System.Int32,System.UInt64[],System.Int32)] : nkf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::ImplMultiply(System.UInt64[],System.UInt64[],System.UInt64[])] : nkg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::ImplMultiplyPrecomp(System.UInt64[],System.UInt64[],System.UInt64[])] : nkh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::ImplMulwAcc(System.UInt64[],System.UInt64,System.UInt64,System.UInt64[],System.Int32)] : nki +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.Sec.SecT571Field::ImplSquare(System.UInt64[],System.UInt64[])] : nkj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve/SecT571K1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : nkk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Curve::CreateDefaultMultiplier()] : mzl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571K1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve/SecT571R1LookupTable::CreatePoint(System.UInt64[],System.UInt64[])] : nkl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.Sec.SecT571R1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve/SM2P256V1LookupTable::CreatePoint(System.UInt32[],System.UInt32[])] : nkm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Curve::CloneCurve()] : mzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::AddPInvTo(System.UInt32[])] : nkn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Field::SubPInvFrom(System.UInt32[])] : nko +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Math.EC.Custom.GM.SM2P256V1Point::Detach()] : nal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal::CheckScale(Org.BouncyCastle.Math.EC.Abc.SimpleBigDecimal)] : nkp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Math.EC.Abc.Tnaf::GetShiftsForCofactor(Org.BouncyCastle.Math.BigInteger)] : nkq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Operators.CmsContentEncryptorBuilder::GetKeySize(Org.BouncyCastle.Asn1.DerObjectIdentifier)] : nkr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.Utilities.DefaultDigestAlgorithmFinder::AddDigestAlgID(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean)] : nks +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.Utilities.DefaultSignatureAlgorithmFinder::AddAlgorithm(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier)] : nkt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.Utilities.DefaultSignatureAlgorithmFinder::AddAlgorithm(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean)] : nku +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.Utilities.DefaultSignatureAlgorithmFinder::AddDigestOid(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier)] : nkv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Operators.Utilities.DefaultSignatureAlgorithmFinder::AddParameters(System.String,Org.BouncyCastle.Asn1.Asn1Encodable)] : nkw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters Org.BouncyCastle.Operators.Utilities.DefaultSignatureAlgorithmFinder::CreatePssParams(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int32)] : nkx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.AsymmetricKeyParameter::Equals(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] : nky +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CipherKeyGenerator::EngineInit(Org.BouncyCastle.Crypto.KeyGenerationParameters)] : nkz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.CipherKeyGenerator::EngineGenerateKey()] : nla +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Crypto.CipherKeyGenerator::EngineGenerateKeyParameter()] : nlb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.CipherKeyGenerator::EnsureInitialized()] : nlc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Utilities.CipherFactory::GetRC2EffectiveKeyBits(Org.BouncyCastle.Asn1.Pkcs.RC2CbcParameter)] : nld +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.BufferedBlockCipher Org.BouncyCastle.Crypto.Utilities.CipherFactory::CreateCipher(Org.BouncyCastle.Asn1.DerObjectIdentifier)] : nle +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.CipherKeyGenerator Org.BouncyCastle.Crypto.Utilities.CipherKeyGeneratorFactory::CreateCipherKeyGenerator(Org.BouncyCastle.Security.SecureRandom,System.Int32)] : nlf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Utilities.OpenSshPrivateKeyUtilities::AllIntegers(Org.BouncyCastle.Asn1.Asn1Sequence)] : nlg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Crypto.Utilities.OpenSshPublicKeyUtilities::ParsePublicKey(Org.BouncyCastle.Crypto.Utilities.SshBuffer)] : nlh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Utilities.SshNamedCurves::DefineCurveAlias(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier)] : nli +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParametersHolder Org.BouncyCastle.Crypto.Utilities.SshNamedCurves::FindByOidLazy(Org.BouncyCastle.Asn1.DerObjectIdentifier)] : nlj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Tls.TlsRsaKeyExchange::CAddTo(System.Int32,System.Int32,System.Byte[],System.Byte[])] : nlk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Tls.TlsRsaKeyExchange::CheckPkcs1Encoding2(System.Byte[],System.Int32,System.Int32)] : nll +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Tls.TlsRsaKeyExchange::ConvertInput(Org.BouncyCastle.Math.BigInteger,System.Byte[],System.Int32,System.Int32)] : nlm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Tls.TlsRsaKeyExchange::Rsa(Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters,Org.BouncyCastle.Math.BigInteger)] : nln +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Tls.TlsRsaKeyExchange::RsaBlinded(Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom)] : nlo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Tls.TlsRsaKeyExchange::RsaCrt(Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters,Org.BouncyCastle.Math.BigInteger)] : nlp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Tls.TlsRsaKeyExchange::SubFrom(System.Int32,System.Byte[],System.Byte[])] : nlq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.DsaDigestSigner::GetOrder()] : nlr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.DsaSigner::CalculateE(Org.BouncyCastle.Math.BigInteger,System.Byte[])] : nls +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Crypto.Signers.DsaSigner::InitSecureRandom(System.Boolean,Org.BouncyCastle.Security.SecureRandom)] : nlt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.ECDsaSigner::CalculateE(Org.BouncyCastle.Math.BigInteger,System.Byte[])] : nlu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Crypto.Signers.ECDsaSigner::CreateBasePointMultiplier()] : nlv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECFieldElement Org.BouncyCastle.Crypto.Signers.ECDsaSigner::GetDenominator(System.Int32,Org.BouncyCastle.Math.EC.ECPoint)] : nlw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Crypto.Signers.ECDsaSigner::InitSecureRandom(System.Boolean,Org.BouncyCastle.Security.SecureRandom)] : nlx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Crypto.Signers.ECGost3410Signer::CreateBasePointMultiplier()] : nly +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.ShakeDigest Org.BouncyCastle.Crypto.Signers.HashMLDsaSigner::FinishPreHash()] : nlz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine Org.BouncyCastle.Crypto.Signers.HashMLDsaSigner::GetEngine(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,Org.BouncyCastle.Security.SecureRandom)] : nma +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner/Buffer::TruncateAndClear(System.Int32)] : nmb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner::FinishPreHash()] : nmc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine Org.BouncyCastle.Crypto.Signers.HashSlhDsaSigner::GetEngine(Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters)] : nmd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HMacDsaKCalculator::InitAdditionalInput0(Org.BouncyCastle.Crypto.Macs.HMac)] : nme +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.HMacDsaKCalculator::InitAdditionalInput1(Org.BouncyCastle.Crypto.Macs.HMac)] : nmf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.HMacDsaKCalculator::BitsToInt(System.Byte[])] : nmg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::IsSameAs(System.Byte[],System.Byte[])] : nmh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::ClearBlock(System.Byte[])] : nmi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.Iso9796d2PssSigner::MaskGeneratorFunction1(System.Byte[],System.Int32,System.Int32,System.Int32)] : nmj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::IsSameAs(System.Byte[],System.Byte[])] : nmk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::ClearBlock(System.Byte[])] : nml +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.Iso9796d2Signer::ReturnFalse(System.Byte[])] : nmm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Crypto.Signers.IsoTrailers::CreateTrailerMap()] : nmn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.Crystals.Dilithium.DilithiumEngine Org.BouncyCastle.Crypto.Signers.MLDsaSigner::GetEngine(Org.BouncyCastle.Crypto.Parameters.MLDsaParameters,Org.BouncyCastle.Security.SecureRandom)] : nmo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.PlainDsaEncoding::CheckValue(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : nmp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.PlainDsaEncoding::DecodeValue(Org.BouncyCastle.Math.BigInteger,System.Byte[],System.Int32,System.Int32)] : nmq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PlainDsaEncoding::EncodeValue(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Byte[],System.Int32,System.Int32)] : nmr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::ClearBlock(System.Byte[])] : nms +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.PssSigner::ItoOSP(System.Int32,System.Byte[])] : nmt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.PssSigner::MaskGeneratorFunction(System.Byte[],System.Int32,System.Int32,System.Int32)] : nmu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.PssSigner::MaskGeneratorFunction1(System.Byte[],System.Int32,System.Int32,System.Int32)] : nmv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::CheckDerEncoded(System.Byte[])] : nmw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::DerEncode(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Byte[])] : nmx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.RsaDigestSigner::TryGetAltAlgID(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier&)] : nmy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SlhDsaSigner/Buffer::TruncateAndClear(System.Int32)] : nmz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Pqc.Crypto.SphincsPlus.SphincsPlusEngine Org.BouncyCastle.Crypto.Signers.SlhDsaSigner::GetEngine(Org.BouncyCastle.Crypto.Parameters.SlhDsaParameters)] : nna +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Signers.SM2Signer::VerifySignature(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : nnb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::CheckData()] : nnc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Signers.SM2Signer::GetZ(System.Byte[])] : nnd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::AddUserID(Org.BouncyCastle.Crypto.IDigest,System.Byte[])] : nne +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.SM2Signer::AddFieldElement(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.EC.ECFieldElement)] : nnf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.SM2Signer::CalculateE(Org.BouncyCastle.Math.BigInteger,System.Byte[])] : nng +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Crypto.Signers.SM2Signer::CreateBasePointMultiplier()] : nnh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.StandardDsaEncoding::CheckValue(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : nni +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Signers.StandardDsaEncoding::DecodeValue(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Asn1.Asn1Sequence,System.Int32)] : nnj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Crypto.Signers.StandardDsaEncoding::EncodeValue(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : nnk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Signers.X931Signer::CreateSignatureBlock()] : nnl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider/BasicEntropySource::Org.BouncyCastle.Crypto.IEntropySource.get_IsPredictionResistant()] : nnm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider/BasicEntropySource::Org.BouncyCastle.Crypto.IEntropySource.GetEntropy()] : nnn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.BasicEntropySourceProvider/BasicEntropySource::Org.BouncyCastle.Crypto.IEntropySource.get_EntropySize()] : nno +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Prng.CryptoApiEntropySourceProvider/CryptoApiEntropySource::Org.BouncyCastle.Crypto.IEntropySource.get_IsPredictionResistant()] : nnp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Prng.CryptoApiEntropySourceProvider/CryptoApiEntropySource::Org.BouncyCastle.Crypto.IEntropySource.GetEntropy()] : nnq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.CryptoApiEntropySourceProvider/CryptoApiEntropySource::Org.BouncyCastle.Crypto.IEntropySource.get_EntropySize()] : nnr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.DigestRandomGenerator::CycleSeed()] : nns +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.DigestRandomGenerator::GenerateState()] : nnt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.DigestRandomGenerator::DigestAddCounter(System.Int64)] : nnu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.DigestRandomGenerator::DigestUpdate(System.Byte[])] : nnv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.DigestRandomGenerator::DigestDoFinal(System.Byte[])] : nnw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931Rng::Process(System.Byte[],System.Byte[],System.Byte[])] : nnx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.X931Rng::Increment(System.Byte[])] : nny +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::CTR_DRBG_Instantiate_algorithm(System.Byte[],System.Byte[])] : nnz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::CTR_DRBG_Update(System.Byte[],System.Byte[],System.Byte[])] : noa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::CTR_DRBG_Reseed_algorithm(System.Byte[])] : nob +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::AddOneTo(System.Byte[])] : noc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::GetEntropy()] : nod +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::BlockCipherDF(System.Byte[],System.Int32)] : noe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::BCC(System.Byte[],System.Byte[],System.Byte[])] : nof +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::IsTdea(Org.BouncyCastle.Crypto.IBlockCipher)] : nog +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::GetMaxSecurityStrength(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32)] : noh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::ExpandToKeyParameter(System.Byte[])] : noi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.CtrSP800Drbg::PadKey(System.Byte[],System.Int32,System.Byte[],System.Int32)] : noj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Prng.Drbg.HashSP800Drbg::GetEntropy()] : nok +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.HashSP800Drbg::AddTo(System.Byte[],System.Byte[])] : nol +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.HashSP800Drbg::DoHash(System.Byte[],System.Byte[])] : nom +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Prng.Drbg.HashSP800Drbg::Hash(System.Byte[])] : non +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Prng.Drbg.HashSP800Drbg::Hashgen(System.Byte[],System.Int32)] : noo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::hmac_DRBG_Update(System.Byte[])] : nop +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::hmac_DRBG_Update_Func(System.Byte[],System.Byte)] : noq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Prng.Drbg.HMacSP800Drbg::GetEntropy()] : nor +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.DesEdeParameters::FixKey(System.Byte[],System.Int32,System.Int32)] : nos +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DHKeyParameters::Equals(Org.BouncyCastle.Crypto.Parameters.DHKeyParameters)] : not +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DHParameters::GetDefaultMParam(System.Int32)] : nou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DHParameters::Equals(Org.BouncyCastle.Crypto.Parameters.DHParameters)] : nov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters::Equals(Org.BouncyCastle.Crypto.Parameters.DHPrivateKeyParameters)] : now +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters::Validate(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DHParameters)] : nox +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters::Equals(Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters)] : noy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.DHPublicKeyParameters::Legendre(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : noz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DHValidationParameters::Equals(Org.BouncyCastle.Crypto.Parameters.DHValidationParameters)] : npa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DsaKeyParameters::Equals(Org.BouncyCastle.Crypto.Parameters.DsaKeyParameters)] : npb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DsaParameters::Equals(Org.BouncyCastle.Crypto.Parameters.DsaParameters)] : npc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DsaPrivateKeyParameters::Equals(Org.BouncyCastle.Crypto.Parameters.DsaPrivateKeyParameters)] : npd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters::Validate(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.Parameters.DsaParameters)] : npe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters::Equals(Org.BouncyCastle.Crypto.Parameters.DsaPublicKeyParameters)] : npf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters::Equals(Org.BouncyCastle.Crypto.Parameters.DsaValidationParameters)] : npg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ECDomainParameters::Equals(Org.BouncyCastle.Crypto.Parameters.ECDomainParameters)] : nph +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ECKeyParameters::Equals(Org.BouncyCastle.Crypto.Parameters.ECKeyParameters)] : npi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters::Equals(Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters)] : npj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters::Equals(Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters)] : npk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::CreatePublicKey(System.Byte[])] : npl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Ed25519PrivateKeyParameters::Validate(System.Byte[])] : npm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed25519/PublicPoint Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::Parse(System.Byte[],System.Int32)] : npn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Ed25519PublicKeyParameters::Validate(System.Byte[])] : npo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::CreatePublicKey(System.Byte[])] : npp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Ed448PrivateKeyParameters::Validate(System.Byte[])] : npq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Rfc8032.Ed448/PublicPoint Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::Parse(System.Byte[],System.Int32)] : npr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.Ed448PublicKeyParameters::Validate(System.Byte[])] : nps +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ElGamalKeyParameters::Equals(Org.BouncyCastle.Crypto.Parameters.ElGamalKeyParameters)] : npt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ElGamalParameters::Equals(Org.BouncyCastle.Crypto.Parameters.ElGamalParameters)] : npu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ElGamalPrivateKeyParameters::Equals(Org.BouncyCastle.Crypto.Parameters.ElGamalPrivateKeyParameters)] : npv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.ElGamalPublicKeyParameters::Equals(Org.BouncyCastle.Crypto.Parameters.ElGamalPublicKeyParameters)] : npw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters Org.BouncyCastle.Crypto.Parameters.Gost3410KeyGenerationParameters::LookupParameters(Org.BouncyCastle.Asn1.DerObjectIdentifier)] : npx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters Org.BouncyCastle.Crypto.Parameters.Gost3410KeyParameters::LookupParameters(Org.BouncyCastle.Asn1.DerObjectIdentifier)] : npy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters::Equals(Org.BouncyCastle.Crypto.Parameters.Gost3410Parameters)] : npz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters::CheckFormat(Org.BouncyCastle.Crypto.Parameters.MLDsaPrivateKeyParameters/Format,System.Byte[])] : nqa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.MLDsaPublicKeyParameters::CreatePublicKeyHash(Org.BouncyCastle.Crypto.Parameters.MLDsaPublicKeyParameters)] : nqb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters::CheckFormat(Org.BouncyCastle.Crypto.Parameters.MLKemPrivateKeyParameters/Format,System.Byte[])] : nqc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::HasAnySmallFactors(Org.BouncyCastle.Math.BigInteger)] : nqd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::Validate(Org.BouncyCastle.Math.BigInteger)] : nqe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Parameters.RsaKeyParameters::ImplGetInteger(System.String,System.Int32)] : nqf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Parameters.RsaPrivateCrtKeyParameters::ValidateValue(Org.BouncyCastle.Math.BigInteger,System.String,System.String)] : nqg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.X25519PrivateKeyParameters::Validate(System.Byte[])] : nqh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.X25519PublicKeyParameters::Validate(System.Byte[])] : nqi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.X448PrivateKeyParameters::Validate(System.Byte[])] : nqj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Parameters.X448PublicKeyParameters::Validate(System.Byte[])] : nqk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.Operators.RsaPkcs1WrapperProvider::Org.BouncyCastle.Crypto.Operators.WrapperProvider.CreateWrapper(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] : nql +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Crypto.Operators.RsaOaepWrapperProvider::Org.BouncyCastle.Crypto.Operators.WrapperProvider.CreateWrapper(System.Boolean,Org.BouncyCastle.Crypto.ICipherParameters)] : nqm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.X509Utilities::AddAlgorithm(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean)] : nqn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Operators.X509Utilities::AddNoParams(Org.BouncyCastle.Asn1.DerObjectIdentifier)] : nqo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.RsassaPssParameters Org.BouncyCastle.Crypto.Operators.X509Utilities::CreatePssParams(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,System.Int32)] : nqp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::CheckAad()] : nqq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Modes.AsconAead128::CheckData()] : nqr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::FinishAad(Org.BouncyCastle.Crypto.Modes.AsconAead128/State)] : nqs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::FinishData(Org.BouncyCastle.Crypto.Modes.AsconAead128/State)] : nqt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::InitState()] : nqu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::P8()] : nqv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::P12()] : nqw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::ProcessBufferAad(System.Byte[],System.Int32)] : nqx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::ProcessBufferDecrypt(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nqy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::ProcessBufferEncrypt(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nqz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::ProcessFinalDecrypt(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nra +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::ProcessFinalDecrypt64(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.UInt64&)] : nrb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::ProcessFinalEncrypt(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nrc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::ProcessFinalEncrypt64(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.UInt64&)] : nrd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::Reset(System.Boolean)] : nre +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.AsconAead128::Round(System.UInt64)] : nrf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Modes.AsconAead128::Pad(System.Int32)] : nrg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CbcBlockCipher::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nrh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CbcBlockCipher::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nri +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::CalculateMac(System.Byte[],System.Int32,System.Int32,System.Byte[])] : nrj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::GetMacSize(System.Boolean,System.Int32)] : nrk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::GetAssociatedTextLength()] : nrl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Modes.CcmBlockCipher::HasAssociatedText()] : nrm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CfbBlockCipher::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nrn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.CfbBlockCipher::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nro +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::CheckAad()] : nrp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::CheckData()] : nrq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::FinishAad(Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State)] : nrr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::FinishData(Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305/State)] : nrs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::IncrementCount(System.UInt64,System.UInt32,System.UInt64)] : nrt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::InitMac()] : nru +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::PadMac(System.UInt64)] : nrv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nrw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::ProcessBlocks2(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nrx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::ProcessData(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nry +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.ChaCha20Poly1305::Reset(System.Boolean,System.Boolean)] : nrz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::InitCipher()] : nsa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::CalculateMac()] : nsb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::Reset(System.Boolean)] : nsc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::Process(System.Byte,System.Byte[],System.Int32)] : nsd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Modes.EaxBlockCipher::VerifyMac(System.Byte[],System.Int32)] : nse +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::InitCipher()] : nsf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::Reset(System.Boolean)] : nsg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nsh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::DecryptBlocks2(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nsi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nsj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::EncryptBlocks2(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nsk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::GetNextCtrBlock(System.Byte[])] : nsl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::ProcessPartial(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nsm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::gHASH(System.Byte[],System.Byte[],System.Int32)] : nsn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::gHASHBlock(System.Byte[],System.Byte[])] : nso +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::gHASHBlock(System.Byte[],System.Byte[],System.Int32)] : nsp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::gHASHPartial(System.Byte[],System.Byte[],System.Int32,System.Int32)] : nsq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmBlockCipher::CheckStatus()] : nsr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::CheckAeadStatus(System.Int32)] : nss +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::CheckStatus(System.Int32)] : nst +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::ResetStreams()] : nsu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::bufLength(System.Byte[])] : nsv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::EncryptPlain(System.Byte[],System.Byte[],System.Int32)] : nsw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::DecryptPlain()] : nsx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::CalculateTag()] : nsy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::completePolyVal()] : nsz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::gHashLengths()] : nta +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::gHASH(System.Byte[])] : ntb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::fillReverse(System.Byte[],System.Int32,System.Int32,System.Byte[])] : ntc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::xorBlock(System.Byte[],System.Byte[])] : ntd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::xorBlock(System.Byte[],System.Byte[],System.Int32,System.Int32)] : nte +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::incrementCounter(System.Byte[])] : ntf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::mulX(System.Byte[])] : ntg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.GcmSivBlockCipher::DeriveKeys(Org.BouncyCastle.Crypto.Parameters.KeyParameter)] : nth +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::SetNb(System.Int32)] : nti +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessAAD(System.Byte[],System.Int32,System.Int32,System.Int32)] : ntj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::CalculateMac(System.Byte[],System.Int32,System.Int32)] : ntk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::ProcessBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ntl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::intToBytes(System.Int32,System.Byte[],System.Int32)] : ntm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Modes.KCcmBlockCipher::getFlag(System.Boolean,System.Int32)] : ntn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::CalculateByte(System.Byte)] : nto +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::incrementCounterAt(System.Int32)] : ntp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.KCtrBlockCipher::checkCounter()] : ntq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::ProcessNonce(System.Byte[])] : ntr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::Clear(System.Byte[])] : nts +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::GetLSub(System.Int32)] : ntt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::ProcessHashBlock()] : ntu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::ProcessMainBlock(System.Byte[],System.Int32)] : ntv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::Reset(System.Boolean)] : ntw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::UpdateHASH(System.Byte[])] : ntx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::OCB_double(System.Byte[])] : nty +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::OCB_extend(System.Byte[],System.Int32)] : ntz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::OCB_ntz(System.Int64)] : nua +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::ShiftLeft(System.Byte[],System.Byte[])] : nub +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.OcbBlockCipher::Xor(System.Byte[],System.Byte[])] : nuc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Modes.OpenPgpCfbBlockCipher::EncryptByte(System.Byte,System.Int32)] : nud +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OpenPgpCfbBlockCipher::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nue +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Modes.OpenPgpCfbBlockCipher::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : nuf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Modes.Gcm.GcmUtilities::ImplMul64(System.UInt64,System.UInt64)] : nug +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Modes.Gcm.Tables1kGcmExponentiator::EnsureAvailable(System.Int32)] : nuh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.CMac::ShiftLeft(System.Byte[],System.Byte[])] : nui +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Macs.CMac::DoubleLu(System.Byte[])] : nuj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7564Mac::Pad()] : nuk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Macs.Dstu7564Mac::PadKey(System.Byte[])] : nul +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7624Mac::ProcessBlock(System.Byte[],System.Int32)] : nun +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Dstu7624Mac::Xor(System.Byte[],System.Int32,System.Byte[],System.Int32,System.Byte[])] : nuo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Crypto.Macs.Gost28147Mac::GenerateWorkingKey(System.Byte[])] : nup +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Macs.Gost28147Mac::Gost28147_mainStep(System.Int32,System.Int32)] : nuq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Gost28147Mac::Gost28147MacFunc(System.Int32[],System.Byte[],System.Int32,System.Byte[],System.Int32)] : nur +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Gost28147Mac::Cm5Func(System.Byte[],System.Int32,System.Byte[],System.Byte[])] : nus +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.HMac::XorPad(System.Byte[],System.Int32,System.Byte)] : nut +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.KMac::bytePad(System.Byte[],System.Int32)] : nuu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Macs.KMac::encode(System.Byte[])] : nuv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Poly1305::SetKey(Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Byte[])] : nuw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.Poly1305::ProcessBlock(System.Byte[],System.Int32)] : nux +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SipHash::ProcessMessageWord()] : nuy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.SipHash::ApplySipRounds(System.Int32)] : nuz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.Macs.SipHash::RotateLeft(System.Int64,System.Int32)] : nva +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Macs.VmpcMac::InitKey(System.Byte[],System.Byte[])] : nvb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine Org.BouncyCastle.Crypto.Kems.MLKemDecapsulator::GetEngine(Org.BouncyCastle.Crypto.Parameters.MLKemParameters)] : nvc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine Org.BouncyCastle.Crypto.Kems.MLKemEncapsulator::GetEngine(Org.BouncyCastle.Crypto.Parameters.MLKemParameters,Org.BouncyCastle.Security.SecureRandom)] : nvd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::get_GenerateMatrixNBlocks()] : nve +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::GenerateMatrix(Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec[],System.Byte[],System.Boolean)] : nvf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::RejectionSampling(System.Int16[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nvg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::PackSecretKey(System.Byte[]&,Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec)] : nvh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::PackPublicKey(System.Byte[]&,Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec,System.Byte[])] : nvi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::UnpackSecretKey(Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec,System.Byte[])] : nvj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::UnpackPublicKey(Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec,System.Byte[],System.Byte[])] : nvk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::PackCipherText(System.Byte[],System.Int32,Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec,Org.BouncyCastle.Crypto.Kems.MLKem.Poly)] : nvl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.IndCpa::UnpackCipherText(Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec,Org.BouncyCastle.Crypto.Kems.MLKem.Poly,System.Byte[],System.Int32)] : nvm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_Symmetric(Org.BouncyCastle.Crypto.Kems.MLKem.Symmetric)] : nvn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_K(System.Int32)] : nvo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_PolyVecBytes(System.Int32)] : nvp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_PolyCompressedBytes(System.Int32)] : nvq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_PolyVecCompressedBytes(System.Int32)] : nvr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_Eta1(System.Int32)] : nvs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_IndCpaPublicKeyBytes(System.Int32)] : nvt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_IndCpaSecretKeyBytes(System.Int32)] : nvu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_IndCpaBytes(System.Int32)] : nvv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_PublicKeyBytes(System.Int32)] : nvw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_SecretKeyBytes(System.Int32)] : nvx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_CipherTextBytes(System.Int32)] : nvy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_CryptoBytes(System.Int32)] : nvz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_CryptoSecretKeyBytes(System.Int32)] : nwa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_CryptoPublicKeyBytes(System.Int32)] : nwb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::set_CryptoCipherTextBytes(System.Int32)] : nwc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.MLKemEngine::CMov(System.Byte[],System.Byte[],System.Int32,System.Boolean)] : nwd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int16 Org.BouncyCastle.Crypto.Kems.MLKem.Ntt::FactorQMulMont(System.Int16,System.Int16)] : nwe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Kems.MLKem.PolyVec::ConditionalSubQ()] : nwf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.IO.CipherStream::FillInBuf()] : nwg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.IO.CipherStream::ReadAndProcessBlock()] : nwh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Crypto.IO.CipherStream::get_ReadSource()] : nwi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Crypto.IO.DigestStream::get_ReadSource()] : nwj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Crypto.IO.MacStream::get_ReadSource()] : nwk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Crypto.IO.SignerStream::get_ReadSource()] : nwl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::Reset()] : nwm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::FillMemoryBlocks()] : nwn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::FillSegment(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Position)] : nwo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::IsDataIndependentAddressing(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Position)] : nwp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::InitAddressBlocks(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/FillBlock,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Position,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block)] : nwq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::IsWithXor(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Position)] : nwr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::GetPrevOffset(System.Int32)] : nws +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::GetStartingIndex(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Position)] : nwt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::NextAddresses(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/FillBlock,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block)] : nwu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::GetPseudoRandom(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/FillBlock,System.Int32,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block,Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Block,System.Int32,System.Boolean)] : nwv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::GetRefLane(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Position,System.UInt64)] : nww +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::GetRefColumn(Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator/Position,System.Int32,System.UInt64,System.Boolean)] : nwx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::Digest(System.Byte[],System.Byte[],System.Int32,System.Int32)] : nwy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::Hash(System.Byte[],System.Byte[],System.Int32,System.Int32)] : nwz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::GB(System.UInt64&,System.UInt64&,System.UInt64&,System.UInt64&)] : nxa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::Mul32(System.UInt32,System.UInt32)] : nxb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::Initialize(System.Byte[],System.Byte[],System.Int32)] : nxc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::AddByteString(System.Byte[],Org.BouncyCastle.Crypto.IDigest,System.Byte[])] : nxd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Argon2BytesGenerator::FillFirstBlocks(System.Byte[],System.Byte[])] : nxe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Generators.BCrypt::F(System.UInt32)] : nxf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.BCrypt::ProcessTable(System.UInt32,System.UInt32,System.UInt32[])] : nxg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.BCrypt::InitState()] : nxh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.BCrypt::CyclicXorKey(System.Byte[])] : nxi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.BCrypt::EncryptMagicString()] : nxj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.BCrypt::ProcessTableWithSalt(System.UInt32[],System.UInt32[],System.UInt32,System.UInt32)] : nxk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.BCrypt::DeriveRawKey(System.Int32,System.Byte[],System.Byte[])] : nxl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DesEdeKeyGenerator::EngineInit(Org.BouncyCastle.Crypto.KeyGenerationParameters)] : nkz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.DesEdeKeyGenerator::EngineGenerateKey()] : nla +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DesKeyGenerator::EngineInit(Org.BouncyCastle.Crypto.KeyGenerationParameters)] : nkz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.DesKeyGenerator::EngineGenerateKey()] : nla +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Generators.DsaKeyPairGenerator::GeneratePrivateKey(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom)] : nxm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Generators.DsaKeyPairGenerator::CalculatePublicKey(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : nxn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaParameters Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::GenerateParameters_FIPS186_2()] : nxo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::CalculateGenerator_FIPS186_2(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom)] : nxp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DsaParameters Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::GenerateParameters_FIPS186_3()] : nxq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::CalculateGenerator_FIPS186_3_Unverifiable(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom)] : nxr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::CalculateGenerator_FIPS186_3_Verifiable(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Byte[],System.Int32)] : nxs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::IsValidDsaStrength(System.Int32)] : nxt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::Hash(Org.BouncyCastle.Crypto.IDigest,System.Byte[],System.Byte[])] : nxu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::GetDefaultN(System.Int32)] : nxv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.DsaParametersGenerator::Inc(System.Byte[])] : nxw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Crypto.Generators.ECKeyPairGenerator::CreateBasePointMultiplier()] : nxx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Generators.ECKeyPairGenerator::GeneratePrivateScalar(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Security.SecureRandom)] : nxy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters Org.BouncyCastle.Crypto.Generators.ECKeyPairGenerator::GetCorrespondingPublicKey(Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier)] : nxz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Generators.Gost3410ParametersGenerator::procedure_A(System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger[],System.Int32)] : nya +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.Generators.Gost3410ParametersGenerator::procedure_Aa(System.Int64,System.Int64,Org.BouncyCastle.Math.BigInteger[],System.Int32)] : nyb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Gost3410ParametersGenerator::procedure_B(System.Int32,System.Int32,Org.BouncyCastle.Math.BigInteger[])] : nyc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Gost3410ParametersGenerator::procedure_Bb(System.Int64,System.Int64,Org.BouncyCastle.Math.BigInteger[])] : nyd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Generators.Gost3410ParametersGenerator::procedure_C(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : nye +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Crypto.Generators.HkdfBytesGenerator::Extract(System.Byte[],System.Byte[])] : nyf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.HkdfBytesGenerator::ExpandNext()] : nyg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.KdfCounterBytesGenerator::GenerateNext()] : nyh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.KdfDoublePipelineIterationBytesGenerator::GenerateNext()] : nyi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.KdfFeedbackBytesGenerator::GenerateNext()] : nyj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricCipherKeyPair Org.BouncyCastle.Crypto.Generators.MLKemKeyPairGenerator::CreateKeyPair(Org.BouncyCastle.Crypto.Parameters.MLKemParameters,System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[],System.Byte[])] : nyk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Generators.NaccacheSternKeyPairGenerator::GeneratePrime(System.Int32,System.Int32,Org.BouncyCastle.Security.SecureRandom)] : nyl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Crypto.Generators.NaccacheSternKeyPairGenerator::PermuteList(System.Collections.Generic.IList`1,Org.BouncyCastle.Security.SecureRandom)] : nym +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IList`1 Org.BouncyCastle.Crypto.Generators.NaccacheSternKeyPairGenerator::FindFirstPrimes(System.Int32)] : nyn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Crypto.Generators.OpenBsdBCrypt::CreateBcryptString(System.String,System.Byte[],System.Byte[],System.Int32)] : nyo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.OpenBsdBCrypt::EncodeData(System.Text.StringBuilder,System.Byte[])] : nyp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.OpenBsdBCrypt::DecodeSaltString(System.String)] : nyq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.OpenSslPbeParametersGenerator::GenerateDerivedKey(System.Int32)] : nyr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::Adjust(System.Byte[],System.Int32,System.Byte[])] : nys +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::GenerateDerivedKey(System.Byte,System.Int32)] : nyt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::GenerateDerivedKey(System.Byte,System.Byte[])] : nyu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Pkcs12ParametersGenerator::RepeatFill(System.Byte[],System.Byte[])] : nyv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.Pkcs5S1ParametersGenerator::GenerateDerivedKey()] : nyw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator::F(System.Byte[],System.Int32,System.Byte[],System.Byte[],System.Int32)] : nyx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.Pkcs5S2ParametersGenerator::GenerateDerivedKey(System.Int32)] : nyy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Poly1305KeyGenerator::EngineInit(Org.BouncyCastle.Crypto.KeyGenerationParameters)] : nkz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.Poly1305KeyGenerator::EngineGenerateKey()] : nla +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.Poly1305KeyGenerator::CheckMask(System.Byte,System.Byte)] : nyz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Generators.RsaKeyPairGenerator::ChooseRandomPrime(System.Int32,Org.BouncyCastle.Math.BigInteger)] : nza +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.SCrypt::MFcrypt(System.Byte[],System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32)] : nzb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.SCrypt::SingleIterationPBKDF2(System.Byte[],System.Byte[],System.Int32)] : nzc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.SCrypt::SMix(System.UInt32[],System.Int32,System.Int32,System.Int32,System.Int32)] : nzd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.SCrypt::BlockMix(System.UInt32[],System.UInt32[],System.UInt32[],System.Int32)] : nze +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.SCrypt::Clear(System.Array)] : nzf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Generators.SCrypt::ClearAll(System.Array[])] : nzg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Generators.SCrypt::IsPowerOf2(System.Int32)] : nzh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Generators.SlhDsaKeyPairGenerator::SecRand(System.Int32)] : nzi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Fpe.FpeEngine::IsOverrideSet(System.String)] : nzj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Fpe.FpeEngine::EncryptBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Fpe.FpeEngine::DecryptBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nzl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Fpe.FpeFf1Engine::EncryptBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Fpe.FpeFf1Engine::DecryptBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nzl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Fpe.FpeFf3_1Engine::EncryptBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nzk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Fpe.FpeFf3_1Engine::DecryptBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : nzl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Fpe.SP80038G::DecFF1(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Int32,System.Int32,System.Int32,System.UInt16[],System.UInt16[])] : nzm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Fpe.SP80038G::EncFF1(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Int32,System.Int32,System.Int32,System.UInt16[],System.UInt16[])] : nzn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Fpe.SP80038G::CalculateB_FF1(System.Int32,System.Int32)] : nzo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger[] Org.BouncyCastle.Crypto.Fpe.SP80038G::CalculateModUV(Org.BouncyCastle.Math.BigInteger,System.Int32,System.Int32)] : nzp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Fpe.SP80038G::CalculateP_FF1(System.Int32,System.Byte,System.Int32,System.Int32)] : nzq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Fpe.SP80038G::CalculateTweak64_FF3_1(System.Byte[])] : nzr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Fpe.SP80038G::CalculateY_FF1(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Math.BigInteger,System.Byte[],System.Int32,System.Int32,System.Int32,System.Byte[],System.UInt16[])] : nzs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Fpe.SP80038G::CalculateY_FF3(Org.BouncyCastle.Crypto.IBlockCipher,Org.BouncyCastle.Math.BigInteger,System.Byte[],System.Int32,System.UInt32,System.UInt16[])] : nzt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.SP80038G::CheckArgs(Org.BouncyCastle.Crypto.IBlockCipher,System.Boolean,System.Int32,System.UInt16[],System.Int32,System.Int32)] : nzu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.SP80038G::CheckArgs(Org.BouncyCastle.Crypto.IBlockCipher,System.Boolean,System.Int32,System.Byte[],System.Int32,System.Int32)] : nzv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.SP80038G::CheckCipher(Org.BouncyCastle.Crypto.IBlockCipher)] : nzw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.SP80038G::CheckData(System.Boolean,System.Int32,System.UInt16[],System.Int32,System.Int32)] : nzx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.SP80038G::CheckData(System.Boolean,System.Int32,System.Byte[],System.Int32,System.Int32)] : nzy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.SP80038G::CheckLength(System.Boolean,System.Int32,System.Int32)] : nzz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Fpe.SP80038G::ImplDecryptFF3(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32)] : oaa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Fpe.SP80038G::ImplDecryptFF3w(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.UInt16[],System.Int32,System.Int32)] : oab +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Fpe.SP80038G::DecFF3_1(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Int32,System.Int32,System.Int32,System.UInt16[],System.UInt16[])] : oac +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Fpe.SP80038G::ImplEncryptFF3(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Byte[],System.Int32,System.Int32)] : oad +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Fpe.SP80038G::ImplEncryptFF3w(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.UInt16[],System.Int32,System.Int32)] : oae +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Fpe.SP80038G::EncFF3_1(Org.BouncyCastle.Crypto.IBlockCipher,System.Int32,System.Byte[],System.Int32,System.Int32,System.Int32,System.UInt16[],System.UInt16[])] : oaf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Fpe.SP80038G::Num(Org.BouncyCastle.Math.BigInteger,System.UInt16[])] : oag +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Fpe.SP80038G::Prf(Org.BouncyCastle.Crypto.IBlockCipher,System.Byte[])] : oah +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Fpe.SP80038G::Str(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.Int32,System.UInt16[],System.Int32)] : oai +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Fpe.SP80038G::ToByte(System.UInt16[])] : oaj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt16[] Org.BouncyCastle.Crypto.Fpe.SP80038G::ToShort(System.Byte[],System.Int32,System.Int32)] : oak +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.AesEngine::Shift(System.UInt32,System.Int32)] : oal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.AesEngine::FFmulX(System.UInt32)] : oam +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.AesEngine::FFmulX2(System.UInt32)] : oan +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.AesEngine::Inv_Mcol(System.UInt32)] : oao +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.AesEngine::SubWord(System.UInt32)] : oap +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[][] Org.BouncyCastle.Crypto.Engines.AesEngine::GenerateWorkingKey(Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Boolean)] : oaq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesEngine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32,System.UInt32[][])] : oar +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesEngine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32,System.UInt32[][])] : oas +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.AesLightEngine::Shift(System.UInt32,System.Int32)] : oat +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.AesLightEngine::FFmulX(System.UInt32)] : oau +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.AesLightEngine::FFmulX2(System.UInt32)] : oav +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.AesLightEngine::Mcol(System.UInt32)] : oaw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.AesLightEngine::Inv_Mcol(System.UInt32)] : oax +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.AesLightEngine::SubWord(System.UInt32)] : oay +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32[][] Org.BouncyCastle.Crypto.Engines.AesLightEngine::GenerateWorkingKey(Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Boolean)] : oaz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesLightEngine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32,System.UInt32[][])] : oba +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AesLightEngine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32,System.UInt32[][])] : obb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaEngine::A(System.Byte[])] : obc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaEngine::FE(System.Byte[],System.Byte[])] : obd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaEngine::FO(System.Byte[],System.Byte[])] : obe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Crypto.Engines.AriaEngine::KeySchedule(System.Boolean,System.Byte[])] : obf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.AriaEngine::KeyScheduleRound(System.Byte[],System.Byte[],System.Int32)] : obg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaEngine::ReverseKeys(System.Byte[][])] : obh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.AriaEngine::SB1(System.Byte)] : obi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.AriaEngine::SB2(System.Byte)] : obk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.AriaEngine::SB3(System.Byte)] : obl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.AriaEngine::SB4(System.Byte)] : obm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaEngine::SL1(System.Byte[])] : obn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaEngine::SL2(System.Byte[])] : obo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AriaEngine::Xor(System.Byte[],System.Byte[])] : obp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::CheckAad()] : obq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Engines.AsconEngine::CheckData()] : obr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::FinishAad(Org.BouncyCastle.Crypto.Engines.AsconEngine/State)] : obs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::FinishData(Org.BouncyCastle.Crypto.Engines.AsconEngine/State)] : obt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::P(System.Int32)] : obu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::ROUND(System.UInt64)] : obv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::ascon_aeadinit()] : obw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::ProcessBufferAad(System.Byte[],System.Int32)] : obx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::ProcessBufferDecrypt(System.Byte[],System.Int32,System.Byte[],System.Int32)] : oby +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::ProcessBufferEncrypt(System.Byte[],System.Int32,System.Byte[],System.Int32)] : obz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::ProcessFinalDecrypt(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : oca +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::ProcessFinalEncrypt(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : ocb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.AsconEngine::Reset(System.Boolean)] : occ +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Engines.AsconEngine::PAD(System.Int32)] : ocd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.BlowfishEngine::F(System.UInt32)] : oce +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.BlowfishEngine::ProcessTable(System.UInt32,System.UInt32,System.UInt32[])] : ocf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.BlowfishEngine::SetKey(System.Byte[])] : ocg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.BlowfishEngine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : och +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.BlowfishEngine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : oci +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.CamelliaEngine::rightRotate(System.UInt32,System.Int32)] : ocj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.CamelliaEngine::leftRotate(System.UInt32,System.Int32)] : ock +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaEngine::roldq(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] : ocl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaEngine::decroldq(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] : ocm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaEngine::roldqo32(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] : ocn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaEngine::decroldqo32(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] : oco +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaEngine::camelliaF2(System.UInt32[],System.UInt32[],System.Int32)] : ocp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaEngine::camelliaFLs(System.UInt32[],System.UInt32[],System.Int32)] : ocq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaEngine::setKey(System.Boolean,System.Byte[])] : ocr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.CamelliaEngine::ProcessBlock128(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ocs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.CamelliaEngine::ProcessBlock192or256(System.Byte[],System.Int32,System.Byte[],System.Int32)] : oct +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::rightRotate(System.UInt32,System.Int32)] : ocu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::leftRotate(System.UInt32,System.Int32)] : ocv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::roldq(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] : ocw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::decroldq(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] : ocx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::roldqo32(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] : ocy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::decroldqo32(System.Int32,System.UInt32[],System.Int32,System.UInt32[],System.Int32)] : ocz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::lRot8(System.Byte,System.Int32)] : oda +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::sbox2(System.Int32)] : odb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::sbox3(System.Int32)] : odc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::sbox4(System.Int32)] : odd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::camelliaF2(System.UInt32[],System.UInt32[],System.Int32)] : ode +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::camelliaFLs(System.UInt32[],System.UInt32[],System.Int32)] : odf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::setKey(System.Boolean,System.Byte[])] : odg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::ProcessBlock128(System.Byte[],System.Int32,System.Byte[],System.Int32)] : odh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.CamelliaLightEngine::ProcessBlock192or256(System.Byte[],System.Int32,System.Byte[],System.Int32)] : odi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Cast6Engine::CAST_Encipher(System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32[])] : odj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Cast6Engine::CAST_Decipher(System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32[])] : odk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.ChaCha7539Engine::get_NonceSize()] : odl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaCha7539Engine::AdvanceCounter()] : odm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaCha7539Engine::ResetCounter()] : odn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaCha7539Engine::SetKey(System.Byte[],System.Byte[])] : odo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaCha7539Engine::GenerateKeyStream(System.Byte[])] : odp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaChaEngine::AdvanceCounter()] : odm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaChaEngine::ResetCounter()] : odn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaChaEngine::SetKey(System.Byte[],System.Byte[])] : odo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ChaChaEngine::GenerateKeyStream(System.Byte[])] : odp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.DesEdeWrapEngine::CalculateCmsKeyChecksum(System.Byte[])] : odq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Engines.DesEdeWrapEngine::CheckCmsKeyChecksum(System.Byte[],System.Byte[])] : odr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Crypto.Engines.DesEngine::GenerateWorkingKey(System.Boolean,System.Byte[])] : ods +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::WorkingKeyExpandKT(System.UInt64[],System.UInt64[])] : odt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::WorkingKeyExpandEven(System.UInt64[],System.UInt64[])] : odu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::WorkingKeyExpandOdd()] : odv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::EncryptionRound()] : odw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::DecryptionRound()] : odx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::DecryptBlock_128(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ody +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::EncryptBlock_128(System.Byte[],System.Int32,System.Byte[],System.Int32)] : odz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::SubBytes()] : oea +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::InvSubBytes()] : oeb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::ShiftRows()] : oec +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::InvShiftRows()] : oed +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::AddRoundKey(System.Int32)] : oee +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::SubRoundKey(System.Int32)] : oef +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::XorRoundKey(System.Int32)] : oeg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::MixColumn(System.UInt64)] : oeh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::MixColumns()] : oei +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::MixColumnInv(System.UInt64)] : oej +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::MixColumnsInv()] : oek +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::MulX(System.UInt64)] : oel +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::MulX2(System.UInt64)] : oem +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::Rotate(System.Int32,System.UInt64)] : oen +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Dstu7624Engine::RotateLeft(System.UInt64[],System.UInt64[])] : oeo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Gost28147Engine::AddSBox(System.String,System.Byte[])] : oep +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Crypto.Engines.Gost28147Engine::GenerateWorkingKey(System.Boolean,System.Byte[])] : oeq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Gost28147Engine::Gost28147_mainStep(System.Int32,System.Int32)] : oer +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Gost28147Engine::Gost28147Func(System.Int32[],System.Byte[],System.Int32,System.Byte[],System.Int32)] : oes +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::CheckAad()] : oet +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::CheckData()] : oeu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::FinishAad(Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State)] : oev +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::FinishData(Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine/State)] : oew +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::GetOutput()] : oex +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::GetOutputLFSR()] : oey +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::GetOutputNFSR()] : oez +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::InitGrain()] : ofa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::ProcessBufferDecrypt(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : ofb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::ProcessBufferEncrypt(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : ofc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::Reset(System.Boolean)] : ofd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::ShiftAuth(System.UInt32)] : ofe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Grain128AeadEngine::ShiftBit(System.UInt32[],System.UInt32)] : ofg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.HC128Engine::F1(System.UInt32)] : ofh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.HC128Engine::F2(System.UInt32)] : ofi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.HC128Engine::G1(System.UInt32,System.UInt32,System.UInt32)] : ofj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.HC128Engine::G2(System.UInt32,System.UInt32,System.UInt32)] : ofk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.HC128Engine::H1(System.UInt32)] : ofl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.HC128Engine::H2(System.UInt32)] : ofm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.HC128Engine::Mod1024(System.UInt32)] : ofn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.HC128Engine::Mod512(System.UInt32)] : ofo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.HC128Engine::Dim(System.UInt32,System.UInt32)] : ofp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.HC128Engine::Step()] : ofq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.HC128Engine::Init()] : ofr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.HC128Engine::GetByte()] : ofs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.HC256Engine::Step()] : oft +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.HC256Engine::Init()] : ofu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.HC256Engine::GetByte()] : ofv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.IdeaEngine::BytesToWord(System.Byte[],System.Int32)] : ofw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IdeaEngine::WordToBytes(System.Int32,System.Byte[],System.Int32)] : ofx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.IdeaEngine::Mul(System.Int32,System.Int32)] : ofy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IdeaEngine::IdeaFunc(System.Int32[],System.Byte[],System.Int32,System.Byte[],System.Int32)] : ofz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Crypto.Engines.IdeaEngine::ExpandKey(System.Byte[])] : oga +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.IdeaEngine::MulInv(System.Int32)] : ogb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.IdeaEngine::AddInv(System.Int32)] : ogc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Crypto.Engines.IdeaEngine::InvertKey(System.Int32[])] : ogd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Crypto.Engines.IdeaEngine::GenerateWorkingKey(System.Boolean,System.Byte[])] : oge +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.IesEngine::DecryptBlock(System.Byte[],System.Int32,System.Int32,System.Byte[])] : ogf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.IesEngine::EncryptBlock(System.Byte[],System.Int32,System.Int32,System.Byte[])] : ogg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.IesEngine::GenerateKdfBytes(Org.BouncyCastle.Crypto.Parameters.KdfParameters,System.Int32)] : ogh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IsaacEngine::setKey(System.Byte[])] : ogi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IsaacEngine::isaac()] : ogj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.IsaacEngine::mix(System.UInt32[])] : ogk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Engines.NaccacheSternEngine::ChineseRemainder(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] : ogl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.NoekeonEngine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ogm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.NoekeonEngine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ogn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Crypto.Engines.RC2Engine::GenerateWorkingKey(System.Byte[],System.Int32)] : ogo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC2Engine::RotateWordLeft(System.Int32,System.Int32)] : ogp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC2Engine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ogq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC2Engine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ogr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC2WrapEngine::CalculateCmsKeyChecksum(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : ogs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Engines.RC2WrapEngine::CheckCmsKeyChecksum(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)] : ogt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC4Engine::SetKey(System.Byte[])] : ogu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC532Engine::SetKey(System.Byte[])] : ogv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC532Engine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ogw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC532Engine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ogx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC564Engine::SetKey(System.Byte[])] : ogy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC564Engine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ogz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC564Engine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : oha +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RC6Engine::SetKey(System.Byte[])] : ohb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC6Engine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ohc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.RC6Engine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ohd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.Rfc5649WrapEngine::Rfc3394UnwrapNoIvCheck(System.Byte[],System.Int32,System.Int32,System.Byte[])] : ohe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.Rfc5649WrapEngine::PadPlaintext(System.Byte[])] : ohf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.RijndaelEngine::Mul0x2(System.Int32)] : ohg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.RijndaelEngine::Mul0x3(System.Int32)] : ohh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.RijndaelEngine::Mul0x9(System.Int32)] : ohi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.RijndaelEngine::Mul0xb(System.Int32)] : ohj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.RijndaelEngine::Mul0xd(System.Int32)] : ohk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Engines.RijndaelEngine::Mul0xe(System.Int32)] : ohl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::KeyAddition(System.Int64[])] : ohm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.Engines.RijndaelEngine::Shift(System.Int64,System.Int32)] : ohn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::ShiftRow(System.Byte[])] : oho +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.Engines.RijndaelEngine::ApplyS(System.Int64,System.Byte[])] : ohp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::Substitution(System.Byte[])] : ohq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::MixColumn()] : ohr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::InvMixColumn()] : ohs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int64[][] Org.BouncyCastle.Crypto.Engines.RijndaelEngine::GenerateWorkingKey(Org.BouncyCastle.Crypto.Parameters.KeyParameter)] : oht +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::UnPackBlock(System.Byte[],System.Int32)] : ohu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::PackBlock(System.Byte[],System.Int32)] : ohv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::EncryptBlock(System.Int64[][])] : ohw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RijndaelEngine::DecryptBlock(System.Int64[][])] : ohx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Security.SecureRandom Org.BouncyCastle.Crypto.Engines.RsaBlindedEngine::InitSecureRandom(System.Boolean,Org.BouncyCastle.Security.SecureRandom)] : ohy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Engines.RsaBlindedEngine::ProcessInput(Org.BouncyCastle.Math.BigInteger)] : ohz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Engines.RsaBlindingEngine::BlindMessage(Org.BouncyCastle.Math.BigInteger)] : oia +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Engines.RsaBlindingEngine::UnblindMessage(Org.BouncyCastle.Math.BigInteger)] : oib +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.RsaCoreEngine::CheckInitialised()] : oic +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.Salsa20Engine::get_NonceSize()] : odl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::AdvanceCounter()] : odm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::ResetCounter()] : odn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::SetKey(System.Byte[],System.Byte[])] : odo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::GenerateKeyStream(System.Byte[])] : odp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.Salsa20Engine::QuarterRound(System.UInt32&,System.UInt32&,System.UInt32&,System.UInt32&)] : oie +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Crypto.Engines.SeedEngine::CreateWorkingKey(Org.BouncyCastle.Crypto.Parameters.KeyParameter)] : oif +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.Engines.SeedEngine::F(System.Int32,System.Int32,System.Int64)] : oig +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SeedEngine::G(System.Int32)] : oih +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Sb0(System.Int32,System.Int32,System.Int32,System.Int32)] : oii +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Ib0(System.Int32,System.Int32,System.Int32,System.Int32)] : oij +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Sb1(System.Int32,System.Int32,System.Int32,System.Int32)] : oik +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Ib1(System.Int32,System.Int32,System.Int32,System.Int32)] : oil +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Sb2(System.Int32,System.Int32,System.Int32,System.Int32)] : oim +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Ib2(System.Int32,System.Int32,System.Int32,System.Int32)] : oin +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Sb3(System.Int32,System.Int32,System.Int32,System.Int32)] : oio +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Ib3(System.Int32,System.Int32,System.Int32,System.Int32)] : oip +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Sb4(System.Int32,System.Int32,System.Int32,System.Int32)] : oiq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Ib4(System.Int32,System.Int32,System.Int32,System.Int32)] : oir +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Sb5(System.Int32,System.Int32,System.Int32,System.Int32)] : ois +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Ib5(System.Int32,System.Int32,System.Int32,System.Int32)] : oit +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Sb6(System.Int32,System.Int32,System.Int32,System.Int32)] : oiu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Ib6(System.Int32,System.Int32,System.Int32,System.Int32)] : oiv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Sb7(System.Int32,System.Int32,System.Int32,System.Int32)] : oiw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::Ib7(System.Int32,System.Int32,System.Int32,System.Int32)] : oix +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::LT()] : oiy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SerpentEngineBase::InverseLT()] : oiz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SkipjackEngine::G(System.Int32,System.Int32)] : oja +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SkipjackEngine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ojb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SkipjackEngine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ojc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.SkipjackEngine::H(System.Int32,System.Int32)] : ojd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.Multiplier.ECMultiplier Org.BouncyCastle.Crypto.Engines.SM2Engine::CreateBasePointMultiplier()] : oje +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.SM2Engine::Encrypt(System.Byte[],System.Int32,System.Int32)] : ojf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Engines.SM2Engine::Decrypt(System.Byte[],System.Int32,System.Int32)] : ojg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Engines.SM2Engine::NotEncrypted(System.Byte[],System.Byte[],System.Int32)] : ojh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM2Engine::Kdf(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.EC.ECPoint,System.Byte[])] : oji +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Engines.SM2Engine::NextK()] : ojj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM2Engine::AddFieldElement(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.EC.ECFieldElement)] : ojk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.SM4Engine::tau(System.UInt32)] : ojl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.SM4Engine::L_ap(System.UInt32)] : ojm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.SM4Engine::T_ap(System.UInt32)] : ojn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SM4Engine::ExpandKey(System.Boolean,System.Byte[])] : ojo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.SM4Engine::L(System.UInt32)] : ojp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.SM4Engine::T(System.UInt32)] : ojq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::CheckAad()] : ojr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crypto.Engines.SparkleEngine::CheckData()] : ojs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::FinishAad(Org.BouncyCastle.Crypto.Engines.SparkleEngine/State)] : ojt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::ProcessBufferAad(System.Byte[],System.Int32)] : oju +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::ProcessBufferDecrypt(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ojv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::ProcessBufferEncrypt(System.Byte[],System.Int32,System.Byte[],System.Int32)] : ojw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::ProcessFinalAad()] : ojx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::Reset(System.Boolean)] : ojy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::ArxBox(System.UInt32,System.UInt32&,System.UInt32&)] : ojz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Engines.SparkleEngine::ELL(System.UInt32)] : oka +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.SparkleEngine::SparkleOpt(System.UInt32[],System.Int32)] : okb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TeaEngine::SetKey(System.Byte[])] : okc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TeaEngine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : okd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TeaEngine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : oke +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine::SetKey(System.UInt64[])] : okf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.ThreefishEngine::SetTweak(System.UInt64[])] : okg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Engines.ThreefishEngine::RotlXor(System.UInt64,System.Int32,System.UInt64)] : okh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Engines.ThreefishEngine::XorRotr(System.UInt64,System.Int32,System.UInt64)] : oki +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TwofishEngine::SetKey(System.Byte[])] : okj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TwofishEngine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : okk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.TwofishEngine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : okl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::F32(System.Int32,System.Int32[])] : okm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::RS_MDS_Encode(System.Int32,System.Int32)] : okn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::RS_rem(System.Int32)] : oko +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::LFSR1(System.Int32)] : okp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::LFSR2(System.Int32)] : okq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::Mx_X(System.Int32)] : okr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::Mx_Y(System.Int32)] : oks +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::M_b0(System.Int32)] : okt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::M_b1(System.Int32)] : oku +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::M_b2(System.Int32)] : okv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::M_b3(System.Int32)] : okw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::Fe32_0(System.Int32)] : okx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.TwofishEngine::Fe32_3(System.Int32)] : oky +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.VmpcEngine::InitKey(System.Byte[],System.Byte[])] : okz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.VmpcKsa3Engine::InitKey(System.Byte[],System.Byte[])] : okz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.XSalsa20Engine::get_NonceSize()] : odl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.XSalsa20Engine::SetKey(System.Byte[],System.Byte[])] : odo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Engines.XteaEngine::setKey(System.Byte[])] : ola +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.XteaEngine::EncryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : olb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Engines.XteaEngine::DecryptBlock(System.Byte[],System.Int32,System.Byte[],System.Int32)] : olc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding::EncodeBlock(System.Byte[],System.Int32,System.Int32)] : old +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Encodings.ISO9796d1Encoding::DecodeBlock(System.Byte[],System.Int32,System.Int32)] : ole +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Encodings.OaepEncoding::GetMgf1NoMemoLimit(Org.BouncyCastle.Crypto.IDigest)] : olf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Encodings.OaepEncoding::GetReducedBlockSize(System.Int32)] : olg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Encodings.OaepEncoding::EncodeBlock(System.Byte[],System.Int32,System.Int32)] : olh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Encodings.OaepEncoding::DecodeBlock(System.Byte[],System.Int32,System.Int32)] : oli +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.OaepEncoding::MaskGeneratorFunction(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)] : olj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Encodings.OaepEncoding::MaskGeneratorFunction1(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32)] : olk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::GetReducedBlockSize(System.Int32)] : oll +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::EncodeBlock(System.Byte[],System.Int32,System.Int32)] : olm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::CheckPkcs1Encoding1(System.Byte[])] : oln +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::CheckPkcs1Encoding2(System.Byte[])] : olo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::CheckPkcs1Encoding2(System.Byte[],System.Int32)] : olp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::DecodeBlockOrRandom(System.Byte[],System.Int32,System.Int32)] : olq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding::DecodeBlock(System.Byte[],System.Int32,System.Int32)] : olr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP128R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP128R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160K1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160K1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160R2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP160R2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP192K1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP192K1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP192R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP192R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP224K1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP224K1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP224R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP224R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP256K1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP256K1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP256R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP256R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP384R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP384R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP521R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecP521R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT113R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT113R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT113R2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT113R2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT131R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT131R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT131R2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT131R2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163K1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163K1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163R2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT163R2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT193R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT193R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT193R2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT193R2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT233K1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT233K1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT233R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT233R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT239K1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT239K1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT283K1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT283K1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT283R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT283R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT409K1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT409K1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT409R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT409R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT571K1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT571K1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT571R1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SecT571R1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SM2P256V1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Crypto.EC.CustomNamedCurves/SM2P256V1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECPoint Org.BouncyCastle.Crypto.EC.CustomNamedCurves::ConfigureBasepoint(Org.BouncyCastle.Math.EC.ECCurve,System.String)] : olu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves::ConfigureCurve(Org.BouncyCastle.Math.EC.ECCurve)] : olv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Crypto.EC.CustomNamedCurves::ConfigureCurveGlv(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.Endo.GlvTypeBParameters)] : olw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves::DefineCurve(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X9.X9ECParametersHolder)] : olx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.EC.CustomNamedCurves::DefineCurveAlias(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier)] : oly +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconCXof128::InitState(System.Byte[],System.Int32,System.Int32)] : olz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconCXof128::PadAndAbsorb()] : oma +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconCXof128::P12()] : omb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconCXof128::Round(System.UInt64)] : omc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconDigest::FinishAbsorbing()] : omd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconDigest::P(System.Int32)] : ome +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconDigest::ROUND(System.UInt64)] : omf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconHash256::PadAndAbsorb()] : omg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconHash256::P12()] : omh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconHash256::Round(System.UInt64)] : omi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof::PadAndAbsorb()] : omj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof::P(System.Int32)] : omk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof::ROUND(System.UInt64)] : oml +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof128::PadAndAbsorb()] : omm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof128::P12()] : omn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.AsconXof128::Round(System.UInt64)] : omo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::Init()] : omp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::Compress(System.Byte[],System.Int32)] : omq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2bDigest::G(System.UInt64,System.UInt64,System.UInt64&,System.UInt64&,System.UInt64&,System.UInt64&)] : omr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::Init()] : oms +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::Compress(System.Byte[],System.Int32)] : omt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake2sDigest::G(System.UInt32,System.UInt32,System.UInt32&,System.UInt32&,System.UInt32&,System.UInt32&)] : omu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::ComputeStepLength()] : omv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Crypto.Digests.Blake2xsDigest::ComputeNodeOffset()] : omw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::CompressBlock(System.Byte[],System.Int32)] : omx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::InitM(System.Byte[],System.Int32)] : omy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::AdjustStack()] : omz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::CompressFinalBlock(System.Int32)] : ona +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::ProcessStack()] : onb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::Compress()] : onc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::PerformRound()] : ond +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::AdjustChaining()] : one +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::MixG(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : onf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::InitIndices()] : ong +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::PermuteIndices()] : onh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::InitNullKey()] : oni +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::InitKey(System.Byte[])] : onj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::InitKeyFromContext()] : onk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::InitChunkBlock(System.Int32,System.Boolean)] : onl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::InitParentBlock()] : onm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::NextOutputBlock()] : onn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::IncrementBlockCount()] : ono +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::ResetBlockCount()] : onp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Blake3Digest::SetRoot()] : onq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.CShakeDigest::EncodeString(System.Byte[])] : onr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.CShakeDigest::DiffPadAndAbsorb()] : ons +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::CopyIn(Org.BouncyCastle.Crypto.Digests.Dstu7564Digest)] : ont +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::ProcessBlock(System.Byte[],System.Int32)] : onu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::P(System.UInt64[])] : onv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::Q(System.UInt64[])] : onw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::MixColumn(System.UInt64)] : onx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::MixColumns(System.UInt64[])] : ony +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::Rotate(System.Int32,System.UInt64)] : onz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::ShiftRows(System.UInt64[])] : ooa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Dstu7564Digest::SubBytes(System.UInt64[])] : oob +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.GeneralDigest::CopyIn(Org.BouncyCastle.Crypto.Digests.GeneralDigest)] : ooc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Crypto.Digests.Gost3411Digest::MakeC()] : ood +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.Gost3411Digest::P(System.Byte[])] : ooe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.Gost3411Digest::A(System.Byte[])] : oof +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::E(System.Byte[],System.Byte[],System.Int32,System.Byte[],System.Int32)] : oog +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::fw(System.Byte[])] : ooh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::processBlock(System.Byte[],System.Int32)] : ooi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::Finish()] : ooj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::sumByteArray(System.Byte[])] : ook +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::cpyBytesToShort(System.Byte[],System.Int16[])] : ool +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411Digest::cpyShortToBytes(System.Int16[],System.Byte[])] : oom +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::F(System.Byte[])] : oon +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::Xor512(System.Byte[],System.Byte[])] : ooo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::E(System.Byte[],System.Byte[])] : oop +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::g_N(System.Byte[],System.Byte[],System.Byte[])] : ooq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::addMod512(System.Byte[],System.Int32)] : oor +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::addMod512(System.Byte[],System.Byte[])] : oos +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Gost3411_2012Digest::reverse(System.Byte[],System.Byte[])] : oot +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Haraka256Digest::Haraka256256(System.Byte[],System.Byte[],System.Int32)] : oou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Haraka256Digest::Mix256(System.Byte[][],System.Byte[][])] : oov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Haraka512Digest::Haraka512256(System.Byte[],System.Byte[],System.Int32)] : oow +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Haraka512Digest::Mix512(System.Byte[][],System.Byte[][])] : oox +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Digests.HarakaBase::SBox(System.Byte)] : ooy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.HarakaBase::SubBytes(System.Byte[])] : ooz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.HarakaBase::ShiftRows(System.Byte[])] : opa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte Org.BouncyCastle.Crypto.Digests.HarakaBase::MulX(System.Byte)] : opb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.HarakaBase::MixColumns(System.Byte[])] : opc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.IsapDigest::FinishAbsorbing()] : opd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.IsapDigest::P12()] : ope +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.IsapDigest::ROUND(System.UInt64)] : opf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::CopyIn(Org.BouncyCastle.Crypto.Digests.KeccakDigest)] : opg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.KeccakDigest::DoFinal(System.Byte[],System.Int32,System.Byte,System.Int32)] : oph +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::Init(System.Int32)] : opi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::InitSponge(System.Int32)] : opj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::Absorb(System.Byte)] : opk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::Absorb(System.Byte[],System.Int32,System.Int32)] : opl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::AbsorbBits(System.Int32,System.Int32)] : opm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::PadAndSwitchToSqueezingPhase()] : opn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::Squeeze(System.Byte[],System.Int32,System.Int64)] : opo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.KeccakDigest::KeccakAbsorb(System.Byte[],System.Int32)] : opp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::CopyIn(Org.BouncyCastle.Crypto.Digests.LongDigest)] : opq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.LongDigest::AdjustByteCounts()] : opr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Digests.LongDigest::Ch(System.UInt64,System.UInt64,System.UInt64)] : opt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Digests.LongDigest::Maj(System.UInt64,System.UInt64,System.UInt64)] : opu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Digests.LongDigest::Sum0(System.UInt64)] : opv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Digests.LongDigest::Sum1(System.UInt64)] : opw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Digests.LongDigest::Sigma0(System.UInt64)] : opx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Digests.LongDigest::Sigma1(System.UInt64)] : opy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD2Digest::CopyIn(Org.BouncyCastle.Crypto.Digests.MD2Digest)] : opz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD4Digest::CopyIn(Org.BouncyCastle.Crypto.Digests.MD4Digest)] : oqa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.MD4Digest::F(System.Int32,System.Int32,System.Int32)] : oqb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.MD4Digest::G(System.Int32,System.Int32,System.Int32)] : oqc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.MD4Digest::H(System.Int32,System.Int32,System.Int32)] : oqd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.MD5Digest::CopyIn(Org.BouncyCastle.Crypto.Digests.MD5Digest)] : oqe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.MD5Digest::F(System.UInt32,System.UInt32,System.UInt32)] : oqf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.MD5Digest::G(System.UInt32,System.UInt32,System.UInt32)] : oqg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.MD5Digest::H(System.UInt32,System.UInt32,System.UInt32)] : oqh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.MD5Digest::K(System.UInt32,System.UInt32,System.UInt32)] : oqi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ParallelHash::Compress()] : oqj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ParallelHash::Compress(System.Byte[],System.Int32,System.Int32)] : oqk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.ParallelHash::WrapUp(System.Int32)] : oql +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest::FinishAbsorbing()] : oqm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest::ProcessBuffer(System.Byte[],System.Int32)] : oqn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.PhotonBeetleDigest::PHOTON_Permutation()] : oqo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::CopyIn(Org.BouncyCastle.Crypto.Digests.RipeMD128Digest)] : oqp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::RL(System.Int32,System.Int32)] : oqq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::F1(System.Int32,System.Int32,System.Int32)] : oqr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::F2(System.Int32,System.Int32,System.Int32)] : oqs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::F3(System.Int32,System.Int32,System.Int32)] : oqt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::F4(System.Int32,System.Int32,System.Int32)] : oqu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::F1(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : oqv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::F2(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : oqw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::F3(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : oqx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::F4(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : oqy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::FF1(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : oqz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::FF2(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : ora +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::FF3(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : orb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD128Digest::FF4(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : orc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::CopyIn(Org.BouncyCastle.Crypto.Digests.RipeMD160Digest)] : ord +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::RL(System.Int32,System.Int32)] : ore +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::F1(System.Int32,System.Int32,System.Int32)] : orf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::F2(System.Int32,System.Int32,System.Int32)] : org +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::F3(System.Int32,System.Int32,System.Int32)] : orh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::F4(System.Int32,System.Int32,System.Int32)] : ori +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD160Digest::F5(System.Int32,System.Int32,System.Int32)] : orj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::CopyIn(Org.BouncyCastle.Crypto.Digests.RipeMD256Digest)] : ork +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::RL(System.Int32,System.Int32)] : orl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::F1(System.Int32,System.Int32,System.Int32)] : orm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::F2(System.Int32,System.Int32,System.Int32)] : orn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::F3(System.Int32,System.Int32,System.Int32)] : oro +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::F4(System.Int32,System.Int32,System.Int32)] : orp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::F1(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : orq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::F2(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : orr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::F3(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : ors +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::F4(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : ort +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::FF1(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : oru +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::FF2(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : orv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::FF3(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : orw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD256Digest::FF4(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : orx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::CopyIn(Org.BouncyCastle.Crypto.Digests.RipeMD320Digest)] : ory +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::RL(System.Int32,System.Int32)] : orz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::F1(System.Int32,System.Int32,System.Int32)] : osa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::F2(System.Int32,System.Int32,System.Int32)] : osb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::F3(System.Int32,System.Int32,System.Int32)] : osc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::F4(System.Int32,System.Int32,System.Int32)] : osd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.RipeMD320Digest::F5(System.Int32,System.Int32,System.Int32)] : ose +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha1Digest::CopyIn(Org.BouncyCastle.Crypto.Digests.Sha1Digest)] : osf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.Sha1Digest::F(System.UInt32,System.UInt32,System.UInt32)] : osg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.Sha1Digest::H(System.UInt32,System.UInt32,System.UInt32)] : osh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.Sha1Digest::G(System.UInt32,System.UInt32,System.UInt32)] : osi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha224Digest::CopyIn(Org.BouncyCastle.Crypto.Digests.Sha224Digest)] : osj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.Sha224Digest::Ch(System.UInt32,System.UInt32,System.UInt32)] : osk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.Sha224Digest::Maj(System.UInt32,System.UInt32,System.UInt32)] : osl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.Sha224Digest::Sum0(System.UInt32)] : osm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.Sha224Digest::Sum1(System.UInt32)] : osn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.Sha224Digest::Theta0(System.UInt32)] : oso +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.Sha224Digest::Theta1(System.UInt32)] : osp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha256Digest::CopyIn(Org.BouncyCastle.Crypto.Digests.Sha256Digest)] : osq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha256Digest::initHs()] : osr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.Sha256Digest::Sum1Ch(System.UInt32,System.UInt32,System.UInt32)] : oss +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.Sha256Digest::Sum0Maj(System.UInt32,System.UInt32,System.UInt32)] : ost +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.Sha256Digest::Theta0(System.UInt32)] : osu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.Sha256Digest::Theta1(System.UInt32)] : osv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha3Digest::CheckBitLength(System.Int32)] : osw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.Sha3Digest::DoFinal(System.Byte[],System.Int32,System.Byte,System.Int32)] : oph +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512tDigest::tIvGenerate(System.Int32)] : osx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512tDigest::UInt64_To_BE(System.UInt64,System.Byte[],System.Int32,System.Int32)] : osy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.Sha512tDigest::UInt32_To_BE(System.UInt32,System.Byte[],System.Int32,System.Int32)] : osz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ShakeDigest::CheckBitLength(System.Int32)] : ota +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ShakeDigest::DoFinal(System.Byte[],System.Int32,System.Byte,System.Int32)] : oph +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.ShakeDigest::OutputFinal(System.Byte[],System.Int32,System.Int32,System.Byte,System.Int32)] : otb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine/UBI::ProcessBlock(System.UInt64[])] : otc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::InitialState(System.Int32,System.Int32,System.UInt64[])] : otd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.SkeinEngine::VariantIdentifier(System.Int32,System.Int32)] : ote +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::CopyIn(Org.BouncyCastle.Crypto.Digests.SkeinEngine)] : otf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Digests.SkeinEngine/Parameter[] Org.BouncyCastle.Crypto.Digests.SkeinEngine::Clone(Org.BouncyCastle.Crypto.Digests.SkeinEngine/Parameter[],Org.BouncyCastle.Crypto.Digests.SkeinEngine/Parameter[])] : otg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::InitParams(System.Collections.Generic.IDictionary`2)] : oth +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::CreateInitialState()] : oti +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::UbiComplete(System.Int32,System.Byte[])] : otj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::UbiInit(System.Int32)] : otk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::UbiFinal()] : otl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::CheckInitialised()] : otm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SkeinEngine::Output(System.UInt64,System.Byte[],System.Int32,System.Int32)] : otn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SM3Digest::CopyIn(Org.BouncyCastle.Crypto.Digests.SM3Digest)] : oto +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.SM3Digest::P0(System.UInt32)] : otp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.SM3Digest::P1(System.UInt32)] : otq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.SM3Digest::FF0(System.UInt32,System.UInt32,System.UInt32)] : otr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.SM3Digest::FF1(System.UInt32,System.UInt32,System.UInt32)] : ots +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.SM3Digest::GG0(System.UInt32,System.UInt32,System.UInt32)] : ott +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.SM3Digest::GG1(System.UInt32,System.UInt32,System.UInt32)] : otu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.SparkleDigest::ProcessBlock(System.Byte[],System.Int32,System.Int32)] : otv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt32 Org.BouncyCastle.Crypto.Digests.SparkleDigest::ELL(System.UInt32)] : otw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::ProcessWord(System.Byte[],System.Int32)] : otx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::RoundABC(System.Int64,System.Int64)] : oty +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::RoundBCA(System.Int64,System.Int64)] : otz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::RoundCAB(System.Int64,System.Int64)] : oua +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::KeySchedule()] : oub +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::ProcessBlock()] : ouc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::ProcessLength(System.Int64)] : oud +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TigerDigest::Finish()] : oue +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.TupleHash::WrapUp(System.Int32)] : ouf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::MulX(System.Int32)] : oug +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.UInt64 Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::PackIntoUInt64(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] : ouh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::ProcessFilledBuffer()] : oui +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::ProcessBlock()] : ouj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::Increment()] : ouk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::Finish()] : oul +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Digests.WhirlpoolDigest::CopyBitLength()] : oum +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.XoodyakDigest::Up()] : oun +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Digests.XoodyakDigest::Down(System.Byte[],System.Int32,System.Int32)] : ouo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::FromHex(System.String)] : oup +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::FromPG(System.String,System.String)] : ouq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::SafePrimeGen2(System.String)] : our +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.DHParameters Org.BouncyCastle.Crypto.Agreement.DHStandardGroups::SafePrimeGen2(System.String,System.Int32)] : ous +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Crypto.Agreement.ECMqvBasicAgreement::CalculateMqvAgreement(Org.BouncyCastle.Crypto.Parameters.ECDomainParameters,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPrivateKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters,Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters)] : out +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::CalculateU(Org.BouncyCastle.Crypto.Parameters.SM2KeyExchangePublicParameters)] : ouu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::Kdf(Org.BouncyCastle.Math.EC.ECPoint,System.Byte[],System.Byte[],System.Int32)] : ouv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::Reduce(Org.BouncyCastle.Math.BigInteger)] : ouw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::S1(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.EC.ECPoint,System.Byte[])] : oux +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::CalculateInnerHash(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.EC.ECPoint,System.Byte[],System.Byte[],Org.BouncyCastle.Math.EC.ECPoint,Org.BouncyCastle.Math.EC.ECPoint)] : ouy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::S2(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.EC.ECPoint,System.Byte[])] : ouz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::GetZ(Org.BouncyCastle.Crypto.IDigest,System.Byte[],Org.BouncyCastle.Math.EC.ECPoint)] : ova +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::AddUserID(Org.BouncyCastle.Crypto.IDigest,System.Byte[])] : ovb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.SM2KeyExchange::AddFieldElement(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.EC.ECFieldElement)] : ovc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client::SelectPrivateValue()] : ovd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Client::CalculateS()] : ove +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server::SelectPrivateValue()] : ovf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Server::CalculateS()] : ovg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6StandardGroups::FromHex(System.String)] : ovh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.Srp6GroupParameters Org.BouncyCastle.Crypto.Agreement.Srp.Srp6StandardGroups::FromNG(System.String,System.String)] : ovi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities::HashPaddedTriplet(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : ovj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities::HashPaddedPair(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : ovk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::CalculateHashForZeroKnowledgeProof(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger,System.String,Org.BouncyCastle.Crypto.IDigest)] : ovl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::CalculateMacKey(Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Crypto.IDigest)] : ovm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::UpdateDigest(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger)] : ovn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::UpdateDigest(Org.BouncyCastle.Crypto.IDigest,System.String)] : ovo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::UpdateDigest(Org.BouncyCastle.Crypto.IDigest,System.Byte[])] : ovp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::UpdateDigestIncludingSize(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger)] : ovq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::UpdateDigestIncludingSize(Org.BouncyCastle.Crypto.IDigest,System.String)] : ovr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::UpdateDigestIncludingSize(Org.BouncyCastle.Crypto.IDigest,System.Byte[])] : ovs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::UpdateMac(Org.BouncyCastle.Crypto.IMac,Org.BouncyCastle.Math.BigInteger)] : ovt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::UpdateMac(Org.BouncyCastle.Crypto.IMac,System.String)] : ovu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::UpdateMac(Org.BouncyCastle.Crypto.IMac,System.Byte[])] : ovv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crypto.Agreement.JPake.JPakeUtilities::IntToByteArray(System.Int32)] : ovw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.CertReqMsg Org.BouncyCastle.Crmf.CertificateRequestMessage::ParseBytes(System.Byte[])] : ovx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Crmf.CertificateRequestMessage::VerifySignature(Org.BouncyCastle.Crypto.IVerifierFactoryProvider,Org.BouncyCastle.Asn1.Crmf.PopoSigningKey)] : ovy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Crmf.EncryptedValue Org.BouncyCastle.Crmf.EncryptedValueBuilder::EncryptData(System.Byte[])] : ovz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crmf.EncryptedValueBuilder::PadData(System.Byte[])] : owa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Crmf.EncryptedValueParser::UnpadData(System.Byte[])] : owb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Crmf.PKMacBuilder::CheckIterationCountCeiling(System.Int32)] : owc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMacFactory Org.BouncyCastle.Crmf.PKMacBuilder::GenCalculator(Org.BouncyCastle.Asn1.Cmp.PbmParameter,System.Char[])] : owd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IMacFactory Org.BouncyCastle.Crmf.PKMacBuilder::GenCalculator(Org.BouncyCastle.Asn1.Cmp.PbmParameter,System.Byte[])] : owe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PbmParameter Org.BouncyCastle.Crmf.PKMacBuilder::GenParameters()] : owg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsAuthenticatedData Org.BouncyCastle.Cms.CmsAuthenticatedDataGenerator::Generate(Org.BouncyCastle.Cms.CmsProcessable,System.String,Org.BouncyCastle.Crypto.CipherKeyGenerator)] : owh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator::Open(System.IO.Stream,System.String,Org.BouncyCastle.Crypto.CipherKeyGenerator)] : owi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsAuthenticatedDataStreamGenerator::Open(System.IO.Stream,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Asn1.Asn1EncodableVector)] : owj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.CmsCompressedData::Decompress(System.Func`2)] : owk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsContentInfoParser::Dispose(System.Boolean)] : owl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.CmsEnvelopedData Org.BouncyCastle.Cms.CmsEnvelopedDataGenerator::Generate(Org.BouncyCastle.Cms.CmsProcessable,System.String,Org.BouncyCastle.Crypto.CipherKeyGenerator)] : owm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator::Open(System.IO.Stream,System.String,Org.BouncyCastle.Crypto.CipherKeyGenerator)] : own +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsEnvelopedDataStreamGenerator::Open(System.IO.Stream,Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier,Org.BouncyCastle.Crypto.ICipherParameters,Org.BouncyCastle.Asn1.Asn1EncodableVector)] : owo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsEnvelopedHelper::ReadRecipientInfo(System.Collections.Generic.IList`1,Org.BouncyCastle.Asn1.Cms.RecipientInfo,Org.BouncyCastle.Cms.CmsSecureReadable)] : owp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsProcessableInputStream::CheckSingleUsage()] : owq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.CmsSignedData/PreserveAbsentParameters::Preserve(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] : owr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.Dictionary`2 Org.BouncyCastle.Cms.CmsSignedData/PreserveAbsentParameters::BuildAbsent(System.Collections.Generic.IEnumerable`1)] : ows +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataGenerator::DoAddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Asn1.Cms.AttributeTable)] : owt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataParser::PopulateCertCrlSets()] : owu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Cms.CmsSignedDataParser::GetAsn1Set(Org.BouncyCastle.Asn1.Asn1SetParser)] : owv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/CmsSignedDataOutputStream::DoClose()] : oww +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator/CmsSignedDataOutputStream::WriteToGenerator(Org.BouncyCastle.Asn1.Asn1Generator,Org.BouncyCastle.Asn1.Asn1Encodable)] : owx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::DoAddSigner(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Cms.CmsAttributeTableGenerator,Org.BouncyCastle.Cms.CmsAttributeTableGenerator)] : owy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::RegisterDigestOid(Org.BouncyCastle.Asn1.DerObjectIdentifier)] : owz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::ConfigureDigest(Org.BouncyCastle.Asn1.DerObjectIdentifier)] : oxa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::CalculateVersion(Org.BouncyCastle.Asn1.DerObjectIdentifier)] : oxb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::AttachDigestsToOutputStream(System.Collections.Generic.IEnumerable`1,System.IO.Stream)] : oxc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::CheckForVersion3(System.Collections.Generic.IList`1,System.Collections.Generic.IList`1)] : oxd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::GetSafeOutputStream(System.IO.Stream)] : oxe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Cms.CmsSignedDataStreamGenerator::GetSafeTeeOutputStream(System.IO.Stream,System.IO.Stream)] : oxf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.CmsSignedHelper::AddEntries(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String,System.String)] : oxg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.ContentInfo Org.BouncyCastle.Cms.CmsUtilities::ReadContentInfo(Org.BouncyCastle.Asn1.Asn1InputStream)] : oxh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Cms.DefaultAuthenticatedAttributeTableGenerator::CreateStandardAttributeTable(System.Collections.Generic.IDictionary`2)] : oxi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Cms.DefaultSignedAttributeTableGenerator::CreateStandardAttributeTable(System.Collections.Generic.IDictionary`2)] : oxj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cms.DefaultSignedAttributeTableGenerator::DoCreateStandardAttributeTable(System.Collections.Generic.IDictionary`2,System.Collections.Generic.IDictionary`2)] : oxk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.DigestAlgorithmsBuilder/UniqueAlgID::System.IEquatable.Equals(Org.BouncyCastle.Cms.DigestAlgorithmsBuilder/UniqueAlgID)] : oxl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Cms.DigestAlgorithmsBuilder/UniqueAlgID::CalculateHashCode(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] : oxm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.DigestAlgorithmsBuilder/UniqueAlgID::Equivalent(Org.BouncyCastle.Cms.DigestAlgorithmsBuilder/UniqueAlgID)] : oxn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.DigestAlgorithmsBuilder::ImplAdd(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] : oxo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.DigestAlgorithmsBuilder::GetCanonical(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] : oxp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.KekRecipientInfoGenerator::DetermineKeyEncAlg(System.String,Org.BouncyCastle.Crypto.Parameters.KeyParameter)] : oxq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::CreateOriginatorPublicKey(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] : oxr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey Org.BouncyCastle.Cms.KeyAgreeRecipientInfoGenerator::CreateOriginatorPublicKey(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] : oxs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetSenderPublicKey(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Cms.OriginatorIdentifierOrKey)] : oxt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetPublicKeyFromOriginatorPublicKey(Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Asn1.Cms.OriginatorPublicKey)] : oxu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.AsymmetricKeyParameter Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::GetPublicKeyFromOriginatorID(Org.BouncyCastle.Cms.OriginatorID)] : oxv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::CalculateAgreedWrapKey(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Crypto.AsymmetricKeyParameter,Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] : oxw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.KeyParameter Org.BouncyCastle.Cms.KeyAgreeRecipientInformation::UnwrapSessionKey(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Crypto.Parameters.KeyParameter)] : oxx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::get_AlgorithmDetails()] : oxy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Cms.KeyTransRecipientInfoGenerator::GenerateWrappedKey(Org.BouncyCastle.Crypto.Parameters.KeyParameter)] : oxz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Cms.KeyTransRecipientInformation::GetExchangeEncryptionAlgorithmName(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] : oya +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Cms.RecipientInformationStore::System.Collections.IEnumerable.GetEnumerator()] : oyb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Cms.SignerInfoGenerator Org.BouncyCastle.Cms.SignerInfoGeneratorBuilder::CreateGenerator(Org.BouncyCastle.Crypto.ISignatureFactory,Org.BouncyCastle.Asn1.Cms.SignerIdentifier,Org.BouncyCastle.X509.X509Certificate)] : oyc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.SignerInformation::DoVerify(Org.BouncyCastle.Crypto.AsymmetricKeyParameter)] : oyd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.SignerInformation::TryGetRawVerifier(Org.BouncyCastle.Crypto.ISigner&)] : oye +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Cms.SignerInformation::GetSingleValuedSignedAttribute(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String)] : oyf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Time Org.BouncyCastle.Cms.SignerInformation::GetSigningTime()] : oyg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Cms.SignerInformation::VerifySignature(Org.BouncyCastle.Crypto.ISigner,Org.BouncyCastle.Crypto.ICipherParameters,System.Byte[],System.Byte[])] : oyh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Cms.SignerInformationStore::System.Collections.IEnumerable.GetEnumerator()] : oyi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.CertificateStatus Org.BouncyCastle.Cmp.CertificateConfirmationContent::b__9_0(Org.BouncyCastle.Asn1.Cmp.CertStatus)] : oyj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cmp.PkiMessage Org.BouncyCastle.Cmp.GeneralPkiMessage::ParseBytes(System.Byte[])] : oyk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Cmp.ProtectedPkiMessage::CreateProtected()] : oyl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::FinalizeHeader(Org.BouncyCastle.Asn1.X509.AlgorithmIdentifier)] : oym +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Cmp.ProtectedPkiMessage Org.BouncyCastle.Cmp.ProtectedPkiMessageBuilder::FinalizeMessage(Org.BouncyCastle.Asn1.Cmp.PkiHeader,Org.BouncyCastle.Asn1.DerBitString)] : oyn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.ArmoredInputStream::Decode(System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[])] : oyo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.ArmoredInputStream::ParseHeaders()] : oyp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.ArmoredInputStream::ReadIgnoreSpace()] : oyq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::Encode(System.IO.Stream,System.Byte[],System.Int32)] : oyr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::Encode3(System.IO.Stream,System.Byte[])] : oys +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Bcpg.ArmoredOutputStream::CreateVersion()] : oyt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::DoClose()] : oyu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::WriteHeaderEntry(System.String,System.String)] : oyv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ArmoredOutputStream::DoWrite(System.String)] : oyw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.BcpgInputStream/PartialInputStream::ReadPartialDataLength()] : oyx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::WriteNewPacketLength(System.Int64)] : oyy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::WriteHeader(Org.BouncyCastle.Bcpg.PacketTag,System.Boolean,System.Boolean,System.Int64)] : oyz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::PartialFlush()] : oza +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::PartialFlushLast()] : ozb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::PartialWrite(System.Byte[],System.Int32,System.Int32)] : ozc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.BcpgOutputStream::PartialWriteByte(System.Byte)] : ozd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey::VerifyHashAlgorithm()] : oze +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey::VerifySymmetricKeyAlgorithm()] : ozf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.ECPublicBcpgKey::ReadBytesOfEncodedLength(Org.BouncyCastle.Bcpg.BcpgInputStream)] : ozg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignaturePacket::EncodeLengthAndData(Org.BouncyCastle.Bcpg.BcpgOutputStream,System.Byte[])] : ozh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.SignaturePacket::GetEncodedSubpackets(Org.BouncyCastle.Bcpg.SignatureSubpacket[])] : ozi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.SignaturePacket::SetCreationTime()] : ozj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.SignatureSubpacketsParser::CheckData(System.Byte[],System.Int32,System.Int32,System.String)] : ozk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.RevocationKey::CreateData(Org.BouncyCastle.Bcpg.RevocationKeyTag,Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag,System.Byte[])] : ozl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.RevocationReason::CreateData(Org.BouncyCastle.Bcpg.RevocationReasonTag,System.String)] : ozm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.EdDsaSigner::FinalizeDigest()] : ozn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpCompressedDataGenerator::DoOpen()] : ozo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedData/TruncatedStream::FillBuffer()] : ozp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PubMethod::EncryptSessionInfo(System.Byte[],Org.BouncyCastle.Security.SecureRandom)] : ozq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PubMethod::EncryptSessionInfo(Org.BouncyCastle.Bcpg.ECDHPublicBcpgKey,System.Byte[],System.Byte[],System.Byte[],Org.BouncyCastle.Security.SecureRandom)] : ozr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[][] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PubMethod::ProcessSessionInfo(System.Byte[])] : ozs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator/PubMethod::ConvertToEncodedMpi(System.Byte[])] : ozt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::AddCheckSum(System.Byte[])] : ozu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::CreateSessionInfo(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Crypto.Parameters.KeyParameter)] : ozv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Bcpg.OpenPgp.PgpEncryptedDataGenerator::Open(System.IO.Stream,System.Int64,System.Byte[])] : ozw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyRing::IsUserTag(Org.BouncyCastle.Bcpg.PacketTag)] : ozx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpLiteralDataGenerator::WriteHeader(Org.BouncyCastle.Bcpg.BcpgOutputStream,System.Char,System.Byte[],System.Int64)] : ozy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OnePassSignaturePacket Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::Cast(Org.BouncyCastle.Bcpg.Packet)] : ozz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::DoCanonicalUpdateByte(System.Byte)] : paa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpOnePassSignature::DoUpdateCRLF()] : pab +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBufferedCipher Org.BouncyCastle.Bcpg.OpenPgp.PgpPbeEncryptedData::CreateStreamCipher(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag)] : pac +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::UpdateDigest(Org.BouncyCastle.Crypto.IDigest,Org.BouncyCastle.Math.BigInteger)] : pad +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::Init()] : pae +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int64 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetExpirationTimeFromSig(System.Boolean,System.Int32)] : paf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.Parameters.ECPublicKeyParameters Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetECKey(System.String,Org.BouncyCastle.Bcpg.ECPublicBcpgKey)] : pag +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::GetSignaturesForId(Org.BouncyCastle.Bcpg.UserIdPacket)] : pah +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::AddCert(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.IUserDataPacket,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] : pai +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::RemoveCert(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.IUserDataPacket)] : paj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey::RemoveCert(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey,Org.BouncyCastle.Bcpg.IUserDataPacket,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature)] : pak +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Crypto.IBufferedCipher Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyEncryptedData::GetKeyCipher(Org.BouncyCastle.Bcpg.PublicKeyAlgorithmTag)] : pal +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyEncryptedData::ConfirmCheckSum(System.Byte[])] : pam +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyEncryptedData::RecoverSessionData(Org.BouncyCastle.Bcpg.OpenPgp.PgpPrivateKey)] : pan +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyEncryptedData::ProcessEncodedMpi(Org.BouncyCastle.Crypto.IBufferedCipher,System.Int32,System.Byte[])] : pao +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::System.IDisposable.Dispose()] : pap +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::<>m__Finally1()] : paq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::<>m__Finally2()] : par +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::System.Collections.Generic.IEnumerator.get_Current()] : pas +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::System.Collections.IEnumerator.Reset()] : pat +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::System.Collections.IEnumerator.get_Current()] : pau +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::System.Collections.Generic.IEnumerable.GetEnumerator()] : pav +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle/d__11::System.Collections.IEnumerable.GetEnumerator()] : paw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKeyRingBundle::get_KeyRings()] : pax +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::CertifiedPublicKey(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector)] : pay +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::CertifiedPublicKey(System.Int32,Org.BouncyCastle.Bcpg.OpenPgp.PgpKeyPair,System.String,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector,Org.BouncyCastle.Bcpg.HashAlgorithmTag)] : paz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::ExtractKeyData(System.Byte[],System.Boolean)] : pba +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::RecoverKeyData(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.String,Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Byte[],System.Byte[],System.Int32,System.Int32)] : pbb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::Checksum(System.Boolean,System.Byte[],System.Int32)] : pbc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::EncryptKeyDataV3(System.Byte[],Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,System.Byte[],System.Boolean,Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Bcpg.S2k&,System.Byte[]&)] : pbd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::EncryptKeyDataV4(System.Byte[],Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[],System.Boolean,Org.BouncyCastle.Security.SecureRandom,Org.BouncyCastle.Bcpg.S2k&,System.Byte[]&)] : pbe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::EncryptData(Org.BouncyCastle.Bcpg.SymmetricKeyAlgorithmTag,Org.BouncyCastle.Crypto.Parameters.KeyParameter,System.Byte[],System.Int32,System.Int32,Org.BouncyCastle.Security.SecureRandom,System.Byte[]&)] : pbf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKey::GetDValue(System.IO.Stream,System.Byte[],System.Boolean,System.String)] : pbg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::System.IDisposable.Dispose()] : pbh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::<>m__Finally1()] : pbi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::<>m__Finally2()] : pbj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRing Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::System.Collections.Generic.IEnumerator.get_Current()] : pbk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::System.Collections.IEnumerator.Reset()] : pbl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::System.Collections.IEnumerator.get_Current()] : pbm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::System.Collections.Generic.IEnumerable.GetEnumerator()] : pbn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle/d__11::System.Collections.IEnumerable.GetEnumerator()] : pbo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.ICollection`1 Org.BouncyCastle.Bcpg.OpenPgp.PgpSecretKeyRingBundle::get_KeyRings()] : pbp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignaturePacket Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::Cast(Org.BouncyCastle.Bcpg.Packet)] : pbq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::DoCanonicalUpdateByte(System.Byte)] : pbr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::DoUpdateCRLF()] : pbs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::UpdateWithIdData(System.Int32,System.Byte[])] : pbt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::UpdateWithPublicKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] : pbu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureSubpacketVector Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::CreateSubpacketVector(Org.BouncyCastle.Bcpg.SignatureSubpacket[])] : pbv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignature::GetEncodedPublicKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] : pbw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::DoCanonicalUpdateByte(System.Byte)] : pbx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::DoUpdateCRLF()] : pby +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::DoUpdateByte(System.Byte)] : pbz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::GetEncodedPublicKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] : pca +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::IsPacketPresent(Org.BouncyCastle.Bcpg.SignatureSubpacket[],Org.BouncyCastle.Bcpg.SignatureSubpacketTag)] : pcb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Bcpg.SignatureSubpacket[] Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::InsertSubpacket(Org.BouncyCastle.Bcpg.SignatureSubpacket[],Org.BouncyCastle.Bcpg.SignatureSubpacket)] : pcc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::UpdateWithIdData(System.Int32,System.Byte[])] : pcd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpSignatureGenerator::UpdateWithPublicKey(Org.BouncyCastle.Bcpg.OpenPgp.PgpPublicKey)] : pce +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::CreateNameToHashID()] : pcf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IDictionary`2 Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::CreateOidToName()] : pcg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::PipeFileContents(System.IO.FileInfo,System.IO.Stream)] : pch +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::PipeFileContents(System.IO.FileInfo,System.IO.Stream,System.Int32)] : pci +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Bcpg.OpenPgp.PgpUtilities::IsPossiblyBase64(System.Int32)] : pcj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpV3SignatureGenerator::DoCanonicalUpdateByte(System.Byte)] : pck +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpV3SignatureGenerator::DoUpdateCRLF()] : pcl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Bcpg.OpenPgp.PgpV3SignatureGenerator::DoUpdateByte(System.Byte)] : pcm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.OpenPgp.Rfc6637Utilities::Kdf(Org.BouncyCastle.Bcpg.HashAlgorithmTag,System.Byte[],System.Int32,System.Byte[])] : pcn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Bcpg.OpenPgp.SXprUtilities::ReadLength(System.IO.Stream,System.Int32)] : pco +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.Features::FeatureToByteArray(System.Byte)] : pcp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.IssuerKeyId::KeyIdToBytes(System.Int64)] : pcq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.KeyExpirationTime::TimeToBytes(System.Int64)] : pcr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.KeyFlags::IntToByteArray(System.Int32)] : pcs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.NotationData::CreateData(System.Boolean,System.String,System.String)] : pct +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.PreferredAlgorithms::IntToByteArray(System.Int32[])] : pcu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.RegularExpression::ToNullTerminatedUtf8ByteArray(System.String)] : pcv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.SignatureCreationTime::TimeToBytes(System.DateTime)] : pcw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.SignatureExpirationTime::TimeToBytes(System.Int64)] : pcx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Sig.TrustSignature::IntToByteArray(System.Int32,System.Int32)] : pcy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Bcpg.Attr.ImageAttrib::ToByteArray(Org.BouncyCastle.Bcpg.Attr.ImageAttrib/Format,System.Byte[])] : pcz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector/d__36::System.IDisposable.Dispose()] : pda +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Asn1EncodableVector/d__36::System.Collections.Generic.IEnumerator.get_Current()] : pdb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector/d__36::System.Collections.IEnumerator.Reset()] : pdc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Asn1.Asn1EncodableVector/d__36::System.Collections.IEnumerator.get_Current()] : pdd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Asn1.Asn1EncodableVector/d__36::System.Collections.Generic.IEnumerable.GetEnumerator()] : pde +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Asn1.Asn1EncodableVector/d__36::System.Collections.IEnumerable.GetEnumerator()] : pdf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Asn1.Asn1EncodableVector::System.Collections.IEnumerable.GetEnumerator()] : pdg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1EncodableVector::PrepareCapacity(System.Int32)] : pdh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1EncodableVector::Reallocate(System.Int32)] : pdi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable[] Org.BouncyCastle.Asn1.Asn1EncodableVector::CopyElements(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Int32)] : pdj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.Asn1EncodableVector::EnumerateElements(Org.BouncyCastle.Asn1.Asn1Encodable[],System.Int32)] : pdk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1GeneralizedTime::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1GeneralizedTime::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Asn1GeneralizedTime::FromString(System.String)] : pdl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1GeneralizedTime::IndexOfSign(System.String,System.Int32)] : pdm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Asn1GeneralizedTime::ParseLocal(System.String,System.String)] : pdn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Asn1GeneralizedTime::ParseTimeZone(System.String,System.String)] : pdo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Asn1GeneralizedTime::ParseUtc(System.String,System.String)] : pdp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1GeneralizedTime::ToStringCanonical(System.DateTime)] : pdq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Generator::Finish()] : pdr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.Asn1Generator::get_OutStream()] : pds +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1Generator::Dispose(System.Boolean)] : pdt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.Asn1InputStream::BuildObject(System.Int32,System.Int32,System.Int32)] : pdu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1EncodableVector Org.BouncyCastle.Asn1.Asn1InputStream::ReadVector()] : pdv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1EncodableVector Org.BouncyCastle.Asn1.Asn1InputStream::ReadVector(Org.BouncyCastle.Asn1.DefiniteLengthInputStream)] : pdw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBitString Org.BouncyCastle.Asn1.Asn1InputStream::BuildConstructedBitString(Org.BouncyCastle.Asn1.Asn1EncodableVector)] : pdx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetString Org.BouncyCastle.Asn1.Asn1InputStream::BuildConstructedOctetString(Org.BouncyCastle.Asn1.Asn1EncodableVector)] : pdy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1InputStream::GetBuffer(Org.BouncyCastle.Asn1.DefiniteLengthInputStream,System.Byte[][],System.Byte[]&)] : pdz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerBmpString Org.BouncyCastle.Asn1.Asn1InputStream::CreateDerBmpString(Org.BouncyCastle.Asn1.DefiniteLengthInputStream)] : pea +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Object::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Object::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1ObjectDescriptor::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1OctetString::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1OctetString::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1OutputStream::FlushInternal()] : peb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1RelativeOid::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1RelativeOid::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Asn1.Asn1Sequence::System.Collections.IEnumerable.GetEnumerator()] : pec +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Sequence::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Sequence::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Asn1.Asn1Set::System.Collections.IEnumerable.GetEnumerator()] : ped +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1Set::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1Set::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding[] Org.BouncyCastle.Asn1.Asn1Set::SortElements(Org.BouncyCastle.Asn1.Asn1Encodable[])] : pee +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1StreamParser::Set00Check(System.Boolean)] : pef +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::CheckInstance(System.Object)] : peg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::CheckInstance(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] : peh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1TaggedObject::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1TaggedObject::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1TaggedObject Org.BouncyCastle.Asn1.Asn1TaggedObject::CheckedCast(Org.BouncyCastle.Asn1.Asn1Object)] : pei +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1UtcTime::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Asn1UtcTime::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.DateTime Org.BouncyCastle.Asn1.Asn1UtcTime::FromString(System.String,System.Int32&)] : pej +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Asn1UtcTime::InRange(System.DateTime,System.Int32)] : pek +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1UtcTime::ToStringCanonical(System.DateTime,System.Int32&)] : pel +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.Asn1UtcTime::ToStringCanonical(System.DateTime)] : pem +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Asn1UtcTime::Validate(System.DateTime,System.Int32)] : pen +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerGenerator::Finish()] : pdr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerGenerator::WriteHdr(System.Int32)] : peo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerGenerator::WriteBerHeader(System.Int32)] : pep +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerGenerator::WriteBerBody(System.IO.Stream)] : peq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.BerGenerator::WriteBerEnd()] : per +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1BitStringParser Org.BouncyCastle.Asn1.ConstructedBitStream::GetNextParser()] : pes +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.ConstructedDLEncoding::Org.BouncyCastle.Asn1.IAsn1Encoding.Encode(Org.BouncyCastle.Asn1.Asn1OutputStream)] : pet +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.ConstructedDLEncoding::Org.BouncyCastle.Asn1.IAsn1Encoding.GetLength()] : peu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.ConstructedILEncoding::Org.BouncyCastle.Asn1.IAsn1Encoding.Encode(Org.BouncyCastle.Asn1.Asn1OutputStream)] : pev +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.ConstructedILEncoding::Org.BouncyCastle.Asn1.IAsn1Encoding.GetLength()] : pew +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1OctetStringParser Org.BouncyCastle.Asn1.ConstructedOctetStream::GetNextParser()] : pex +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerBitString::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerBitString::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.MemoryStream Org.BouncyCastle.Asn1.DerBitString::GetMemoryStream()] : pey +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerBitString::CheckOctetAligned()] : pez +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerBitString::GetDerContents(Org.BouncyCastle.Asn1.Asn1Encodable)] : pfa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerBmpString::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerBmpString::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerBmpString::GetContents()] : pfb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerBoolean::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerBoolean::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerBoolean::GetContents(System.Int32)] : pfc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerEnumerated::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerEnumerated::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerExternal::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerExternal::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1ObjectDescriptor Org.BouncyCastle.Asn1.DerExternal::CheckDataValueDescriptor(Org.BouncyCastle.Asn1.Asn1Object)] : pfd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerExternal::CheckEncoding(System.Int32)] : pfe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerExternal::CheckExternalContent(System.Int32,Org.BouncyCastle.Asn1.Asn1Object)] : pff +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerExternal::GetExternalContent(Org.BouncyCastle.Asn1.Asn1TaggedObject)] : pfg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.DerExternal::GetObjFromSequence(Org.BouncyCastle.Asn1.Asn1Sequence,System.Int32)] : pfh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerGeneralString::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerGeneralString::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerGenerator::WriteLength(System.IO.Stream,System.Int32)] : pfi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerGraphicString::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerGraphicString::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerIA5String::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerIA5String::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerInteger::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerInteger::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerNull::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerNull::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerNumericString::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerNumericString::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerObjectIdentifier::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerObjectIdentifier::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerObjectIdentifier::IsValidIdentifier(System.String)] : pfj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.DerObjectIdentifier::ParseContents(System.Byte[])] : pfk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.DerObjectIdentifier::ParseIdentifier(System.String)] : pfl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerPrintableString::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerPrintableString::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSequenceGenerator::Finish()] : pdr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding[] Org.BouncyCastle.Asn1.DerSet::GetSortedDerEncodings()] : pfm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerEncoding[] Org.BouncyCastle.Asn1.DerSet::CreateSortedDerEncodings(Org.BouncyCastle.Asn1.Asn1Encodable[])] : pfn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerSetGenerator::Finish()] : pdr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerStringBase::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerT61String::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerT61String::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerUniversalString::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerUniversalString::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUniversalString::EncodeHexByte(System.Text.StringBuilder,System.Int32)] : pfo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.DerUniversalString::EncodeHexDL(System.Text.StringBuilder,System.Int32)] : pfp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerUtf8String::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerUtf8String::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerVideotexString::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerVideotexString::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.DerVisibleString::Asn1Equals(Org.BouncyCastle.Asn1.Asn1Object)] : mou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.DerVisibleString::Asn1GetHashCode()] : mov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.IO.Stream Org.BouncyCastle.Asn1.DLBitStringParser::GetBitStream(System.Boolean)] : pfq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1StreamParser Org.BouncyCastle.Asn1.DLTaggedObjectParser::CheckConstructed()] : pfr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.IndefiniteLengthInputStream::CheckEndOfContents()] : pfs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.IndefiniteLengthInputStream::RequireByte()] : pft +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.LimitedInputStream::SetParentEofDetect()] : pfu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.PrimitiveDerEncodingSuffixed::CompareSuffixed(System.Byte[],System.Byte,System.Byte[],System.Byte)] : pfv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.PrimitiveEncoding::Org.BouncyCastle.Asn1.IAsn1Encoding.Encode(Org.BouncyCastle.Asn1.Asn1OutputStream)] : pfw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.PrimitiveEncoding::Org.BouncyCastle.Asn1.IAsn1Encoding.GetLength()] : pfx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.PrimitiveEncodingSuffixed::Org.BouncyCastle.Asn1.IAsn1Encoding.Encode(Org.BouncyCastle.Asn1.Asn1OutputStream)] : pfy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.PrimitiveEncodingSuffixed::Org.BouncyCastle.Asn1.IAsn1Encoding.GetLength()] : pfz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TaggedDLEncoding::Org.BouncyCastle.Asn1.IAsn1Encoding.Encode(Org.BouncyCastle.Asn1.Asn1OutputStream)] : pga +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.TaggedDLEncoding::Org.BouncyCastle.Asn1.IAsn1Encoding.GetLength()] : pgb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TaggedILEncoding::Org.BouncyCastle.Asn1.IAsn1Encoding.Encode(Org.BouncyCastle.Asn1.Asn1OutputStream)] : pgc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.TaggedILEncoding::Org.BouncyCastle.Asn1.IAsn1Encoding.GetLength()] : pgd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v3Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime192v3Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v3Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime239v3Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime256v1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/Prime256v1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v3Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb163v3Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb176w1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb176w1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v3Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb191v3Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb208w1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb208w1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v3Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb239v3Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb272w1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb272w1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb304w1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb304w1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb359v1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb359v1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb368w1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2pnb368w1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb431r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X962NamedCurves/C2tnb431r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECPoint Org.BouncyCastle.Asn1.X9.X962NamedCurves::ConfigureBasepoint(Org.BouncyCastle.Math.EC.ECCurve,System.String)] : pge +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X962NamedCurves::ConfigureCurve(Org.BouncyCastle.Math.EC.ECCurve)] : pgf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.X9.X962NamedCurves::FromHex(System.String)] : pgg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X9.X962NamedCurves::DefineCurve(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X9.X9ECParametersHolder)] : pgh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.X9.X9ECParametersHolder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.X9.X9ECParametersHolder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECPoint Org.BouncyCastle.Asn1.X9.X9ECPoint::CreatePoint()] : pgi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.AccessDescription[] Org.BouncyCastle.Asn1.X509.AuthorityInformationAccess::Copy(Org.BouncyCastle.Asn1.X509.AccessDescription[])] : pgj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.CertificatePair::Validate()] : pgk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.PolicyInformation[] Org.BouncyCastle.Asn1.X509.CertificatePolicies::Copy(Org.BouncyCastle.Asn1.X509.PolicyInformation[])] : pgl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerStringBase Org.BouncyCastle.Asn1.X509.DisplayText::GetOptionalInnerObject(Org.BouncyCastle.Asn1.Asn1Encodable)] : pgm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DistributionPoint::AppendObject(System.Text.StringBuilder,System.String,System.String)] : pgn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.X509.DistributionPointName::GetOptionalBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject)] : pgo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.DistributionPointName::AppendObject(System.Text.StringBuilder,System.String,System.String)] : pgp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.X509.GeneralName::GetOptionalBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject)] : pgq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.X509.GeneralName::ToGeneralNameEncoding(System.String)] : pgr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralName::CopyInts(System.Int32[],System.Byte[],System.Int32)] : pgs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralName::ParseIPv4(System.String,System.Byte[],System.Int32)] : pgt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.GeneralName::ParseIPv4Mask(System.String,System.Byte[],System.Int32)] : pgu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Asn1.X509.GeneralName::ParseIPv6(System.String)] : pgv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32[] Org.BouncyCastle.Asn1.X509.GeneralName::ParseIPv6Mask(System.String)] : pgw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.GeneralName[] Org.BouncyCastle.Asn1.X509.GeneralNames::Copy(Org.BouncyCastle.Asn1.X509.GeneralName[])] : pgx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.IssuingDistributionPoint::AppendObject(System.Text.StringBuilder,System.String,System.String)] : pgy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.X509.NameConstraints::CreateSequence(System.Collections.Generic.IList`1)] : pgz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerSequence Org.BouncyCastle.Asn1.X509.NameConstraints::CreateSequence(System.Collections.Generic.IReadOnlyCollection`1)] : pha +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1EncodableVector Org.BouncyCastle.Asn1.X509.NoticeReference::ConvertVector(System.Collections.Generic.IList`1)] : phb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Byte[] Org.BouncyCastle.Asn1.X509.SubjectKeyIdentifier::GetDigest(Org.BouncyCastle.Asn1.X509.SubjectPublicKeyInfo)] : phc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration/RevokedCertificatesEnumerator::System.Collections.IEnumerator.get_Current()] : phd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Asn1.X509.TbsCertificateList/RevokedCertificatesEnumeration::System.Collections.IEnumerable.GetEnumerator()] : phe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.X509.V2TbsCertListGenerator::GenerateTbsCertificateStructure()] : phf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier[] Org.BouncyCastle.Asn1.X509.X509Extensions::GetExtensionOids(System.Boolean)] : phg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::ImplAddExtension(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X509.X509Extension)] : phh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509ExtensionsGenerator::ImplAddExtensionDup(Org.BouncyCastle.Asn1.X509.X509Extension,Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Boolean,System.Byte[])] : phi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerObjectIdentifier Org.BouncyCastle.Asn1.X509.X509Name::DecodeOid(System.String,System.Collections.Generic.IDictionary`2)] : phj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::AddAttribute(System.Collections.Generic.IDictionary`2,System.String,System.Boolean)] : phk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.X509.X509Name::AppendValue(System.Text.StringBuilder,System.Collections.Generic.IDictionary`2,Org.BouncyCastle.Asn1.DerObjectIdentifier,System.String)] : phl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.X509Name::Canonicalize(System.String)] : phm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.X509Name::DecodeObject(System.String)] : phn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.X509Name::EquivalentStrings(System.String,System.String)] : pho +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.X509Name::NextToken(Org.BouncyCastle.Asn1.X509.X509NameTokenizer)] : php +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.X509Name::NextToken(Org.BouncyCastle.Asn1.X509.X509NameTokenizer,System.Boolean)] : phq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.String Org.BouncyCastle.Asn1.X509.X509Name::StripInternalSpaces(System.String)] : phr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X509.X509NameEntryConverter::ConvertHexEncoded(System.String,System.Int32)] : phs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X509.X509NameEntryConverter::CanBePrintable(System.String)] : pht +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerStringBase Org.BouncyCastle.Asn1.X500.DirectoryString::GetOptionalInnerObject(Org.BouncyCastle.Asn1.Asn1Encodable)] : phu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X500.Style.IetfUtilities::IsHexDigit(System.Char)] : phv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.X500.Style.IetfUtilities::ConvertHex(System.Char)] : phw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Object Org.BouncyCastle.Asn1.X500.Style.IetfUtilities::DecodeObject(System.String)] : phx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.X500.Style.IetfUtilities::AtvAreEqual(Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue,Org.BouncyCastle.Asn1.X500.AttributeTypeAndValue)] : phy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Utilities.Asn1Dump::AsString(System.String,System.Boolean,Org.BouncyCastle.Asn1.Asn1Object,System.Text.StringBuilder)] : phz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Utilities.Asn1Dump::DumpBinaryDataAsString(System.Text.StringBuilder,System.String,System.Byte[])] : pia +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Utilities.Asn1Dump::AppendAscString(System.Text.StringBuilder,System.Byte[],System.Int32,System.Int32)] : pib +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Tsp.Accuracy::Validate()] : pic +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Tsp.TstInfo Org.BouncyCastle.Asn1.Tsp.ArchiveTimeStamp::GetTimeStampInfo()] : pid +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP160r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP160r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP160t1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP160t1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP192r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP192r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP192t1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP192t1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP224r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP224r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP224t1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP224t1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP256r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP256r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP256t1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP256t1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP320r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP320r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP320t1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP320t1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP384r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP384r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP384t1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP384t1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP512r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP512r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP512t1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves/BrainpoolP512t1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECPoint Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves::ConfigureBasepoint(Org.BouncyCastle.Math.EC.ECCurve,System.String)] : pie +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves::ConfigureCurve(Org.BouncyCastle.Math.EC.ECCurve)] : pif +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves::FromHex(System.String)] : pig +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.TeleTrust.TeleTrusTNamedCurves::DefineCurve(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X9.X9ECParametersHolder)] : pih +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Smime.SmimeCapabilities::DoGetCapabilitiesForOid(Org.BouncyCastle.Asn1.DerObjectIdentifier,System.Collections.Generic.List`1)] : pii +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp112r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp112r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp112r2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp112r2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp128r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp128r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp128r2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp128r2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160k1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160k1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160r2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp160r2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp192k1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp192k1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp192r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp192r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp224k1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp224k1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp224r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp224r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp256k1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp256k1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp256r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp256r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp384r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp384r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp521r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Secp521r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect113r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect113r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect113r2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect113r2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect131r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect131r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect131r2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect131r2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163k1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163k1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163r2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect163r2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect193r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect193r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect193r2Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect193r2Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect233k1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect233k1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect233r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect233r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect239k1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect239k1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect283k1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect283k1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect283r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect283r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect409k1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect409k1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect409r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect409r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect571k1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect571k1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect571r1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Sec.SecNamedCurves/Sect571r1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECPoint Org.BouncyCastle.Asn1.Sec.SecNamedCurves::ConfigureBasepoint(Org.BouncyCastle.Math.EC.ECCurve,System.String)] : pij +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves::ConfigureCurve(Org.BouncyCastle.Math.EC.ECCurve)] : pik +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Sec.SecNamedCurves::ConfigureCurveGlv(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.EC.Endo.GlvTypeBParameters)] : pil +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Sec.SecNamedCurves::FromHex(System.String)] : pim +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Sec.SecNamedCurves::DefineCurve(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X9.X9ECParametersHolder)] : pin +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Pkcs.ContentInfo[] Org.BouncyCastle.Asn1.Pkcs.AuthenticatedSafe::Copy(Org.BouncyCastle.Asn1.Pkcs.ContentInfo[])] : pio +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Pkcs.CertificationRequestInfo::ValidateAttributes(Org.BouncyCastle.Asn1.Asn1Set)] : pip +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Pkcs.PrivateKeyInfo::GetVersionValue(Org.BouncyCastle.Asn1.DerInteger)] : piq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Ocsp.CertStatus::GetOptionalBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject)] : pir +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Nist.NistNamedCurves::DefineCurveAlias(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier)] : pis +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Misc.Cast5CbcParameters::IsDefaultIV(Org.BouncyCastle.Asn1.Asn1OctetString)] : pit +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.IsisMtt.X509.DeclarationOfMajority::GetOptionalBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject)] : piu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::GetInstanceSigningFor(Org.BouncyCastle.Asn1.Asn1Encodable)] : piv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.IsisMtt.X509.ProcurationSyntax::GetTaggedSigningFor(Org.BouncyCastle.Asn1.Asn1TaggedObject,System.Boolean)] : piw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.X509CertificateStructure[] Org.BouncyCastle.Asn1.Icao.CscaMasterList::CopyCertList(Org.BouncyCastle.Asn1.X509.X509CertificateStructure[])] : pix +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::CheckDatagroupHashCount(System.Int32)] : piy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Icao.DataGroupHash[] Org.BouncyCastle.Asn1.Icao.LdsSecurityObject::ConvertDataGroupHash(Org.BouncyCastle.Asn1.Asn1Sequence)] : piz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.GM.GMNamedCurves/SM2P256V1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.GM.GMNamedCurves/SM2P256V1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.GM.GMNamedCurves/WapiP192V1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.GM.GMNamedCurves/WapiP192V1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECPoint Org.BouncyCastle.Asn1.GM.GMNamedCurves::ConfigureBasepoint(Org.BouncyCastle.Math.EC.ECCurve,System.String)] : pja +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.GM.GMNamedCurves::ConfigureCurve(Org.BouncyCastle.Math.EC.ECCurve)] : pjb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.GM.GMNamedCurves::FromHex(System.String)] : pjc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.GM.GMNamedCurves::DefineCurve(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X9.X9ECParametersHolder)] : pjd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_A::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_A::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_B::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_B::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_C::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_gostR3410_2001_CryptoPro_C::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_256_paramSetA::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_256_paramSetA::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetA::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetA::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetB::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetB::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetC::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves/Holder_id_tc26_gost_3410_12_512_paramSetC::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECPoint Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves::ConfigureBasepoint(Org.BouncyCastle.Math.EC.ECCurve,Org.BouncyCastle.Math.BigInteger,Org.BouncyCastle.Math.BigInteger)] : pje +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves::ConfigureCurve(Org.BouncyCastle.Math.EC.ECCurve)] : pjf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves::FromHex(System.String)] : pjg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.ECGost3410NamedCurves::DefineCurve(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X9.X9ECParametersHolder)] : pjh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.CryptoPro.ECGost3410ParamSetParameters::get_X()] : pji +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.CryptoPro.Gost3410NamedParameters::DefineParameters(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.CryptoPro.Gost3410ParamSetParameters)] : pjj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Crmf.CertTemplate::CreateSequence()] : pjk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X509.Time Org.BouncyCastle.Asn1.Crmf.CertTemplateBuilder::CreateTime(System.Nullable`1)] : pjl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Crmf.EncKeyWithID::GetOptionalChoice(Org.BouncyCastle.Asn1.Asn1Encodable)] : pjm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Crmf.PkiArchiveOptions::GetOptionalBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject)] : pjn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Crmf.PopoPrivKey::GetOptionalBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject)] : pjo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Crmf.ProofOfPossession::GetOptionalBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject)] : pjp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable/d__25::System.IDisposable.Dispose()] : pjq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable/d__25::<>m__Finally1()] : pjr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable/d__25::<>m__Finally2()] : pjs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.Attribute Org.BouncyCastle.Asn1.Cms.AttributeTable/d__25::System.Collections.Generic.IEnumerator.get_Current()] : pjt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable/d__25::System.Collections.IEnumerator.Reset()] : pju +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Object Org.BouncyCastle.Asn1.Cms.AttributeTable/d__25::System.Collections.IEnumerator.get_Current()] : pjv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerator`1 Org.BouncyCastle.Asn1.Cms.AttributeTable/d__25::System.Collections.Generic.IEnumerable.GetEnumerator()] : pjw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Asn1.Cms.AttributeTable/d__25::System.Collections.IEnumerable.GetEnumerator()] : pjx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.IEnumerator Org.BouncyCastle.Asn1.Cms.AttributeTable::System.Collections.IEnumerable.GetEnumerator()] : pjy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AttributeTable::AddAttribute(System.Collections.Generic.Dictionary`2,Org.BouncyCastle.Asn1.Cms.Attribute)] : pjz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.Dictionary`2 Org.BouncyCastle.Asn1.Cms.AttributeTable::BuildAttributes(System.Collections.Generic.IDictionary`2,System.Int32&)] : pka +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.Dictionary`2 Org.BouncyCastle.Asn1.Cms.AttributeTable::BuildAttributes(System.Collections.Generic.IReadOnlyCollection`1,System.Int32&)] : pkb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Int32 Org.BouncyCastle.Asn1.Cms.AttributeTable::CountAttributesOfType(System.Collections.Generic.Dictionary`2,Org.BouncyCastle.Asn1.DerObjectIdentifier)] : pkc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Collections.Generic.IEnumerable`1 Org.BouncyCastle.Asn1.Cms.AttributeTable::EnumerateAttributes(System.Collections.Generic.Dictionary`2)] : pkd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.AuthenticatedData::CalculateVersionField(Org.BouncyCastle.Asn1.Cms.OriginatorInfo)] : pke +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Cms.AuthEnvelopedData::Validate()] : pkf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cms.ContentInfo::IsDLContent(Org.BouncyCastle.Asn1.Asn1Encodable)] : pkg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cms.ContentInfo::IsDLOctetString(Org.BouncyCastle.Asn1.Asn1Object)] : pkh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cms.ContentInfo::IsDLSequence(Org.BouncyCastle.Asn1.Asn1Object)] : pki +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.EnvelopedData::CalculateVersionField(Org.BouncyCastle.Asn1.Cms.OriginatorInfo,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set)] : pkj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Cms.KekRecipientInfo Org.BouncyCastle.Asn1.Cms.RecipientInfo::GetKekInfo(Org.BouncyCastle.Asn1.Asn1TaggedObject)] : pkk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.DerInteger Org.BouncyCastle.Asn1.Cms.SignedData::CalculateVersionField(Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set,Org.BouncyCastle.Asn1.Asn1Set)] : pkl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Boolean Org.BouncyCastle.Asn1.Cms.SignedData::HasV3SignerInfos(Org.BouncyCastle.Asn1.Asn1Set)] : pkm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Set Org.BouncyCastle.Asn1.Cms.SignedData::ReadOptionalTaggedSet(Org.BouncyCastle.Asn1.Asn1Sequence,System.Int32&,System.Int32,System.Boolean&)] : pkn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cmp.PkiBody::GetOptionalBaseObject(Org.BouncyCastle.Asn1.Asn1TaggedObject)] : pko +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Encodable Org.BouncyCastle.Asn1.Cmp.PkiBody::GetBodyForType(System.Int32,Org.BouncyCastle.Asn1.Asn1Encodable)] : pkp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::MakeGeneralInfoSeq(Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue)] : pkq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.Asn1Sequence Org.BouncyCastle.Asn1.Cmp.PkiHeaderBuilder::MakeGeneralInfoSeq(Org.BouncyCastle.Asn1.Cmp.InfoTypeAndValue[])] : pkr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves/Frp256v1Holder::CreateCurve()] : ols +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found group Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECParameters Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves/Frp256v1Holder::CreateParameters()] : olt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Asn1.X9.X9ECPoint Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves::ConfigureBasepoint(Org.BouncyCastle.Math.EC.ECCurve,System.String)] : pks +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.EC.ECCurve Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves::ConfigureCurve(Org.BouncyCastle.Math.EC.ECCurve)] : pkt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] Org.BouncyCastle.Math.BigInteger Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves::FromHex(System.String)] : pku +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[BouncyCastle.Cryptography] System.Void Org.BouncyCastle.Asn1.Anssi.AnssiNamedCurves::DefineCurve(System.String,Org.BouncyCastle.Asn1.DerObjectIdentifier,Org.BouncyCastle.Asn1.X9.X9ECParametersHolder)] : pkv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::SkNWkoYr(System.String)] : pkw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::C0pC9V6d(System.String)] : pkx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::0PnSpfKm(System.String)] : pky +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void m5tn1KmT::a5qdtcd2(System.String)] : pkz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::UP26uget()] : pla +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::mQTlVxzr()] : plb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::OKPgok7F()] : plc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::we6R3qGl()] : pld +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::Tmlnbs3y()] : ple +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::4o4Ek3wr(System.Object)] : plf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::tKkg7VyF(System.Object)] : plg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::AU2EP4S_()] : plh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::OcnQPXiZ(System.Object)] : pli +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::17MFMGY5(System.Object)] : plj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::WLW7D1IQ(System.Object)] : plk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::4puTgKH6()] : pll +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::Q41fTgiq()] : plm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::iFhfGW3x()] : pln +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::2scvruhK()] : plo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::rSre3FEr(System.Object)] : plp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::12LrHrwW()] : plq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::EuLGZGOU(System.Object)] : plr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::NBmpD9Pf(System.Object)] : pls +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::xKghFTwe()] : plt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::qqsXc23n(System.Object)] : plu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::uYHVw9RG()] : plv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::eQl_dwMV(System.Object)] : plw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::pZiWXy03()] : plx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::Etw4jIHy()] : ply +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::Z_5FNzCp()] : plz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::7kfmS6wY(System.Object)] : pmb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::C1jhmNDb(System.Object)] : pmc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::xY97ar14()] : pmd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::hci6TwoZ()] : pme +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::MboXXXNy()] : pmf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void Loom::S2Oyuzoi(System.Object)] : pmg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] pXJcQ90q/OQvGXH2e pXJcQ90q::SEXA4sn7()] : pmh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] pXJcQ90q/OQvGXH2e pXJcQ90q::pkcWMyy4()] : pmi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] pXJcQ90q/OQvGXH2e pXJcQ90q::z7nliJ2e()] : pmj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] pXJcQ90q/OQvGXH2e pXJcQ90q::PJUtiMYf()] : pmk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] pXJcQ90q/OQvGXH2e pXJcQ90q::Vb4l6RXI()] : pml +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] pXJcQ90q/OQvGXH2e pXJcQ90q::Ll4DSo2h()] : pmm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::oMOqUWNz()] : pmn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::IPvgA4fV()] : pmo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::3okq3684()] : pmp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::UpdateAllTimers()] : pmq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::fIKMlt7i()] : pmr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::6PoKq05y()] : pms +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::aR0BpT09()] : pmt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::atXPhCY0()] : pmu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::i5FB59iv()] : pmv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::EqOhuNIn()] : pmw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::f4HEjUGp()] : pmx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer/TimerManager::JnCm_maU()] : pmy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::GetTimeDelta()] : pmz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::set_duration(System.Single)] : pna +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::oyQB2ohJ()] : pnb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::15lSIoFK()] : pnc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::dlDK8ary(System.Single)] : pnd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::otb1BNRo()] : pne +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::GetFireTime()] : pnf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::IMBEU5Ir()] : png +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::VC9Sun9i(System.Boolean)] : pnh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::GetWorldTime()] : pni +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::ooh7BNcN(System.Boolean)] : pnj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::7W3W2erK(System.Boolean)] : pnk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::set_isCompleted(System.Boolean)] : pnl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::xVVf5KYc()] : pnm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::Oo9mJKhS()] : pnn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::g6mLuVn6(System.Boolean)] : pno +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::BxhIMpVC()] : pnp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::Update()] : pnq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::pwgcfsE5()] : pnr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::FAGn9VT7()] : pns +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::8XZczxdh(System.Boolean)] : pnt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::ouWQxI4b()] : pnu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::FpClOoEA()] : pnv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::PLTugVkY()] : pnw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::_go7qOMR()] : pnx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::ZlOiBlTj()] : pny +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::OglvUpZ5()] : pnz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::9y9FUfX_()] : poa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::wFD4wZlM(System.Boolean)] : pob +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::BKVCNwbk(System.Single)] : poc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::iOpc77tS()] : pod +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::y5t7YhRL()] : poe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::rCvoxHt2()] : pof +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::JnQpcSxC(System.Boolean)] : pog +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::R29yGtAs()] : poh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::6U9_VWmS(System.Boolean)] : poi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::rLeGVLi9(System.Single)] : poj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::RVp3sW2b()] : pok +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::tfzTdQn1()] : pol +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::QwPvzeGK()] : pom +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::D3Go_8Ug()] : pon +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::sGJaDW4r()] : poo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Boolean UnityTimer.Timer::get_isOwnerDestroyed()] : pop +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::RJuOKM9M()] : poq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::set_usesRealTime(System.Boolean)] : por +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::ZzMZqAnN(System.Boolean)] : pot +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::oumjJRwL()] : pou +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::4GSi2Ylv()] : pov +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::9HjwqYlC()] : pow +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::8EBqMR80(System.Boolean)] : pox +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::TyHeb2z7(System.Single)] : poy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::SJlNqz7Z()] : poz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::05Evhbjx()] : ppa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::3p0_BVLL(System.Boolean)] : ppb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::W5mGylT0(System.Boolean)] : ppc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::gtT6BbHf()] : ppd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Single UnityTimer.Timer::xKU3ffUW()] : ppe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::psb1FpVC(System.Boolean)] : ppf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::kSj0f5w0(System.Boolean)] : ppg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[ZrZYFo6bYXYM71YyLSDK] System.Void UnityTimer.Timer::pjVY8PV9()] : pph +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] jyj0EesQ/rUBTREjH jyj0EesQ::_YqI74WT()] : ppi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] jyj0EesQ/rUBTREjH jyj0EesQ::unJYEQTY()] : ppj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] jyj0EesQ/rUBTREjH jyj0EesQ::tczi0Mu_()] : ppk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] jyj0EesQ/rUBTREjH jyj0EesQ::43wmKF43()] : ppl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] jyj0EesQ/rUBTREjH jyj0EesQ::icKWWaBB()] : ppm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] jyj0EesQ/rUBTREjH jyj0EesQ::0UfdKlx1()] : ppn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] jyj0EesQ/rUBTREjH jyj0EesQ::MZr7mLHR()] : ppo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::WIvTDGUt()] : ppp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::h6k6vN2y()] : ppq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::2jSsg6lv()] : ppr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::I1ARGIIi()] : pps +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::l30QO1ZQ()] : ppt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::5zAkZCXG()] : ppu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::Gt9xuPWj()] : ppv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::cozYm6Rf()] : ppw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::nguxtI5f()] : ppx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::kWZiOuzP()] : ppy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::JqSVOEzT()] : ppz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::DKn4yTuX()] : pqa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::v_hWb5ib()] : pqb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::TMsaqaNB()] : pqc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::E4vb98CO()] : pqd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::o0ajjiZ_()] : pqe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::exV4BLKr()] : pqf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::9F48_jlo()] : pqg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::8fsk9GL3()] : pqh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::vTkHRhlx()] : pqi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.iiYPpatD::WiKhGA9W()] : pqj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::HdA8V4hV(System.String)] : pqk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::XuQ6nreG(System.String)] : pql +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::qogiHRgX(System.String)] : pqm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::c4aGdJ4G(System.String)] : pqn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::tSB50Iag(System.String)] : pqo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::W_TKm7ss(System.String)] : pqp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::lN_zWz_Z(System.Action`1,System.String)] : pqq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::u_Mx9LzW(System.Action`1,System.String)] : pqr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::tYUpOiIa(System.String)] : pqs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::Dz1xsLZO(System.String)] : pqt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::10u3U8RW(System.Action`1,System.String)] : pqu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::J7eQ6AFm(System.String)] : pqv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::mwGV1hCS(System.String)] : pqw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::t0kDkRQp(System.String)] : pqx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::33d6WOC8(System.String)] : pqy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::xgvBblGc(System.String)] : pqz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::hK1b2a73(System.String)] : pra +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::kBfH8v7M(System.Action`1,System.String)] : prb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.Hnpdo984::su5QYHdZ(System.Action`1,System.String)] : prc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::uLjFLppZ(System.String)] : prd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::D75OQuvs(System.String)] : pre +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.String SDK_IAP.Hnpdo984::EOUEYI4x(System.String)] : prg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::3Dq3fQvy(System.String,System.String)] : prh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.DateTime SDK_IAP.b4eGWFfo::8nCeRXCd(System.Int64)] : pri +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::rUY94k3T(System.String,System.String)] : prj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::jvjJVtFZ(System.String,System.String)] : prk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Boolean SDK_IAP.b4eGWFfo::zDz0M7Eo(System.String,System.String)] : prl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::psQGiRXQ(System.String,System.String)] : prm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Boolean SDK_IAP.b4eGWFfo::0XzOWk7L(System.String,System.String)] : prn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Boolean SDK_IAP.b4eGWFfo::UL93Efqa(System.String,System.String)] : pro +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::mHPD6ph4(System.String,System.String)] : prp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Boolean SDK_IAP.b4eGWFfo::ABfu_WHE(System.String,System.String)] : prq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Boolean SDK_IAP.b4eGWFfo::caoUn5sU(System.String,System.String)] : prr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Boolean SDK_IAP.b4eGWFfo::_hkCgw2F(System.String,System.String)] : prs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::yzjlE2wr(System.String,System.String)] : prt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::2dmNImwW(System.String,System.String)] : pru +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Boolean SDK_IAP.b4eGWFfo::TEAXGKTg(System.String,System.String)] : prv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Boolean SDK_IAP.b4eGWFfo::gLJpv9xp(System.String,System.String)] : prw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::dV07RwwK(System.String,System.String)] : prx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::GdlnT1pi(System.String,System.String)] : pry +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Boolean SDK_IAP.b4eGWFfo::O52sjKLe(System.String,System.String)] : prz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::6cbnKTZo(System.String,System.String)] : psa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Boolean SDK_IAP.b4eGWFfo::NT2WO3TL(System.String,System.String)] : psb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::BFOBzXv7(System.String,System.String)] : psc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::MR1XBK46(System.String,System.String)] : psd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::5ugmouCJ(System.String,System.String)] : pse +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.DateTime SDK_IAP.b4eGWFfo::bP72uDdz(System.Int64)] : psf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::2g86HgKR(System.String,System.String)] : psg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Boolean SDK_IAP.b4eGWFfo::ZGKQ647K(System.String,System.String)] : psh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::L12UdREu(System.String,System.String)] : psi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Int64 SDK_IAP.b4eGWFfo::Fxq_LbGF(System.String,System.String)] : psj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Boolean SDK_IAP.b4eGWFfo::K8SR96AR(System.String,System.String)] : psl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.DateTime SDK_IAP.b4eGWFfo::8Dyo3dPf(System.Int64)] : psm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Boolean SDK_IAP.b4eGWFfo::CMd4MdH2(System.String,System.String)] : psn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.DateTime SDK_IAP.b4eGWFfo::A6SWrUpc(System.Int64)] : pso +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.DateTime SDK_IAP.b4eGWFfo::bYzzVPLx(System.Int64)] : psp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.DateTime SDK_IAP.b4eGWFfo::I1Z1mG9q(System.Int64)] : psq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::0qOjEEkt()] : psr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::h5UMFsUx(System.Runtime.CompilerServices.IAsyncStateMachine)] : pss +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::ygDJyofW()] : pst +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::PoMtN7vl(System.Runtime.CompilerServices.IAsyncStateMachine)] : psu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::9LTwKlR2()] : psv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::IdoHKyxF(System.Runtime.CompilerServices.IAsyncStateMachine)] : psw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::aEn2ldvK()] : psx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::Om_oc3l5(System.Runtime.CompilerServices.IAsyncStateMachine)] : psy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::Y1qoXK1Y()] : psz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::QypVOfpf()] : pta +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::9uu6r9KP(System.Runtime.CompilerServices.IAsyncStateMachine)] : ptb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::x9BkRYEE(System.Runtime.CompilerServices.IAsyncStateMachine)] : ptc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::4CllA7bW(System.Runtime.CompilerServices.IAsyncStateMachine)] : ptd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::KLxyIcJE()] : pte +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::9w4Q4r18(System.Runtime.CompilerServices.IAsyncStateMachine)] : ptf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe/puudMThz::KcRi4ys8(System.Runtime.CompilerServices.IAsyncStateMachine)] : ptg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::2xqySBRf(System.String,SDK_IAP.PurchaseResult)] : pth +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::UJRNG_Z9(System.Collections.Generic.List`1)] : pti +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::tgvGa1v0(UnityEngine.Purchasing.PendingOrder)] : ptj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::kihX4Ap4(System.String,SDK_IAP.PurchaseResult)] : ptk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::KnzdoT8s(UnityEngine.Purchasing.PendingOrder)] : ptl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::3Q5KCIc0(System.String,System.String)] : ptm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::D1UtQHYb(UnityEngine.Purchasing.StoreConnectionFailureDescription)] : ptn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::J76nfssK(System.Collections.Generic.List`1)] : pto +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::VDCWt0ox(System.String,System.String)] : ptp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::O0CnV8dG(UnityEngine.Purchasing.PendingOrder)] : ptq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::Q5xDMuIQ(UnityEngine.Purchasing.ProductFetchFailed)] : pts +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::dyyqNdNy(System.String,System.String)] : ptt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::Z9ND3ayg(System.String,SDK_IAP.PurchaseResult)] : ptu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::noRowBKH(System.String,System.String)] : ptv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::KXHmb139(System.String,System.String)] : ptw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::VI5h6LFg(UnityEngine.Purchasing.PendingOrder)] : ptx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::byDweah0(System.String,System.String)] : pty +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::xc4Y_p3h(System.Collections.Generic.List`1)] : ptz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::o4LWsq9j(System.String,System.String)] : pua +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::EtGzwejg(UnityEngine.Purchasing.ProductFetchFailed)] : puc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::jbrfywww(System.String,SDK_IAP.PurchaseResult)] : pud +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::O7D0OxIt(System.String,System.String)] : pue +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::gcBwGFaI(System.Collections.Generic.List`1)] : puf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::KpuIRltJ(UnityEngine.Purchasing.StoreConnectionFailureDescription)] : pug +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::nOGotOp9(System.Collections.Generic.List`1)] : puh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::mkZL6AiT(UnityEngine.Purchasing.FailedOrder)] : pui +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::6hbtMYlo(UnityEngine.Purchasing.PurchasesFetchFailureDescription)] : puj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::c3YDW8eW(System.String,System.String)] : puk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::kiUBazcF(UnityEngine.Purchasing.FailedOrder)] : pul +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::CaeLcppY(System.Collections.Generic.List`1)] : pum +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::Pn56KdVn(System.Collections.Generic.List`1)] : pun +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::yIc3Je3R(UnityEngine.Purchasing.ProductFetchFailed)] : puo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::_aCU55RE(UnityEngine.Purchasing.PurchasesFetchFailureDescription)] : pup +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] UnityEngine.Purchasing.CatalogProvider SDK_IAP.bxoh8bRe::kf6I7N0M(System.Collections.Generic.List`1)] : puq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::xUq9VmDu(System.String,System.String)] : pur +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::C4bHY8Xp(UnityEngine.Purchasing.PendingOrder)] : pus +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::Lg_UcsyA(System.String,System.String)] : put +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::JCk6Of6d(System.String,SDK_IAP.PurchaseResult)] : puu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::M3wf3drq(UnityEngine.Purchasing.ProductFetchFailed)] : puv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::F5Zhxv2B(System.String,SDK_IAP.PurchaseResult)] : puw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::dxp0wtuU(System.String,SDK_IAP.PurchaseResult)] : pux +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::mZ9P8dyI(UnityEngine.Purchasing.ProductFetchFailed)] : puy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::j1K0OgFk(UnityEngine.Purchasing.PurchasesFetchFailureDescription)] : puz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::hkRUPO0F(UnityEngine.Purchasing.FailedOrder)] : pva +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::K_IkU77U(System.String,System.String)] : pvb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::AlGWIPZ5(UnityEngine.Purchasing.ProductFetchFailed)] : pvc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] UnityEngine.Purchasing.CatalogProvider SDK_IAP.bxoh8bRe::ThEjzZ3W(System.Collections.Generic.List`1)] : pvd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::qzgDLXox(System.String,System.String)] : pve +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::5RLiuThU(System.String,System.String)] : pvf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::LEBx3uMx(System.String,System.String)] : pvg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::_S7KEl_5(System.String,System.String)] : pvh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::wDKpxYcN(System.String,System.String)] : pvi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::9m_z261S(UnityEngine.Purchasing.FailedOrder)] : pvj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::gE0mdcGR(UnityEngine.Purchasing.ProductFetchFailed)] : pvk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::jlpZGQHR(System.String,System.String)] : pvl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::IrbpHbq5(UnityEngine.Purchasing.StoreConnectionFailureDescription)] : pvm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::lxMFbeqB(System.Collections.Generic.List`1)] : pvn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::gpSaz3us(UnityEngine.Purchasing.ProductFetchFailed)] : pvo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::tpefsIwW(UnityEngine.Purchasing.PendingOrder)] : pvp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::81UNw0tR(UnityEngine.Purchasing.StoreConnectionFailureDescription)] : pvq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::_b0FI4dP(UnityEngine.Purchasing.StoreConnectionFailureDescription)] : pvr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::eYnpMqmn(UnityEngine.Purchasing.StoreConnectionFailureDescription)] : pvs +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::KPsHAzEE(UnityEngine.Purchasing.FailedOrder)] : pvt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::cOGD84J0(UnityEngine.Purchasing.FailedOrder)] : pvu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::P32uoMSS(System.String,System.String)] : pvv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::jWr7xcz8(System.String,SDK_IAP.PurchaseResult)] : pvw +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::ehUAbkiX(UnityEngine.Purchasing.ProductFetchFailed)] : pvx +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::wU4i_nMl(System.String,System.String)] : pvy +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::ta7y662M(System.String,SDK_IAP.PurchaseResult)] : pvz +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::RJ922IZs(UnityEngine.Purchasing.FailedOrder)] : pwa +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::en4SymzP(System.String,System.String)] : pwb +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::qkEJkCWQ(System.String,System.String)] : pwc +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::xQIKpxzu(System.String,SDK_IAP.PurchaseResult)] : pwd +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::_8FilnQZ(UnityEngine.Purchasing.ProductFetchFailed)] : pwe +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::eEEhBn2y(System.String,System.String)] : pwf +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::OyiSbvsZ(UnityEngine.Purchasing.StoreConnectionFailureDescription)] : pwg +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::yDdyiooS(System.String,System.String)] : pwh +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::AIO4m7mh(UnityEngine.Purchasing.Orders)] : pwi +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::FKdm4JNQ(System.String,SDK_IAP.PurchaseResult)] : pwj +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::p7srqTps(UnityEngine.Purchasing.FailedOrder)] : pwk +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::1QtiAFk0(UnityEngine.Purchasing.PendingOrder)] : pwl +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::avXdMnwW(UnityEngine.Purchasing.Orders)] : pwm +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::o0yZIkGu(System.String,System.String)] : pwn +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::Ce6ZxIFK(UnityEngine.Purchasing.Orders)] : pwo +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] UnityEngine.Purchasing.CatalogProvider SDK_IAP.bxoh8bRe::eRYzNTIQ(System.Collections.Generic.List`1)] : pwp +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::ZHn8hAYE(System.String,SDK_IAP.PurchaseResult)] : pwq +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::pE6IrfIY(UnityEngine.Purchasing.StoreConnectionFailureDescription)] : pwr +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::eGVgVpB0(System.String,System.String)] : pws +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::liUPY6mg(UnityEngine.Purchasing.StoreConnectionFailureDescription)] : pwt +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::fCCUNHm3(System.Collections.Generic.List`1)] : pwu +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::KLvCicqr(System.String,SDK_IAP.PurchaseResult)] : pwv +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::6kbr8zN8(System.String,System.String)] : pww +[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[SDK_IAP] System.Void SDK_IAP.bxoh8bRe::sb8UxAKc(System.Collections.Generic.List`1)] : pwx [Info][OPS.OBF][OnFindMemberNames_Assemblies] Process component Field - Obfuscation -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::i__Field] : hhm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::i__Field] : hhn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::i__Field] : hho -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::i__Field] : hhp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::i__Field] : hhq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::i__Field] : hhr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::i__Field] : hhs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::i__Field] : hht -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::i__Field] : hhu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::i__Field] : hhv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::i__Field] : hhw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType1`1::i__Field] : hhx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType2`2::i__Field] : hhy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] j__TPar <>f__AnonymousType2`2::i__Field] : hhz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Stack`1 TextureHelper/MaterialPool::blurMats] : hia -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Stack`1 TextureHelper/MaterialPool::normalMats] : hib -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__26::<>1__state] : hic -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object TextureHelper/d__26::<>2__current] : hid -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String TextureHelper/d__26::5__2] : hie -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String TextureHelper/d__26::5__3] : hif -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String TextureHelper/d__26::5__4] : hig -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__26::5__5] : hih -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest TextureHelper/d__26::5__6] : hii -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__43::<>1__state] : hij -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object TextureHelper/d__43::<>2__current] : hik -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__2::<>1__state] : hil -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object TextureHelper/d__2::<>2__current] : him -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__8::<>1__state] : hin -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object TextureHelper/d__8::<>2__current] : hio -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest TextureHelper/d__8::5__2] : hip -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__41::<>1__state] : hiq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object TextureHelper/d__41::<>2__current] : hir -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String TextureHelper/d__41::5__2] : his -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.IO.FileInfo TextureHelper/d__41::5__3] : hit -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest TextureHelper/d__41::5__4] : hiu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__27::<>1__state] : hiv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object TextureHelper/d__27::<>2__current] : hiw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest TextureHelper/d__27::5__2] : hix -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__23::<>1__state] : hiy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object TextureHelper/d__23::<>2__current] : hiz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__24::<>1__state] : hja -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object TextureHelper/d__24::<>2__current] : hjb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__25::<>1__state] : hjc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object TextureHelper/d__25::<>2__current] : hjd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__31::<>1__state] : hje -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object TextureHelper/d__31::<>2__current] : hjf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__29::<>1__state] : hjg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object TextureHelper/d__29::<>2__current] : hjh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Diagnostics.Stopwatch TextureHelper/d__29::5__2] : hji -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 TextureHelper/d__29::5__3] : hjj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 TextureHelper/d__29::5__4] : hjk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 TextureHelper/d__29::5__5] : hjl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 TextureHelper/d__29::5__6] : hjm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 TextureHelper/d__29::5__7] : hjn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 TextureHelper/d__29::5__8] : hjo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__29::5__9] : hjp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__30::<>1__state] : hjq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object TextureHelper/d__30::<>2__current] : hjr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Diagnostics.Stopwatch TextureHelper/d__30::5__2] : hjs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String[] TextureHelper/d__30::<>7__wrap2] : hjt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper/d__30::<>7__wrap3] : hju -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 TextureHelper::nTexturesDic] : hjv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 TextureHelper::avatarNTexturesDic] : hjw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 TextureHelper::galleryNTexturesDic] : hjx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Queue`1 TextureHelper::normalQueue] : hjy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Coroutine TextureHelper::normalCoroutine] : hjz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Queue`1 TextureHelper::priorityQueue] : hka -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Coroutine TextureHelper::priorityCoroutine] : hkb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper::maxPriorityConcurrent] : hkc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 TextureHelper::priorityRunning] : hkd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2> FXPool`1::PoolDic] : hke -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 FXPool`1::PollPar] : hkf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FXPool`1::temp] : hkg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Transform FXPool`1::objectPoolPar] : hkh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] VideoPlayerPool VideoPlayerPool::_instance] : hki -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Queue`1 VideoPlayerPool::pool] : hkj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.GameObject VideoPlayerPool::parent] : hkk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 VideoPlayerPool::maxCount] : hkl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.HashSet`1 VideoPlayerPool::inUsePlayers] : hkm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 AdExchangeManager::btn_WatchAd] : hkn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 AdExchangeManager::ActionSetText] : hko -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 AdExchangeManager::ad_cool_down] : hkp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] IgnoreOPS.CommonModel AdExchangeManager::config] : hkq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 AdExchangeManager::packdata] : hkr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 AdExchangeManager::coinList] : hks -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 AdExchangeManager::threeDayData] : hkt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String EventTrackMapping::k__BackingField] : hku -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Func`2 EventTrackMapping::k__BackingField] : hkv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Func`2 EventTrackMapping::k__BackingField] : hkw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ChatHelper/d__5::<>1__state] : hkx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ChatHelper/d__5::<>2__current] : hky -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ChatHelper/<>c__DisplayClass5_0 ChatHelper/d__5::<>8__1] : hkz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Coroutine ChatHelper::pollingCoroutine] : hla -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.GameObject CreatAnimalCard::card_item] : hlb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 CreatAnimalCard::img_list] : hlc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.GameObject CreatAnimalCard::Popup] : hld -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.GameObject CreatAnimalCard::disappear01] : hle -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.GameObject CreatAnimalCard::disappear02] : hlf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.UInt32 AppMsg::Cursor_BASE] : hlg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.UInt32 MainThreadMsg::Cursor_BASE] : hlh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 ErrorLogger::errorLogs] : hli -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String LoveLegendRoot::adInfoLabel] : hlj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 MaxPayManager/d__11::<>1__state] : hlk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object MaxPayManager/d__11::<>2__current] : hll -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.IEnumerator`1> MaxPayManager/d__11::<>7__wrap1] : hlm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.KeyValuePair`2 MaxPayManager/d__11::5__3] : hln -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean MaxPayManager/d__11::5__4] : hlo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 MaxPayManager::PayStatus] : hlp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Coroutine MaxPayManager::PayCoroutine] : hlq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int64 MemoryManager::nextCleanTime] : hlr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int64 MemoryManager::timeConfig] : hls -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 PurchasingManager::PayConfig] : hlt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean PurchasingManager::_isChecking] : hlu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean PurchasingManager::isFlag] : hlv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] DG.Tweening.Tween RewardSystem::_tween] : hlw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] Newtonsoft.Json.JsonSerializerSettings SerializeUtil::DefaultUseJsonSettings] : hlx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] Newtonsoft.Json.JsonSerializerSettings SerializeUtil::JsonIndentedSettings] : hly -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2> Language::_localizedText] : hlz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String Language::_currentLanguage] : hma -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 VideoLoadScheduler/d__5::<>1__state] : hmb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object VideoLoadScheduler/d__5::<>2__current] : hmc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] VideoLoadScheduler/<>c__DisplayClass5_0 VideoLoadScheduler/d__5::<>8__1] : hmd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 VideoLoadScheduler::MaxConcurrent] : hme -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Queue`1 VideoLoadScheduler::taskQueue] : hmf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 VideoLoadScheduler::runningTasks] : hmg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 GLoaderExtensions::loaderTaskMap] : hmh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 GMTool::buttonHeight] : hmi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 GMTool::fontSize] : hmj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 GMTool::inputFields] : hmk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 GMTool::items] : hml -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 GMTool::spacing] : hmm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.GUIStyle GMTool::buttonStyle] : hmn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 GMTool::currentX] : hmo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 GMTool::currentY] : hmp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.GUIStyle GMTool::inputFieldStyle] : hmq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.GUIStyle GMTool::labelStyle] : hmr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean GMTool::toggleDisplay] : hms -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 GMTool::windowWidth] : hmt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean ES3AutoSave::isQuitting] : hmu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 ES3File::cache] : hmv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean ES3File::syncWithFile] : hmw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.DateTime ES3File::timestamp] : hmx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Spreadsheet::cols] : hmy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Spreadsheet::rows] : hmz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 ES3Spreadsheet::cells] : hna -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Spreadsheet::QUOTE] : hnb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Char ES3Spreadsheet::QUOTE_CHAR] : hnc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Char ES3Spreadsheet::COMMA_CHAR] : hnd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Char ES3Spreadsheet::NEWLINE_CHAR] : hne -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Spreadsheet::ESCAPED_QUOTE] : hnf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Char[] ES3Spreadsheet::CHARS_TO_ESCAPE] : hng -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Reader/ES3ReaderPropertyEnumerator/d__2::<>1__state] : hnh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Reader/ES3ReaderPropertyEnumerator/d__2::<>2__current] : hni -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Reader/ES3ReaderRawEnumerator/d__2::<>1__state] : hnj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Reader/ES3ReaderRawEnumerator/d__2::<>2__current] : hnk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Reader::serializationDepth] : hnl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Reader::overridePropertiesName] : hnm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean ES3Slot::markedForDeletion] : hnn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 ES3SlotManager::slots] : hno -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.DateTime ES3SlotManager::falseDateTime] : hnp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3Settings ES3Settings::_defaults] : hnq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3Defaults ES3Settings::_defaultSettingsScriptableObject] : hnr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Settings::defaultSettingsPath] : hns -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3Settings ES3Settings::_unencryptedUncompressedSettings] : hnt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String[] ES3Settings::resourcesExtensions] : hnu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Cloud/d__53::<>1__state] : hnv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Cloud/d__53::<>2__current] : hnw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest ES3Cloud/d__53::5__2] : hnx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Cloud/d__44::<>1__state] : hny -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Cloud/d__44::<>2__current] : hnz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest ES3Cloud/d__44::5__2] : hoa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Cloud/d__45::<>1__state] : hob -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Cloud/d__45::<>2__current] : hoc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest ES3Cloud/d__45::5__2] : hod -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Cloud/d__61::<>1__state] : hoe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Cloud/d__61::<>2__current] : hof -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest ES3Cloud/d__61::5__2] : hog -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Cloud/d__70::<>1__state] : hoh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Cloud/d__70::<>2__current] : hoi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest ES3Cloud/d__70::5__2] : hoj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Cloud/d__60::<>1__state] : hok -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Cloud/d__60::<>2__current] : hol -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest ES3Cloud/d__60::5__2] : hom -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Cloud/d__62::<>1__state] : hon -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Cloud/d__62::<>2__current] : hoo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest ES3Cloud/d__62::5__2] : hop -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Cloud/d__20::<>1__state] : hoq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Cloud/d__20::<>2__current] : hor -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Cloud/d__33::<>1__state] : hos -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Cloud/d__33::<>2__current] : hou -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest ES3Cloud/d__33::5__2] : hov -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Cloud::timeout] : how -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Byte[] ES3Cloud::_data] : hox -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.HashSet`1 ES3Writer::keysToDelete] : hoy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean ES3Writer::writeHeaderAndFooter] : hoz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean ES3Writer::overwriteKeys] : hpa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Writer::serializationDepth] : hpb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5/TimeAwareRetryPolicy::m_MaxAttempts] : hpc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single IAPManagerV5/TimeAwareRetryPolicy::m_InitialDelay] : hpd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single IAPManagerV5/TimeAwareRetryPolicy::m_MaxDelay] : hpe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single IAPManagerV5/TimeAwareRetryPolicy::m_TotalTimeout] : hpf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String IAPManagerV5/SubscriptionInfo::k__BackingField] : hpg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean IAPManagerV5/SubscriptionInfo::k__BackingField] : hph -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.DateTime IAPManagerV5/SubscriptionInfo::k__BackingField] : hpi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.DateTime IAPManagerV5/SubscriptionInfo::k__BackingField] : hpj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter IAPManagerV5/d__56::<>u__1] : hpk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass86_0 IAPManagerV5/d__86::<>8__1] : hpl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] GooglePayCheckInfo IAPManagerV5/d__86::5__2] : hpm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter`1 IAPManagerV5/d__86::<>u__1] : hpn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5/d__97::<>1__state] : hpo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object IAPManagerV5/d__97::<>2__current] : hpp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass97_0 IAPManagerV5/d__97::<>8__1] : hpq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5/d__75::<>1__state] : hpr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object IAPManagerV5/d__75::<>2__current] : hps -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5/d__111::<>1__state] : hpt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object IAPManagerV5/d__111::<>2__current] : hpu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5/d__73::<>1__state] : hpv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object IAPManagerV5/d__73::<>2__current] : hpw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String IAPManagerV5/d__64::5__2] : hpx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String IAPManagerV5/d__64::5__3] : hpy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter`1 IAPManagerV5/d__64::<>u__1] : hpz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter IAPManagerV5/d__64::<>u__2] : hqa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter IAPManagerV5/d__55::<>u__1] : hqb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5/d__77::<>1__state] : hqc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object IAPManagerV5/d__77::<>2__current] : hqd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String IAPManagerV5/d__84::5__2] : hqe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter`1 IAPManagerV5/d__84::<>u__1] : hqf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5/d__114::<>1__state] : hqg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object IAPManagerV5/d__114::<>2__current] : hqh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5/d__94::<>1__state] : hqi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object IAPManagerV5/d__94::<>2__current] : hqj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5/d__110::<>1__state] : hqk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object IAPManagerV5/d__110::<>2__current] : hql -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter`1 IAPManagerV5/d__82::<>u__1] : hqm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5/d__117::<>1__state] : hqn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object IAPManagerV5/d__117::<>2__current] : hqo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5/d__95::<>1__state] : hqp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object IAPManagerV5/d__95::<>2__current] : hqq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass95_0 IAPManagerV5/d__95::<>8__1] : hqr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String IAPManagerV5/d__95::5__2] : hqs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String IAPManagerV5/d__95::5__3] : hqt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter IAPManagerV5/d__85::<>u__1] : hqu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter IAPManagerV5/d__81::<>u__1] : hqv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5/d__96::<>1__state] : hqw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object IAPManagerV5/d__96::<>2__current] : hqx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5/d__72::<>1__state] : hqy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object IAPManagerV5/d__72::<>2__current] : hqz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] IAPManagerV5/<>c__DisplayClass72_0 IAPManagerV5/d__72::<>8__1] : hra -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String IAPManagerV5/d__72::5__2] : hrb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String IAPManagerV5/d__72::5__3] : hrc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] IAPManagerV5 IAPManagerV5::_Instance] : hrd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Purchasing.StoreController IAPManagerV5::m_StoreController] : hre -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean IAPManagerV5::m_IsInitialized] : hrf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5::MAX_RECONNECT_ATTEMPTS] : hrg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5::m_ReconnectAttempts] : hrh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.DateTime IAPManagerV5::m_LastReconnectTime] : hri -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 IAPManagerV5::SUBSCRIPTION_CHECK_INTERVAL] : hrj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 IAPManagerV5::m_CachedProducts] : hrk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String IAPManagerV5::m_packageName] : hrl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.HashSet`1 IAPManagerV5::m_ProcessedTransactions] : hrm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 IAPManagerV5::m_SubscriptionCache] : hrn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 IAPManagerV5::OnInitialized] : hro -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 IAPManagerV5::OnStoreDisconnected] : hrp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1> IAPManagerV5::OnProductsFetched] : hrq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 IAPManagerV5::OnProductsFetchFailed] : hrr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 IAPManagerV5::OnPurchasePending] : hrs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`2 IAPManagerV5::OnPurchaseConfirmed] : hrt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 IAPManagerV5::OnPurchaseFailed] : hru -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 IAPManagerV5::OnPurchaseDeferred] : hrv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 IAPManagerV5::OnPurchasesFetched] : hrw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 IAPManagerV5::OnPurchasesFetchFailed] : hrx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 IAPManagerV5::OnCheckEntitlement] : hry -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`2 IAPManagerV5::OnSubscriptionStatusChanged] : hrz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3Internal.ES3Reflection/ES3ReflectedMethod ES3Types.ES3ConcurrentDictionaryType::readMethod] : hsa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3Internal.ES3Reflection/ES3ReflectedMethod ES3Types.ES3ConcurrentDictionaryType::readIntoMethod] : hsb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3Internal.ES3Reflection/ES3ReflectedMethod ES3Types.ES3DictionaryType::readMethod] : hsc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3Internal.ES3Reflection/ES3ReflectedMethod ES3Types.ES3DictionaryType::readIntoMethod] : hsd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3Internal.ES3Reflection/ES3ReflectedMethod ES3Types.ES3TupleType::readMethod] : hse -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3Internal.ES3Reflection/ES3ReflectedMethod ES3Types.ES3TupleType::readIntoMethod] : hsf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Types.ES3ComponentType::gameObjectPropertyName] : hsg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Type ES3Types.ES3Type_enum::underlyingType] : hsh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Types.ES3Type_GameObject::prefabPropertyName] : hsi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Types.ES3Type_GameObject::transformPropertyName] : hsj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Internal.ES3Debug::disableInfoMsg] : hsk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Internal.ES3Debug::disableWarningMsg] : hsl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Internal.ES3Debug::disableErrorMsg] : hsm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Char ES3Internal.ES3Debug::indentChar] : hsn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Internal.AESEncryptionAlgorithm::ivSize] : hso -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Internal.AESEncryptionAlgorithm::keySize] : hsp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Internal.AESEncryptionAlgorithm::pwIterations] : hsq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.IO.Stream ES3Internal.UnbufferedCryptoStream::stream] : hsr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean ES3Internal.UnbufferedCryptoStream::isReadStream] : hss -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Internal.UnbufferedCryptoStream::password] : hst -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Internal.UnbufferedCryptoStream::bufferSize] : hsu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3Internal.EncryptionAlgorithm ES3Internal.UnbufferedCryptoStream::alg] : hsv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean ES3Internal.UnbufferedCryptoStream::disposed] : hsw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Internal.ES3IO::persistentDataPath] : hsx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Internal.ES3IO::dataPath] : hsy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Internal.ES3IO::backupFileSuffix] : hsz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Internal.ES3IO::temporaryFileSuffix] : hta -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Internal.ES3ReferenceMgrBase::_lock] : htb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3Internal.ES3ReferenceMgrBase ES3Internal.ES3ReferenceMgrBase::_current] : htc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.HashSet`1 ES3Internal.ES3ReferenceMgrBase::mgrs] : htd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Random ES3Internal.ES3ReferenceMgrBase::rng] : hte -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3Internal.ES3RefIdDictionary ES3Internal.ES3ReferenceMgrBase::_refId] : htf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Reflection.FieldInfo ES3Internal.ES3Reflection/ES3ReflectedMember::fieldInfo] : htg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Reflection.PropertyInfo ES3Internal.ES3Reflection/ES3ReflectedMember::propertyInfo] : hth -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Reflection.MethodInfo ES3Internal.ES3Reflection/ES3ReflectedMethod::method] : hti -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Reflection.Assembly[] ES3Internal.ES3Reflection::_assemblies] : htj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Char ES3Internal.ES3JSONReader::endOfStreamChar] : htk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean ES3Internal.ES3FileStream::isDisposed] : htl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Internal.ES3PlayerPrefsStream::path] : htm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean ES3Internal.ES3PlayerPrefsStream::append] : htn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean ES3Internal.ES3PlayerPrefsStream::isWriteStream] : hto -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean ES3Internal.ES3PlayerPrefsStream::isDisposed] : htp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Internal.ES3TypeMgr::_lock] : htq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3Types.ES3Type ES3Internal.ES3TypeMgr::lastAccessedType] : htr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 ES3Internal.ES3WebClass/d__19::<>1__state] : hts -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object ES3Internal.ES3WebClass/d__19::<>2__current] : htt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Internal.ES3WebClass::url] : htu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Internal.ES3WebClass::apiKey] : htv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1> ES3Internal.ES3WebClass::formData] : htw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest ES3Internal.ES3WebClass::_webRequest] : htx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String ES3Internal.ES3Binary::ObjectTerminator] : hty -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 ES3Internal.ES3Binary::IdToType] : htz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 ES3Internal.ES3Binary::TypeToId] : hua -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] ES3File ES3Internal.ES3CacheWriter::es3File] : hub -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.IO.StreamWriter ES3Internal.ES3JSONWriter::baseWriter] : huc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean ES3Internal.ES3JSONWriter::isFirstProperty] : hud -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2> SGModule.NetKit.ErrorLogKit::_statusDic] : hue -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.NetKit.ErrorLogKit::_isErrorLoggingEnabled] : huf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.NetKit.HeartbeatKit/d__7::<>1__state] : hug -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.NetKit.HeartbeatKit/d__7::<>2__current] : huh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Coroutine SGModule.NetKit.HeartbeatKit::_heartbeatCoroutine] : hui -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.NetKit.HeartbeatKit::HeartbeatForegroundTime] : huj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int64 SGModule.NetKit.HeartbeatKit::_nextHeartbeatTime] : huk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Nullable`1 SGModule.NetKit.HeartbeatKit::_lastRemainingInterval] : hul -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.NetKit.LoginKit/d__12::<>1__state] : hum -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.NetKit.LoginKit/d__12::<>2__current] : hun -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.NetKit.LoginKit/d__11::<>1__state] : huo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.NetKit.LoginKit/d__11::<>2__current] : hup -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.NetKit.LoginKit/d__11::5__2] : huq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.NetKit.LoginKit/d__10::<>1__state] : hur -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.NetKit.LoginKit/d__10::<>2__current] : hus -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.NetKit.LoginKit::_channel] : hut -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.NetKit.LoginKit::_sim] : huu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.NetKit.LoginKit::_loginSuccess] : huv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.NetKit.LoginModel SGModule.NetKit.LoginKit::_loginModel] : huw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.NetKit.LoginKit::_isFirstLoginSuccess] : hux -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.NetKit.RequestLoginData SGModule.NetKit.LoginKit::_requestLoginData] : huy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.NetKit.LoginKit::_packName] : huz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.HashSet`1 SGModule.NetKit.TrackEvent::_registeredStaticEvents] : hva -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.HashSet`1 SGModule.NetKit.TrackEvent::_registeredDynamicEventPrefixes] : hvb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.NetKit.TrackKit/d__4::<>1__state] : hvc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.NetKit.TrackKit/d__4::<>2__current] : hvd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.NetKit.TrackKit::_traceID] : hve -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 SGModule.NetKit.TrackKit::_statusDic] : hvf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Queue`1 SGModule.NetKit.TrackKit::_waitLoginSuccessTrackQueue] : hvg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 SGModule.NetKit.TrackKit::_loginFunnelEventMap] : hvh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.HashSet`1 SGModule.NetKit.TrackProperty::_registeredStaticProperties] : hvi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.HashSet`1 SGModule.NetKit.TrackProperty::_registeredDynamicPropertyPrefixes] : hvj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.NetChecker/d__21::<>1__state] : hvk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.Net.NetChecker/d__21::<>2__current] : hvl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.NetChecker/d__22::<>1__state] : hvm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.Net.NetChecker/d__22::<>2__current] : hvn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 SGModule.Net.NetChecker/d__22::5__2] : hvo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.Net.NetChecker/d__22::5__3] : hvp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.Net.NetChecker/d__22::5__4] : hvq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.NetChecker/d__23::<>1__state] : hvr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.Net.NetChecker/d__23::<>2__current] : hvs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 SGModule.Net.NetChecker/d__23::5__2] : hvt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest SGModule.Net.NetChecker/d__23::5__3] : hvu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.NetChecker/d__24::<>1__state] : hvv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.Net.NetChecker/d__24::<>2__current] : hvw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.NetChecker/d__16::<>1__state] : hvx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.Net.NetChecker/d__16::<>2__current] : hvy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.Net.NetChecker/d__16::5__2] : hvz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.Net.NetChecker::WebRequestInterval] : hwa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.Net.NetChecker::PingInterval] : hwb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 SGModule.Net.NetChecker::_pingAddresses] : hwc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Coroutine SGModule.Net.NetChecker::_checkInternetCoroutine] : hwd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.Net.NetChecker::_checkInterval] : hwe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.Net.NetChecker::_isChecking] : hwf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.Net.NetChecker::_lastConnected] : hwg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.Net.NetChecker::_preferredUrl] : hwh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Nullable`1 SGModule.Net.NetChecker::k__BackingField] : hwi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.NetCore`1/d__14`1::<>1__state] : hwj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.Net.NetCore`1/d__14`1::<>2__current] : hwk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.NetCore`1/d__16`1::<>1__state] : hwl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.Net.NetCore`1/d__16`1::<>2__current] : hwm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.Net.NetCore`1/<>c__DisplayClass16_0`1 SGModule.Net.NetCore`1/d__16`1::<>8__1] : hwn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.Net.NetCore`1/<>c__DisplayClass16_1`1 SGModule.Net.NetCore`1/d__16`1::<>8__2] : hwo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.Net.ResponseData`1 SGModule.Net.NetCore`1/d__16`1::5__2] : hwp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.NetCore`1/d__17`1::<>1__state] : hwq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.Net.NetCore`1/d__17`1::<>2__current] : hwr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.NetCore`1/d__17`1::5__2] : hws -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest SGModule.Net.NetCore`1/d__17`1::5__3] : hwt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.NetCore`1::Timeout] : hwu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.Net.NetCoreModel SGModule.Net.NetCore`1::_config] : hwv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.Net.NetCore`1::_isInit] : hww -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.NetCore`1::_requestCounter] : hwx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.Net.NetCore`1::_requestHost] : hwy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int64 SGModule.Net.ServerClock::_timeDifference] : hwz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.TokenManager/d__23::<>1__state] : hxa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.Net.TokenManager/d__23::<>2__current] : hxb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.Net.TokenManager/<>c__DisplayClass23_0 SGModule.Net.TokenManager/d__23::<>8__1] : hxc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.TokenManager/d__26::<>1__state] : hxd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.Net.TokenManager/d__26::<>2__current] : hxe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.TokenManager/d__25::<>1__state] : hxf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.Net.TokenManager/d__25::<>2__current] : hxg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.Net.TokenManager/<>c__DisplayClass25_0 SGModule.Net.TokenManager/d__25::<>8__1] : hxh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.TokenManager/d__25::5__2] : hxi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.TokenManager/d__24::<>1__state] : hxj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.Net.TokenManager/d__24::<>2__current] : hxk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.TokenManager/d__24::5__2] : hxl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.Net.TokenManager::JarvisTokenKey] : hxm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.Net.TokenManager::JarvisTokenExpiresAtKey] : hxn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.Net.TokenManager::MinRefreshInterval] : hxo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.TokenManager::MaxTokenRecordCount] : hxp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 SGModule.Net.TokenManager::_tokenRecord] : hxq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int64 SGModule.Net.TokenManager::_cachedExpiresAt] : hxr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.Net.TokenManager::_cachedToken] : hxs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.Net.TokenManager::_isReauthenticating] : hxt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.Net.TokenManager::_isRefreshing] : hxu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.Net.TokenManager::_lastRefreshTime] : hxv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.Net.TokenManager/ReauthenticateDelegate SGModule.Net.TokenManager::_reauthenticateHandler] : hxw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.Net.TokenManager/RefreshTokenDelegate SGModule.Net.TokenManager::_refreshTokenHandler] : hxx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter SGModule.Net.WebSocketService/d__23::<>u__1] : hxy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter SGModule.Net.WebSocketService/d__10::<>u__1] : hxz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter SGModule.Net.WebSocketService/d__8::<>u__1] : hya -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter SGModule.Net.WebSocketService/d__6::<>u__1] : hyb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.WebSocketService/d__28::5__2] : hyc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Net.WebSocketService/d__28::5__3] : hyd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Runtime.CompilerServices.TaskAwaiter SGModule.Net.WebSocketService/d__28::<>u__1] : hye -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.Net.WebSocketService::OffLineDecisionTime] : hyf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.Net.WebSocketService::_bindToken] : hyg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.Net.WebSocketService::_offlineDuration] : hyh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.Net.WebSocketService::_url] : hyi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] NativeWebSocket.WebSocket SGModule.Net.WebSocketService::_webSocket] : hyj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action SGModule.Net.WebSocketService::OnOpenAction] : hyk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 SGModule.Net.WebSocketService::OnMessageAction] : hyl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 SGModule.Net.WebSocketService::OnCloseAction] : hym -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 SGModule.Net.WebSocketService::OnErrorAction] : hyn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 SGModule.MarkdownKit.MarkdownDataMgr::_markdownData] : hyo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.MarkdownKit.MarkdownKit/d__2::<>1__state] : hyp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.MarkdownKit.MarkdownKit/d__2::<>2__current] : hyq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest SGModule.MarkdownKit.MarkdownKit/d__2::5__2] : hyr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.GooglePay.GooglePayManager/d__19::<>1__state] : hys -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.GooglePay.GooglePayManager/d__19::<>2__current] : hyt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.GooglePay.GooglePayManager/d__19::5__2] : hyu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.GooglePay.GooglePayManager/d__19::5__3] : hyv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.GooglePay.GooglePayManager/d__38::<>1__state] : hyw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.GooglePay.GooglePayManager/d__38::<>2__current] : hyx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.GooglePay.GooglePayManager/d__30::<>1__state] : hyy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.GooglePay.GooglePayManager/d__30::<>2__current] : hyz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.GooglePay.GooglePayManager::SubscriptionExpiresTime] : hza -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Purchasing.IStoreController SGModule.GooglePay.GooglePayManager::_storeController] : hzb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Purchasing.IExtensionProvider SGModule.GooglePay.GooglePayManager::_extensionProvider] : hzc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Purchasing.IGooglePlayStoreExtensions SGModule.GooglePay.GooglePayManager::_googleExtension] : hzd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Purchasing.IAppleExtensions SGModule.GooglePay.GooglePayManager::_appleExtension] : hze -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 SGModule.GooglePay.GooglePayManager::_failedCallback] : hzf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`2 SGModule.GooglePay.GooglePayManager::_successCallback] : hzg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2> SGModule.GooglePay.GooglePayManager::_products] : hzh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.GooglePay.GooglePayData SGModule.GooglePay.GooglePayManager::_payData] : hzi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.GooglePay.GooglePayManager::_packageName] : hzj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.GooglePay.GooglePayManager::_lastPayAttemptTime] : hzk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 SGModule.GooglePay.GooglePayManager::_productConfigs] : hzl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 SGModule.GooglePay.GooglePayManager::_innerData] : hzm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Coroutine SGModule.GooglePay.GooglePayManager::_payDataCheckCoroutine] : hzn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.GooglePay.GooglePayManager::_retryCount] : hzo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.GooglePay.GooglePayManager::MaxRetryCount] : hzp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.GooglePay.GooglePayManager::RetryDelay] : hzq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Type SGModule.DataStorage.DataKeyInfo::k__BackingField] : hzr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.DataStorage.DataKeyInfo::k__BackingField] : hzs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 SGModule.DataStorage.DataKeyDic::_keyDic] : hzt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.DataStorage.DataManager/d__13::<>1__state] : hzu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.DataStorage.DataManager/d__13::<>2__current] : hzv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.DataStorage.DataManager/d__13::5__2] : hzw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.WaitForSeconds SGModule.DataStorage.DataManager/d__13::5__3] : hzx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.DataStorage.DataManager::InitialAutoSaveInterval] : hzy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.DataStorage.DataManager::SaveThreshold] : hzz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.DataStorage.DataStorage`1 SGModule.DataStorage.DataManager::_dataVersion] : iaa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 SGModule.DataStorage.DataManager::_cache] : iab -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.HashSet`1 SGModule.DataStorage.DataManager::_modifiedKeys] : iac -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 SGModule.DataStorage.DataManager::_cloudData] : iad -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.DataStorage.DataManager::_hasUnsavedChanges] : iae -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`3 SGModule.DataStorage.DataManager::_saveCallback] : iaf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.DataStorage.DataManager::_saveCallCount] : iag -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single SGModule.DataStorage.DataManager::_timer] : iah -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] T SGModule.DataStorage.DataStorage`1::_defaultValue] : iai -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.DataStorage.DataStorage`1::_key] : iaj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`2 SGModule.DataStorage.DataStorage`1::_onChange] : iak -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 SGModule.ConfigLoader.ConfigDataManager::_configData] : ial -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.HashSet`1 SGModule.ConfigLoader.ConfigDataManager::_usedKeys] : iam -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 SGModule.ConfigLoader.ConfigDataManager::_jsonDictionary] : ian -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.ConfigLoader.ConfigFileManager::MaxErrorCount] : iao -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.ConfigLoader.ConfigFileManager::ConfigFileNameKey] : iap -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.ConfigLoader.ConfigFileManager::FirstLaunchKey] : iaq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.ConfigLoader.ConfigFileManager::_initConfigErrorCount] : iar -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.ConfigLoader.ConfigInitOptions::k__BackingField] : ias -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.ConfigLoader.ConfigInitOptions::k__BackingField] : iat -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 SGModule.ConfigLoader.ConfigInitOptions::k__BackingField] : iau -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`2 SGModule.ConfigLoader.ConfigInitOptions::k__BackingField] : iav -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action SGModule.ConfigLoader.ConfigInitOptions::k__BackingField] : iaw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigDataManager SGModule.ConfigLoader.ConfigLoader::_dataManager] : iax -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigFileManager SGModule.ConfigLoader.ConfigLoader::_fileManager] : iay -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] SGModule.ConfigLoader.ConfigInitOptions SGModule.ConfigLoader.ConfigLoader::_initOptions] : iaz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.ConfigLoader.ConfigLoader::_isConfigLoaded] : iba -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.ConfigLoader.FileNetworkManager/d__8::<>1__state] : ibb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.ConfigLoader.FileNetworkManager/d__8::<>2__current] : ibc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.ResourceManagement.AsyncOperations.AsyncOperationHandle`1> SGModule.ConfigLoader.FileNetworkManager/d__8::5__2] : ibd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.ConfigLoader.FileNetworkManager/d__8::5__3] : ibe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.ResourceManagement.AsyncOperations.AsyncOperationHandle`1 SGModule.ConfigLoader.FileNetworkManager/d__8::5__4] : ibf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.ConfigLoader.FileNetworkManager/d__9::<>1__state] : ibg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.ConfigLoader.FileNetworkManager/d__9::<>2__current] : ibh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest SGModule.ConfigLoader.FileNetworkManager/d__9::5__2] : ibi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.ConfigLoader.FileNetworkManager/d__11::<>1__state] : ibj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object SGModule.ConfigLoader.FileNetworkManager/d__11::<>2__current] : ibk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.ConfigLoader.FileNetworkManager/d__11::5__2] : ibl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Networking.UnityWebRequest SGModule.ConfigLoader.FileNetworkManager/d__11::5__3] : ibm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.ConfigLoader.FileNetworkManager::FolderLabel] : ibn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.ConfigLoader.FileNetworkManager::_configFolderPath] : ibo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.ConfigLoader.ConfigKeyAttribute::k__BackingField] : ibp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.ConfigLoader.ConfigKeyAttribute::k__BackingField] : ibq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`2 SGModule.ConfigLoader.ParseConfigOptions::k__BackingField] : ibr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`2 SGModule.ConfigLoader.ParseConfigOptions::k__BackingField] : ibs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action SGModule.ConfigLoader.ParseConfigOptions::k__BackingField] : ibt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.Common.ConfigManager::GameConfigFilePath] : ibu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.Common.ConfigManager::NetworkConfigFilePath] : ibv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] GameConfig SGModule.Common.ConfigManager::k__BackingField] : ibw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] NetworkConfig SGModule.Common.ConfigManager::k__BackingField] : ibx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.Common.Helper.DeviceHelper::Idfv] : iby -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.Common.Helper.ModuleLogger::_isEnabled] : ibz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.Common.Helper.ModuleLogger::_label] : ica -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Random SGModule.Common.Helper.RandomHelper::_random] : icb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] Newtonsoft.Json.JsonSerializerSettings SGModule.Common.Helper.SerializeHelper::_defaultUseJsonSettings] : icc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] Newtonsoft.Json.JsonSerializerSettings SGModule.Common.Helper.SerializeHelper::_jsonIndentedSettings] : icd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String SGModule.Common.Extensions.ObjectExtensionsTest/Person::k__BackingField] : ice -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 SGModule.Common.Extensions.ObjectExtensionsTest/Person::k__BackingField] : icf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] T SGModule.Common.Base.SingletonMonoBehaviour`1::_instance] : icg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean SGModule.Common.Base.SingletonMonoBehaviour`1::IsInitComplete] : ich -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.GameObject SGModule.Common.Base.SingletonMonoBehaviour`1::_singletonParent] : ici -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String MiniJSON.Json/Parser::WORD_BREAK] : icj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.IO.StringReader MiniJSON.Json/Parser::json] : ick -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Text.StringBuilder MiniJSON.Json/Serializer::builder] : icl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.CaptureCamera FairyGUI.CaptureCamera::_main] : icm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.CaptureCamera::_layer] : icn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.CaptureCamera::_hiddenLayer] : ico -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.Container FairyGUI.Container/DescendantsEnumerator::_root] : icp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.Container FairyGUI.Container/DescendantsEnumerator::_com] : icq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.DisplayObject FairyGUI.Container/DescendantsEnumerator::_current] : icr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.Container/DescendantsEnumerator::_index] : ics -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.Container/DescendantsEnumerator::_forward] : ict -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action FairyGUI.Container::onUpdate] : icu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.Container::_children] : icv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.DisplayObject FairyGUI.Container::_mask] : icw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Nullable`1 FairyGUI.Container::_clipRect] : icx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.Container::_descendants] : icy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.Container::_panelOrder] : icz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.DisplayObject FairyGUI.Container::_lastFocus] : ida -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.Container FairyGUI.DisplayObject::k__BackingField] : idb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.GameObject FairyGUI.DisplayObject::k__BackingField] : idc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Transform FairyGUI.DisplayObject::k__BackingField] : idd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.NGraphics FairyGUI.DisplayObject::k__BackingField] : ide -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.NGraphics FairyGUI.DisplayObject::k__BackingField] : idf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action FairyGUI.DisplayObject::onPaint] : idg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.DisplayObject::_visible] : idh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.DisplayObject::_touchable] : idi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector2 FairyGUI.DisplayObject::_pivot] : idj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3 FairyGUI.DisplayObject::_pivotOffset] : idk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3 FairyGUI.DisplayObject::_rotation] : idl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector2 FairyGUI.DisplayObject::_skew] : idm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.DisplayObject::_renderingOrder] : idn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.DisplayObject::_alpha] : ido -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.DisplayObject::_grayed] : idp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.BlendMode FairyGUI.DisplayObject::_blendMode] : idq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.IFilter FairyGUI.DisplayObject::_filter] : idr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Transform FairyGUI.DisplayObject::_home] : ids -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String FairyGUI.DisplayObject::_cursor] : idt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.DisplayObject::_perspective] : idu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.DisplayObject::_focalLength] : idv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3 FairyGUI.DisplayObject::_pixelPerfectAdjustment] : idw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.DisplayObject::_checkPixelPerfect] : idy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onClick] : idz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onRightClick] : iea -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onTouchBegin] : ieb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onTouchMove] : iec -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onTouchEnd] : ied -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onRollOver] : iee -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onRollOut] : ief -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onMouseWheel] : ieg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onAddedToStage] : ieh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onRemovedFromStage] : iei -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onKeyDown] : iej -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onClickLink] : iek -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onFocusIn] : iel -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.DisplayObject::_onFocusOut] : iem -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.DisplayObject::_paintingMode] : ien -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.DisplayObject/PaintingInfo FairyGUI.DisplayObject::_paintingInfo] : ieo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Rect FairyGUI.DisplayObject::_contentRect] : iep -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.NGraphics/VertexMatrix FairyGUI.DisplayObject::_vertexMatrix] : ieq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.DisplayObject/Flags FairyGUI.DisplayObject::_flags] : ier -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single[] FairyGUI.DisplayObject::_batchingBounds] : ies -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.UInt32 FairyGUI.DisplayObject::_gInstanceCounter] : iet -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.HideFlags FairyGUI.DisplayObject::hideFlags] : ieu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Transform FairyGUI.DisplayObject::uiCacheRoot] : iev -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 FairyGUI.GoWrapper::onUpdate] : iew -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.GameObject FairyGUI.GoWrapper::_wrapTarget] : iex -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.GoWrapper::_renderers] : iey -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 FairyGUI.GoWrapper::_materialsBackup] : iez -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Canvas FairyGUI.GoWrapper::_canvas] : ifa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.GoWrapper::_cloneMaterial] : ifb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.GoWrapper::_shouldCloneMaterial] : ifc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.GoWrapper::helperTransformList] : ifd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.GoWrapper::helperMaterials] : ife -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2> FairyGUI.HitTestContext::raycastHits] : iff -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.PixelHitTestData FairyGUI.PixelHitTest::_data] : ifg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Nullable`1 FairyGUI.Image::_scale9Grid] : ifh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.Image::_scaleByTile] : ifi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector2 FairyGUI.Image::_textureScale] : ifj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.Image::_tileGridIndice] : ifk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.FillMesh FairyGUI.Image::_fillMesh] : ifl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32[] FairyGUI.Image::TRIANGLES_9_GRID] : ifm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32[] FairyGUI.Image::gridTileIndice] : ifn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single[] FairyGUI.Image::gridX] : ifo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single[] FairyGUI.Image::gridY] : ifp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single[] FairyGUI.Image::gridTexX] : ifq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single[] FairyGUI.Image::gridTexY] : ifr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 FairyGUI.MaterialManager::onCreateNewMaterial] : ifs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.NTexture FairyGUI.MaterialManager::_texture] : ift -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Shader FairyGUI.MaterialManager::_shader] : ifu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.MaterialManager::_addKeywords] : ifv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2> FairyGUI.MaterialManager::_materials] : ifw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.MaterialManager::_combineTexture] : ifx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.MaterialManager::internalKeywordsCount] : ify -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String[] FairyGUI.MaterialManager::internalKeywords] : ifz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32[] FairyGUI.EllipseMesh::SECTOR_CENTER_TRIANGLES] : iga -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.LineMesh::points] : igb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.LineMesh::ts] : igc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.PolygonMesh::sRestIndices] : igd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.VertexBuffer::_alphaInVertexColor] : ige -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.VertexBuffer::_isArbitraryQuad] : igf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Stack`1 FairyGUI.VertexBuffer::_pool] : igg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.VertexBuffer::helperV4List] : igh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.MovieClip/Frame[] FairyGUI.MovieClip::_frames] : igi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.MovieClip::_frameCount] : igj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.MovieClip::_frame] : igk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.MovieClip::_playing] : igl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.MovieClip::_start] : igm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.MovieClip::_end] : ign -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.MovieClip::_times] : igo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.MovieClip::_endAt] : igp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.MovieClip::_status] : igq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.MovieClip::_frameElapsed] : igr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.MovieClip::_reversed] : igs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.MovieClip::_repeatedCount] : igt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.TimerCallback FairyGUI.MovieClip::_timerDelegate] : igu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.MovieClip::_onPlayEnd] : igv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.GameObject FairyGUI.NGraphics::k__BackingField] : igw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.MeshFilter FairyGUI.NGraphics::k__BackingField] : igx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.MeshRenderer FairyGUI.NGraphics::k__BackingField] : igy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Mesh FairyGUI.NGraphics::k__BackingField] : igz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action FairyGUI.NGraphics::meshModifier] : iha -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.NTexture FairyGUI.NGraphics::_texture] : ihb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String FairyGUI.NGraphics::_shader] : ihc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Material FairyGUI.NGraphics::_material] : ihd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.NGraphics::_customMatarial] : ihe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.MaterialManager FairyGUI.NGraphics::_manager] : ihf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String[] FairyGUI.NGraphics::_shaderKeywords] : ihg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.NGraphics::_materialFlags] : ihh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.IMeshFactory FairyGUI.NGraphics::_meshFactory] : ihi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.NGraphics::_alpha] : ihj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Color FairyGUI.NGraphics::_color] : ihk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.NGraphics::_meshDirty] : ihl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Rect FairyGUI.NGraphics::_contentRect] : ihm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.FlipType FairyGUI.NGraphics::_flip] : ihn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.NGraphics/VertexMatrix FairyGUI.NGraphics::_vertexMatrix] : iho -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.NGraphics::hasAlphaBackup] : ihp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.NGraphics::_alphaBackup] : ihq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.NGraphics::_maskFlag] : ihr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.NGraphics/StencilEraser FairyGUI.NGraphics::_stencilEraser] : ihs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.MaterialPropertyBlock FairyGUI.NGraphics::_propertyBlock] : iht -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.NGraphics::_blockUpdated] : ihu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 FairyGUI.NTexture::CustomDestroyMethod] : ihv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 FairyGUI.NTexture::onSizeChanged] : ihw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action`1 FairyGUI.NTexture::onRelease] : ihx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Texture FairyGUI.NTexture::_nativeTexture] : ihy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Texture FairyGUI.NTexture::_alphaTexture] : ihz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Rect FairyGUI.NTexture::_region] : iia -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector2 FairyGUI.NTexture::_offset] : iib -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector2 FairyGUI.NTexture::_originalSize] : iic -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.NTexture FairyGUI.NTexture::_root] : iid -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 FairyGUI.NTexture::_materialManagers] : iie -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.NTexture FairyGUI.NTexture::_empty] : iif -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.Stage::k__BackingField] : iig -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action FairyGUI.Stage::beforeUpdate] : iih -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action FairyGUI.Stage::afterUpdate] : iii -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.DisplayObject FairyGUI.Stage::_touchTarget] : iij -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.DisplayObject FairyGUI.Stage::_focused] : iik -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.InputTextField FairyGUI.Stage::_lastInput] : iil -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.Stage::_IMEComposite] : iim -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.UpdateContext FairyGUI.Stage::_updateContext] : iin -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.Stage::_rollOutChain] : iio -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.Stage::_rollOverChain] : iip -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.TouchInfo[] FairyGUI.Stage::_touches] : iiq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.Stage::_touchCount] : iir -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector2 FairyGUI.Stage::_touchPosition] : iis -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.Stage::_frameGotHitTarget] : iit -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.Stage::_frameGotTouchPosition] : iiu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.Stage::_customInput] : iiv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector2 FairyGUI.Stage::_customInputPos] : iiw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.Stage::_customInputButtonDown] : iix -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.AudioSource FairyGUI.Stage::_audio] : iiy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.Stage::_toCollectTextures] : iiz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.Stage::_onStageResized] : ija -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.Stage::_focusOutChain] : ijb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.Stage::_focusInChain] : ijc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.Stage::_focusHistory] : ijd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.Container FairyGUI.Stage::_nextFocus] : ije -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 FairyGUI.Stage::_cursors] : ijf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String FairyGUI.Stage::_currentCursor] : ijg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.Stage::_touchScreen] : ijh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.Stage::_clickTestThreshold] : iji -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.IKeyboard FairyGUI.Stage::_keyboard] : ijj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.Stage FairyGUI.Stage::_inst] : ijk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.Stage::k__BackingField] : ijl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.Stage::k__BackingField] : ijm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.Stage::sTempList1] : ijn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.Stage::sTempList2] : ijo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 FairyGUI.Stage::sTempDict] : ijp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.TouchInfo::sHelperChain] : ijq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.StageCamera::screenWidth] : ijr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.StageCamera::screenHeight] : ijs -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.StageCamera::isMain] : ijt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Display FairyGUI.StageCamera::_display] : iju -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.BaseFont::textRebuildFlag] : ijv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.BaseFont::SupScale] : ijw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.BaseFont::SupOffset] : ijx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 FairyGUI.BitmapFont::_dict] : ijy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.BitmapFont/BMGlyph FairyGUI.BitmapFont::_glyph] : ijz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.BitmapFont::_scale] : ika -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3 FairyGUI.BitmapFont::bottomLeft] : ikb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3 FairyGUI.BitmapFont::topLeft] : ikc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3 FairyGUI.BitmapFont::topRight] : ikd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3 FairyGUI.BitmapFont::bottomRight] : ike -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Color32[] FairyGUI.BitmapFont::vertexColors] : ikf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Font FairyGUI.DynamicFont::_font] : ikg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.DynamicFont::_size] : ikh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.DynamicFont::_ascent] : iki -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.DynamicFont::_lineHeight] : ikj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.DynamicFont::_scale] : ikk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.TextFormat FairyGUI.DynamicFont::_format] : ikl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.FontStyle FairyGUI.DynamicFont::_style] : ikm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.DynamicFont::_boldVertice] : ikn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.CharacterInfo FairyGUI.DynamicFont::_char] : iko -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.CharacterInfo FairyGUI.DynamicFont::_lineChar] : ikp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.DynamicFont::_gotLineChar] : ikq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3 FairyGUI.DynamicFont::bottomLeft] : ikr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3 FairyGUI.DynamicFont::topLeft] : iks -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3 FairyGUI.DynamicFont::topRight] : ikt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3 FairyGUI.DynamicFont::bottomRight] : iku -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector2 FairyGUI.DynamicFont::uvBottomLeft] : ikv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector2 FairyGUI.DynamicFont::uvTopLeft] : ikw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector2 FairyGUI.DynamicFont::uvTopRight] : ikx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector2 FairyGUI.DynamicFont::uvBottomRight] : iky -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Color32[] FairyGUI.DynamicFont::vertexColors] : ikz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3[] FairyGUI.DynamicFont::BOLD_OFFSET] : ila -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.InputTextField::k__BackingField] : ilb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.InputTextField::k__BackingField] : ilc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.InputTextField::k__BackingField] : ild -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.InputTextField::k__BackingField] : ile -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.InputTextField::k__BackingField] : ilf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.InputTextField::k__BackingField] : ilg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String FairyGUI.InputTextField::_text] : ilh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String FairyGUI.InputTextField::_restrict] : ili -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Text.RegularExpressions.Regex FairyGUI.InputTextField::_restrictPattern] : ilj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.InputTextField::_displayAsPassword] : ilk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String FairyGUI.InputTextField::_promptText] : ill -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String FairyGUI.InputTextField::_decodedPromptText] : ilm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.InputTextField::_border] : iln -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.InputTextField::_corner] : ilo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Color FairyGUI.InputTextField::_borderColor] : ilp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Color FairyGUI.InputTextField::_backgroundColor] : ilq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.InputTextField::_editable] : ilr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.InputTextField::_editing] : ils -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.InputTextField::_caretPosition] : ilt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.InputTextField::_selectionStart] : ilu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.InputTextField::_composing] : ilv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Char FairyGUI.InputTextField::_highSurrogateChar] : ilw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String FairyGUI.InputTextField::_textBeforeEdit] : ilx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.InputTextField::_onChanged] : ily -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventListener FairyGUI.InputTextField::_onSubmit] : ilz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.Shape FairyGUI.InputTextField::_caret] : ima -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.SelectionShape FairyGUI.InputTextField::_selectionShape] : imb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.InputTextField::_nextBlink] : imc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.InputTextField::GUTTER_X] : imd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.InputTextField::GUTTER_Y] : ime -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.TextInputHistory FairyGUI.TextInputHistory::_inst] : imf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.TextInputHistory::_undoBuffer] : imh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.TextInputHistory::_redoBuffer] : imi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String FairyGUI.TextInputHistory::_currentText] : imj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.InputTextField FairyGUI.TextInputHistory::_textField] : imk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.TextInputHistory::_lock] : iml -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TextInputHistory::_changedFrame] : imm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.Utils.IHtmlPageContext FairyGUI.RichTextField::k__BackingField] : imn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.Utils.HtmlParseOptions FairyGUI.RichTextField::k__BackingField] : imo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 FairyGUI.RichTextField::k__BackingField] : imp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.TextField FairyGUI.RichTextField::k__BackingField] : imq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.RTLSupport::isCharsInitialized] : imr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 FairyGUI.RTLSupport::mapping] : ims -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.RTLSupport::listFinal] : imt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.RTLSupport::listRep] : imu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Text.StringBuilder FairyGUI.RTLSupport::sbRep] : imv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Text.StringBuilder FairyGUI.RTLSupport::sbN] : imw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Text.StringBuilder FairyGUI.RTLSupport::sbFinal] : imx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Text.StringBuilder FairyGUI.RTLSupport::sbReverse] : imy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.TextField/LineInfo::y2] : imz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Stack`1 FairyGUI.TextField/LineInfo::pool] : ina -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.VertAlignType FairyGUI.TextField::_verticalAlign] : inb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.TextFormat FairyGUI.TextField::_textFormat] : inc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.TextField::_input] : ind -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String FairyGUI.TextField::_text] : ine -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.AutoSizeType FairyGUI.TextField::_autoSize] : inf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.TextField::_wordWrap] : ing -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.TextField::_singleLine] : inh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.TextField::_html] : ini -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.RTLSupport/DirectionType FairyGUI.TextField::_textDirection] : inj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TextField::_maxWidth] : ink -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.TextField::_elements] : inl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.TextField::_lines] : inm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.TextField::_charPositions] : inn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.BaseFont FairyGUI.TextField::_font] : ino -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.TextField::_textWidth] : inp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.TextField::_textHeight] : inq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.TextField::_textChanged] : inr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.TextField::_yOffset] : ins -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.TextField::_fontSizeScale] : int -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.TextField::_renderScale] : inu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TextField::_fontVersion] : inv -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String FairyGUI.TextField::_parsedText] : inw -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TextField::_ellipsisCharIndex] : inx -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.RichTextField FairyGUI.TextField::_richTextField] : iny -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TextField::GUTTER_X] : inz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TextField::GUTTER_Y] : ioa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.TextField::IMAGE_BASELINE] : iob -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TextField::ELLIPSIS_LENGTH] : ioc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single[] FairyGUI.TextField::STROKE_OFFSET] : iod -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.TextField::sLineChars] : ioe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.TouchScreenKeyboard FairyGUI.TouchScreenKeyboard::_keyboard] : iof -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TypingEffect/d__19::<>1__state] : iog -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object FairyGUI.TypingEffect/d__19::<>2__current] : ioh -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.TextField FairyGUI.TypingEffect::_textField] : ioi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3[] FairyGUI.TypingEffect::_backupVerts] : ioj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.Vector3[] FairyGUI.TypingEffect::_vertices] : iok -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.TypingEffect::_stroke] : iol -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.TypingEffect::_shadow] : iom -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TypingEffect::_printIndex] : ion -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TypingEffect::_mainLayerStart] : ioo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TypingEffect::_strokeLayerStart] : iop -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TypingEffect::_strokeDrawDirs] : ioq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TypingEffect::_vertIndex] : ior -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.TypingEffect::_mainLayerVertCount] : ios -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.TypingEffect::_started] : iot -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Stack`1 FairyGUI.UpdateContext::_clipStack] : iou -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action FairyGUI.UpdateContext::OnBegin] : iov -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action FairyGUI.UpdateContext::OnEnd] : iow -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Action FairyGUI.UpdateContext::_tmpBegin] : iox -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventCallback0 FairyGUI.EventBridge::_callback0] : ioy -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventCallback1 FairyGUI.EventBridge::_callback1] : ioz -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventCallback1 FairyGUI.EventBridge::_captureCallback] : ipa -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.EventBridge::_dispatching] : ipb -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventDispatcher FairyGUI.EventContext::k__BackingField] : ipc -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Object FairyGUI.EventContext::k__BackingField] : ipd -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.InputEvent FairyGUI.EventContext::k__BackingField] : ipe -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.EventContext::_defaultPrevented] : ipf -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.EventContext::_stopsPropagation] : ipg -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Boolean FairyGUI.EventContext::_touchCapture] : iph -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.List`1 FairyGUI.EventContext::callChain] : ipi -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Stack`1 FairyGUI.EventContext::pool] : ipj -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 FairyGUI.EventDispatcher::_dic] : ipk -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.InputEvent FairyGUI.EventDispatcher::sCurrentInputEvent] : ipl -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] FairyGUI.EventBridge FairyGUI.EventListener::_bridge] : ipm -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.String FairyGUI.EventListener::_type] : ipn -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.InputEvent::k__BackingField] : ipo -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.InputEvent::k__BackingField] : ipp -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.KeyCode FairyGUI.InputEvent::k__BackingField] : ipq -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Char FairyGUI.InputEvent::k__BackingField] : ipr -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] UnityEngine.EventModifiers FairyGUI.InputEvent::k__BackingField] : ips -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Single FairyGUI.InputEvent::k__BackingField] : ipt -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.InputEvent::k__BackingField] : ipu -[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Field Name [[Assembly-CSharp] System.Int32 FairyGUI.InputEvent::